diff --git a/.mockery.yaml b/.mockery.yaml
index fc8d2a77..6327dcf7 100644
--- a/.mockery.yaml
+++ b/.mockery.yaml
@@ -6,6 +6,6 @@ filename: "{{ .InterfaceName | snakecase }}.go"
mockname: "{{.InterfaceName}}"
packages:
- go.mongodb.org/atlas-sdk/v20250312008/admin:
+ go.mongodb.org/atlas-sdk/v20250312009/admin:
config:
include-regex: ".*Api"
diff --git a/README.md b/README.md
index 2d9e50a1..7621c283 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ Note that `atlas-sdk-go` only supports the two most recent major versions of Go.
### Adding Dependency
```terminal
-go get go.mongodb.org/atlas-sdk/v20250312008
+go get go.mongodb.org/atlas-sdk/v20250312009
```
### Using in the code
@@ -21,7 +21,7 @@ Construct a new Atlas SDK client, then use the various services on the client to
access different parts of the Atlas API. For example:
```go
-import "go.mongodb.org/atlas-sdk/v20250312008/admin"
+import "go.mongodb.org/atlas-sdk/v20250312009/admin"
func example() {
ctx := context.Background()
diff --git a/admin/api_clusters.go b/admin/api_clusters.go
index 16529cd9..d7d6408e 100644
--- a/admin/api_clusters.go
+++ b/admin/api_clusters.go
@@ -649,11 +649,13 @@ type CreateClusterApiRequest struct {
ApiService ClustersApi
groupId string
clusterDescription20240805 *ClusterDescription20240805
+ useEffectiveInstanceFields *bool
}
type CreateClusterApiParams struct {
GroupId string
ClusterDescription20240805 *ClusterDescription20240805
+ UseEffectiveInstanceFields *bool
}
func (a *ClustersApiService) CreateClusterWithParams(ctx context.Context, args *CreateClusterApiParams) CreateClusterApiRequest {
@@ -662,9 +664,16 @@ func (a *ClustersApiService) CreateClusterWithParams(ctx context.Context, args *
ctx: ctx,
groupId: args.GroupId,
clusterDescription20240805: args.ClusterDescription20240805,
+ useEffectiveInstanceFields: args.UseEffectiveInstanceFields,
}
}
+// Controls how hardware specification fields are returned in the response after cluster creation. When set to true, returns the original client-specified values and provides separate effective fields showing current operational values. When false (default), hardware specification fields show current operational values directly. Primarily used for autoscaling compatibility.
+func (r CreateClusterApiRequest) UseEffectiveInstanceFields(useEffectiveInstanceFields bool) CreateClusterApiRequest {
+ r.useEffectiveInstanceFields = &useEffectiveInstanceFields
+ return r
+}
+
func (r CreateClusterApiRequest) Execute() (*ClusterDescription20240805, *http.Response, error) {
return r.ApiService.CreateClusterExecute(r)
}
@@ -735,6 +744,9 @@ func (a *ClustersApiService) CreateClusterExecute(r CreateClusterApiRequest) (*C
if localVarHTTPHeaderAccept != "" {
localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept
}
+ if r.useEffectiveInstanceFields != nil {
+ parameterAddToHeaderOrQuery(localVarHeaderParams, "Use-Effective-Instance-Fields", r.useEffectiveInstanceFields, "")
+ }
// body params
localVarPostBody = r.clusterDescription20240805
req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles)
@@ -890,26 +902,35 @@ func (a *ClustersApiService) DeleteClusterExecute(r DeleteClusterApiRequest) (*h
}
type GetClusterApiRequest struct {
- ctx context.Context
- ApiService ClustersApi
- groupId string
- clusterName string
+ ctx context.Context
+ ApiService ClustersApi
+ groupId string
+ clusterName string
+ useEffectiveInstanceFields *bool
}
type GetClusterApiParams struct {
- GroupId string
- ClusterName string
+ GroupId string
+ ClusterName string
+ UseEffectiveInstanceFields *bool
}
func (a *ClustersApiService) GetClusterWithParams(ctx context.Context, args *GetClusterApiParams) GetClusterApiRequest {
return GetClusterApiRequest{
- ApiService: a,
- ctx: ctx,
- groupId: args.GroupId,
- clusterName: args.ClusterName,
+ ApiService: a,
+ ctx: ctx,
+ groupId: args.GroupId,
+ clusterName: args.ClusterName,
+ useEffectiveInstanceFields: args.UseEffectiveInstanceFields,
}
}
+// Controls how hardware specification fields are returned in the response. When set to true, returns the original client-specified values and provides separate effective fields showing current operational values. When false (default), hardware specification fields show current operational values directly. Primarily used for autoscaling compatibility.
+func (r GetClusterApiRequest) UseEffectiveInstanceFields(useEffectiveInstanceFields bool) GetClusterApiRequest {
+ r.useEffectiveInstanceFields = &useEffectiveInstanceFields
+ return r
+}
+
func (r GetClusterApiRequest) Execute() (*ClusterDescription20240805, *http.Response, error) {
return r.ApiService.GetClusterExecute(r)
}
@@ -982,6 +1003,9 @@ func (a *ClustersApiService) GetClusterExecute(r GetClusterApiRequest) (*Cluster
if localVarHTTPHeaderAccept != "" {
localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept
}
+ if r.useEffectiveInstanceFields != nil {
+ parameterAddToHeaderOrQuery(localVarHeaderParams, "Use-Effective-Instance-Fields", r.useEffectiveInstanceFields, "")
+ }
req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles)
if err != nil {
return localVarReturnValue, nil, err
@@ -1849,6 +1873,7 @@ type ListClustersApiRequest struct {
itemsPerPage *int
pageNum *int
includeDeletedWithRetainedBackups *bool
+ useEffectiveInstanceFields *bool
}
type ListClustersApiParams struct {
@@ -1857,6 +1882,7 @@ type ListClustersApiParams struct {
ItemsPerPage *int
PageNum *int
IncludeDeletedWithRetainedBackups *bool
+ UseEffectiveInstanceFields *bool
}
func (a *ClustersApiService) ListClustersWithParams(ctx context.Context, args *ListClustersApiParams) ListClustersApiRequest {
@@ -1868,6 +1894,7 @@ func (a *ClustersApiService) ListClustersWithParams(ctx context.Context, args *L
itemsPerPage: args.ItemsPerPage,
pageNum: args.PageNum,
includeDeletedWithRetainedBackups: args.IncludeDeletedWithRetainedBackups,
+ useEffectiveInstanceFields: args.UseEffectiveInstanceFields,
}
}
@@ -1895,6 +1922,12 @@ func (r ListClustersApiRequest) IncludeDeletedWithRetainedBackups(includeDeleted
return r
}
+// Controls how hardware specification fields are returned in the response. When set to true, returns the original client-specified values and provides separate effective fields showing current operational values. When false (default), hardware specification fields show current operational values directly. Primarily used for autoscaling compatibility.
+func (r ListClustersApiRequest) UseEffectiveInstanceFields(useEffectiveInstanceFields bool) ListClustersApiRequest {
+ r.useEffectiveInstanceFields = &useEffectiveInstanceFields
+ return r
+}
+
func (r ListClustersApiRequest) Execute() (*PaginatedClusterDescription20240805, *http.Response, error) {
return r.ApiService.ListClustersExecute(r)
}
@@ -1989,6 +2022,9 @@ func (a *ClustersApiService) ListClustersExecute(r ListClustersApiRequest) (*Pag
if localVarHTTPHeaderAccept != "" {
localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept
}
+ if r.useEffectiveInstanceFields != nil {
+ parameterAddToHeaderOrQuery(localVarHeaderParams, "Use-Effective-Instance-Fields", r.useEffectiveInstanceFields, "")
+ }
req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles)
if err != nil {
return localVarReturnValue, nil, err
@@ -2580,12 +2616,14 @@ type UpdateClusterApiRequest struct {
groupId string
clusterName string
clusterDescription20240805 *ClusterDescription20240805
+ useEffectiveInstanceFields *bool
}
type UpdateClusterApiParams struct {
GroupId string
ClusterName string
ClusterDescription20240805 *ClusterDescription20240805
+ UseEffectiveInstanceFields *bool
}
func (a *ClustersApiService) UpdateClusterWithParams(ctx context.Context, args *UpdateClusterApiParams) UpdateClusterApiRequest {
@@ -2595,9 +2633,16 @@ func (a *ClustersApiService) UpdateClusterWithParams(ctx context.Context, args *
groupId: args.GroupId,
clusterName: args.ClusterName,
clusterDescription20240805: args.ClusterDescription20240805,
+ useEffectiveInstanceFields: args.UseEffectiveInstanceFields,
}
}
+// Controls how hardware specification fields are returned in the response after cluster updates. When set to true, returns the original client-specified values and provides separate effective fields showing current operational values. When false (default), hardware specification fields show current operational values directly. Note: When using this header with autoscaling enabled, MongoDB ignores replicationSpecs changes during updates. To intentionally override the replicationSpecs, disable this header.
+func (r UpdateClusterApiRequest) UseEffectiveInstanceFields(useEffectiveInstanceFields bool) UpdateClusterApiRequest {
+ r.useEffectiveInstanceFields = &useEffectiveInstanceFields
+ return r
+}
+
func (r UpdateClusterApiRequest) Execute() (*ClusterDescription20240805, *http.Response, error) {
return r.ApiService.UpdateClusterExecute(r)
}
@@ -2672,6 +2717,9 @@ func (a *ClustersApiService) UpdateClusterExecute(r UpdateClusterApiRequest) (*C
if localVarHTTPHeaderAccept != "" {
localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept
}
+ if r.useEffectiveInstanceFields != nil {
+ parameterAddToHeaderOrQuery(localVarHeaderParams, "Use-Effective-Instance-Fields", r.useEffectiveInstanceFields, "")
+ }
// body params
localVarPostBody = r.clusterDescription20240805
req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles)
diff --git a/admin/api_projects.go b/admin/api_projects.go
index 8f651a36..52a9c3c9 100644
--- a/admin/api_projects.go
+++ b/admin/api_projects.go
@@ -117,7 +117,7 @@ type ProjectsApi interface {
/*
DeleteGroupInvite Remove One Invitation from One Project
- Cancels one pending invitation sent to the specified MongoDB Cloud user to join a project. You can't cancel an invitation that the user accepted. To use this resource, the requesting Service Account or API Key must have the Project Owner role.
+ Cancels one pending invitation sent to the specified MongoDB Cloud user to join a project. You can't cancel an invitation that the user accepted. To use this resource, the requesting Service Account or API Key must have the Project Owner role. Note: deleting a project invitation does not delete an organization invitation even if they were created together.
@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.
@@ -1099,7 +1099,7 @@ func (r DeleteGroupInviteApiRequest) Execute() (*http.Response, error) {
/*
DeleteGroupInvite Remove One Invitation from One Project
-Cancels one pending invitation sent to the specified MongoDB Cloud user to join a project. You can't cancel an invitation that the user accepted. To use this resource, the requesting Service Account or API Key must have the Project Owner role.
+Cancels one pending invitation sent to the specified MongoDB Cloud user to join a project. You can't cancel an invitation that the user accepted. To use this resource, the requesting Service Account or API Key must have the Project Owner role. Note: deleting a project invitation does not delete an organization invitation even if they were created together.
@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/api_streams.go b/admin/api_streams.go
index 9b345022..67990d18 100644
--- a/admin/api_streams.go
+++ b/admin/api_streams.go
@@ -64,12 +64,12 @@ type StreamsApi interface {
/*
CreateStreamConnection Create One Stream Connection
- Creates one connection for a stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Owner or Project Stream Processing Owner role.
+ Creates one connection for a stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Owner or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
- @param streamsConnection Details to create one connection for a streams instance in the specified project.
+ @param tenantName Label that identifies the stream workspace.
+ @param streamsConnection Details to create one connection for a streams workspace in the specified project.
@return CreateStreamConnectionApiRequest
*/
CreateStreamConnection(ctx context.Context, groupId string, tenantName string, streamsConnection *StreamsConnection) CreateStreamConnectionApiRequest
@@ -89,11 +89,11 @@ type StreamsApi interface {
/*
CreateStreamProcessor Create One Stream Processor
- Create one Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ Create one Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
+ @param tenantName Label that identifies the stream workspace.
@param streamsProcessor Details to create an Atlas Streams Processor.
@return CreateStreamProcessorApiRequest
*/
@@ -112,18 +112,18 @@ type StreamsApi interface {
CreateStreamProcessorExecute(r CreateStreamProcessorApiRequest) (*StreamsProcessor, *http.Response, error)
/*
- CreateStreamWorkspace Create One Stream Instance
+ CreateStreamWorkspace Create One Stream Workspace
- Creates one stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
+ Creates one stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
@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.
- @param streamsTenant Details to create one streams instance in the specified project.
+ @param streamsTenant Details to create one streams workspace in the specified project.
@return CreateStreamWorkspaceApiRequest
*/
CreateStreamWorkspace(ctx context.Context, groupId string, streamsTenant *StreamsTenant) CreateStreamWorkspaceApiRequest
/*
- CreateStreamWorkspace Create One Stream Instance
+ CreateStreamWorkspace Create One Stream Workspace
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@@ -162,12 +162,12 @@ type StreamsApi interface {
/*
DeleteStreamConnection Delete One Stream Connection
- Delete one connection of the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ Delete one connection of the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
- @param connectionName Human-readable label that identifies the stream connection.
+ @param tenantName Label that identifies the stream workspace.
+ @param connectionName Label that identifies the stream connection.
@return DeleteStreamConnectionApiRequest
*/
DeleteStreamConnection(ctx context.Context, groupId string, tenantName string, connectionName string) DeleteStreamConnectionApiRequest
@@ -187,12 +187,12 @@ type StreamsApi interface {
/*
DeleteStreamProcessor Delete One Stream Processor
- Delete a Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ Delete a Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
- @param processorName Human-readable label that identifies the stream processor.
+ @param tenantName Label that identifies the stream workspace.
+ @param processorName Label that identifies the stream processor.
@return DeleteStreamProcessorApiRequest
*/
DeleteStreamProcessor(ctx context.Context, groupId string, tenantName string, processorName string) DeleteStreamProcessorApiRequest
@@ -210,18 +210,18 @@ type StreamsApi interface {
DeleteStreamProcessorExecute(r DeleteStreamProcessorApiRequest) (*http.Response, error)
/*
- DeleteStreamWorkspace Delete One Stream Instance
+ DeleteStreamWorkspace Delete One Stream Workspace
- Delete one stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
+ Delete one stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance to delete.
+ @param tenantName Label that identifies the stream workspace to delete.
@return DeleteStreamWorkspaceApiRequest
*/
DeleteStreamWorkspace(ctx context.Context, groupId string, tenantName string) DeleteStreamWorkspaceApiRequest
/*
- DeleteStreamWorkspace Delete One Stream Instance
+ DeleteStreamWorkspace Delete One Stream Workspace
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@@ -258,18 +258,18 @@ type StreamsApi interface {
DeleteVpcPeeringConnectionExecute(r DeleteVpcPeeringConnectionApiRequest) (*http.Response, error)
/*
- DownloadAuditLogs Download Audit Logs for One Atlas Stream Processing Instance
+ DownloadAuditLogs Download Audit Logs for One Atlas Stream Processing Workspace
- Downloads the audit logs for the specified Atlas Streams Processing instance. By default, logs cover periods of 30 days. To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".
+ Downloads the audit logs for the specified Atlas Streams Processing workspace. By default, logs cover periods of 30 days. To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".
@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.
- @param tenantName Human-readable label that identifies the stream instance.
+ @param tenantName Label that identifies the stream workspace.
@return DownloadAuditLogsApiRequest
*/
DownloadAuditLogs(ctx context.Context, groupId string, tenantName string) DownloadAuditLogsApiRequest
/*
- DownloadAuditLogs Download Audit Logs for One Atlas Stream Processing Instance
+ DownloadAuditLogs Download Audit Logs for One Atlas Stream Processing Workspace
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@@ -331,12 +331,12 @@ type StreamsApi interface {
/*
GetStreamConnection Return One Stream Connection
- Returns the details of one stream connection within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Read Only role.
+ Returns the details of one stream connection within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Read Only role.
@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.
- @param tenantName Human-readable label that identifies the stream instance to return.
- @param connectionName Human-readable label that identifies the stream connection to return.
+ @param tenantName Label that identifies the stream workspace to return.
+ @param connectionName Label that identifies the stream connection to return.
@return GetStreamConnectionApiRequest
*/
GetStreamConnection(ctx context.Context, groupId string, tenantName string, connectionName string) GetStreamConnectionApiRequest
@@ -356,12 +356,12 @@ type StreamsApi interface {
/*
GetStreamProcessor Return One Stream Processor
- Get one Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ Get one Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
- @param processorName Human-readable label that identifies the stream processor.
+ @param tenantName Label that identifies the stream workspace.
+ @param processorName Label that identifies the stream processor.
@return GetStreamProcessorApiRequest
*/
GetStreamProcessor(ctx context.Context, groupId string, tenantName string, processorName string) GetStreamProcessorApiRequest
@@ -379,18 +379,18 @@ type StreamsApi interface {
GetStreamProcessorExecute(r GetStreamProcessorApiRequest) (*StreamsProcessorWithStats, *http.Response, error)
/*
- GetStreamProcessors Return All Stream Processors in One Stream Instance
+ GetStreamProcessors Return All Stream Processors in One Stream Workspace
- Returns all Stream Processors within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ Returns all Stream Processors within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
+ @param tenantName Label that identifies the stream workspace.
@return GetStreamProcessorsApiRequest
*/
GetStreamProcessors(ctx context.Context, groupId string, tenantName string) GetStreamProcessorsApiRequest
/*
- GetStreamProcessors Return All Stream Processors in One Stream Instance
+ GetStreamProcessors Return All Stream Processors in One Stream Workspace
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@@ -403,18 +403,18 @@ type StreamsApi interface {
GetStreamProcessorsExecute(r GetStreamProcessorsApiRequest) (*PaginatedApiStreamsStreamProcessorWithStats, *http.Response, error)
/*
- GetStreamWorkspace Return One Stream Instance
+ GetStreamWorkspace Return One Stream Workspace
- Returns the details of one stream instance within the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role.
+ Returns the details of one stream workspace within the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance to return.
+ @param tenantName Label that identifies the stream workspace to return.
@return GetStreamWorkspaceApiRequest
*/
GetStreamWorkspace(ctx context.Context, groupId string, tenantName string) GetStreamWorkspaceApiRequest
/*
- GetStreamWorkspace Return One Stream Instance
+ GetStreamWorkspace Return One Stream Workspace
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@@ -473,18 +473,18 @@ type StreamsApi interface {
ListPrivateLinkConnectionsExecute(r ListPrivateLinkConnectionsApiRequest) (*PaginatedApiStreamsPrivateLink, *http.Response, error)
/*
- ListStreamConnections Return All Connections of the Stream Instances
+ ListStreamConnections Return All Connections of the Stream Workspaces
- Returns all connections of the stream instance for the specified project.To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role.
+ Returns all connections of the stream workspace for the specified project.To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
+ @param tenantName Label that identifies the stream workspace.
@return ListStreamConnectionsApiRequest
*/
ListStreamConnections(ctx context.Context, groupId string, tenantName string) ListStreamConnectionsApiRequest
/*
- ListStreamConnections Return All Connections of the Stream Instances
+ ListStreamConnections Return All Connections of the Stream Workspaces
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@@ -497,9 +497,9 @@ type StreamsApi interface {
ListStreamConnectionsExecute(r ListStreamConnectionsApiRequest) (*PaginatedApiStreamsConnection, *http.Response, error)
/*
- ListStreamWorkspaces Return All Stream Instances in One Project
+ ListStreamWorkspaces Return All Stream Workspaces in One Project
- Returns all stream instances for the specified project.
+ Returns all stream workspaces for the specified project.
@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.
@@ -507,7 +507,7 @@ type StreamsApi interface {
*/
ListStreamWorkspaces(ctx context.Context, groupId string) ListStreamWorkspacesApiRequest
/*
- ListStreamWorkspaces Return All Stream Instances in One Project
+ ListStreamWorkspaces Return All Stream Workspaces in One Project
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@@ -569,12 +569,12 @@ type StreamsApi interface {
/*
StartStreamProcessor Start One Stream Processor
- Start a Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ Start a Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
- @param processorName Human-readable label that identifies the stream processor.
+ @param tenantName Label that identifies the stream workspace.
+ @param processorName Label that identifies the stream processor.
@return StartStreamProcessorApiRequest
*/
StartStreamProcessor(ctx context.Context, groupId string, tenantName string, processorName string) StartStreamProcessorApiRequest
@@ -594,12 +594,12 @@ type StreamsApi interface {
/*
StartStreamProcessorWith Start One Stream Processor With Options
- Start a Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ Start a Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
- @param processorName Human-readable label that identifies the stream processor.
+ @param tenantName Label that identifies the stream workspace.
+ @param processorName Label that identifies the stream processor.
@param streamsStartStreamProcessorWith Options for starting a stream processor.
@return StartStreamProcessorWithApiRequest
*/
@@ -620,12 +620,12 @@ type StreamsApi interface {
/*
StopStreamProcessor Stop One Stream Processor
- Stop a Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ Stop a Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
- @param processorName Human-readable label that identifies the stream processor.
+ @param tenantName Label that identifies the stream workspace.
+ @param processorName Label that identifies the stream processor.
@return StopStreamProcessorApiRequest
*/
StopStreamProcessor(ctx context.Context, groupId string, tenantName string, processorName string) StopStreamProcessorApiRequest
@@ -645,13 +645,13 @@ type StreamsApi interface {
/*
UpdateStreamConnection Update One Stream Connection
- Update one connection for the specified stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ Update one connection for the specified stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
- @param connectionName Human-readable label that identifies the stream connection.
- @param streamsConnection Details to update one connection for a streams instance in the specified project.
+ @param tenantName Label that identifies the stream workspace.
+ @param connectionName Label that identifies the stream connection.
+ @param streamsConnection Details to update one connection for a streams workspace in the specified project.
@return UpdateStreamConnectionApiRequest
*/
UpdateStreamConnection(ctx context.Context, groupId string, tenantName string, connectionName string, streamsConnection *StreamsConnection) UpdateStreamConnectionApiRequest
@@ -671,12 +671,12 @@ type StreamsApi interface {
/*
UpdateStreamProcessor Update One Stream Processor
- Modify one existing Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ Modify one existing Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
- @param processorName Human-readable label that identifies the stream processor.
+ @param tenantName Label that identifies the stream workspace.
+ @param processorName Label that identifies the stream processor.
@param streamsModifyStreamProcessor Modifications to apply to the stream processor.
@return UpdateStreamProcessorApiRequest
*/
@@ -695,19 +695,19 @@ type StreamsApi interface {
UpdateStreamProcessorExecute(r UpdateStreamProcessorApiRequest) (*StreamsProcessorWithStats, *http.Response, error)
/*
- UpdateStreamWorkspace Update One Stream Instance
+ UpdateStreamWorkspace Update One Stream Workspace
- Update one stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
+ Update one stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance to update.
- @param streamsDataProcessRegion Details of the new data process region to update in the streams instance.
+ @param tenantName Label that identifies the stream workspace to update.
+ @param streamsDataProcessRegion Details of the new data process region to update in the streams workspace.
@return UpdateStreamWorkspaceApiRequest
*/
UpdateStreamWorkspace(ctx context.Context, groupId string, tenantName string, streamsDataProcessRegion *StreamsDataProcessRegion) UpdateStreamWorkspaceApiRequest
/*
- UpdateStreamWorkspace Update One Stream Instance
+ UpdateStreamWorkspace Update One Stream Workspace
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@@ -720,18 +720,18 @@ type StreamsApi interface {
UpdateStreamWorkspaceExecute(r UpdateStreamWorkspaceApiRequest) (*StreamsTenant, *http.Response, error)
/*
- WithStreamSampleConnections Create One Stream Instance with Sample Connections
+ WithStreamSampleConnections Create One Stream Workspace with Sample Connections
- Creates one stream instance in the specified project with sample connections. To use this resource the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
+ Creates one stream workspace in the specified project with sample connections. To use this resource the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
@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.
- @param body Details to create one streams instance in the specified project.
+ @param body Details to create one streams workspace in the specified project.
@return WithStreamSampleConnectionsApiRequest
*/
WithStreamSampleConnections(ctx context.Context, groupId string, body *any) WithStreamSampleConnectionsApiRequest
/*
- WithStreamSampleConnections Create One Stream Instance with Sample Connections
+ WithStreamSampleConnections Create One Stream Workspace with Sample Connections
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@@ -1016,11 +1016,11 @@ func (r CreateStreamConnectionApiRequest) Execute() (*StreamsConnection, *http.R
/*
CreateStreamConnection Create One Stream Connection
-Creates one connection for a stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Owner or Project Stream Processing Owner role.
+Creates one connection for a stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Owner or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
+ @param tenantName Label that identifies the stream workspace.
@return CreateStreamConnectionApiRequest
*/
func (a *StreamsApiService) CreateStreamConnection(ctx context.Context, groupId string, tenantName string, streamsConnection *StreamsConnection) CreateStreamConnectionApiRequest {
@@ -1148,11 +1148,11 @@ func (r CreateStreamProcessorApiRequest) Execute() (*StreamsProcessor, *http.Res
/*
CreateStreamProcessor Create One Stream Processor
-Create one Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+Create one Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
+ @param tenantName Label that identifies the stream workspace.
@return CreateStreamProcessorApiRequest
*/
func (a *StreamsApiService) CreateStreamProcessor(ctx context.Context, groupId string, tenantName string, streamsProcessor *StreamsProcessor) CreateStreamProcessorApiRequest {
@@ -1275,9 +1275,9 @@ func (r CreateStreamWorkspaceApiRequest) Execute() (*StreamsTenant, *http.Respon
}
/*
-CreateStreamWorkspace Create One Stream Instance
+CreateStreamWorkspace Create One Stream Workspace
-Creates one stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
+Creates one stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
@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.
@@ -1509,12 +1509,12 @@ func (r DeleteStreamConnectionApiRequest) Execute() (*http.Response, error) {
/*
DeleteStreamConnection Delete One Stream Connection
-Delete one connection of the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+Delete one connection of the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
- @param connectionName Human-readable label that identifies the stream connection.
+ @param tenantName Label that identifies the stream workspace.
+ @param connectionName Label that identifies the stream connection.
@return DeleteStreamConnectionApiRequest
*/
func (a *StreamsApiService) DeleteStreamConnection(ctx context.Context, groupId string, tenantName string, connectionName string) DeleteStreamConnectionApiRequest {
@@ -1624,12 +1624,12 @@ func (r DeleteStreamProcessorApiRequest) Execute() (*http.Response, error) {
/*
DeleteStreamProcessor Delete One Stream Processor
-Delete a Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+Delete a Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
- @param processorName Human-readable label that identifies the stream processor.
+ @param tenantName Label that identifies the stream workspace.
+ @param processorName Label that identifies the stream processor.
@return DeleteStreamProcessorApiRequest
*/
func (a *StreamsApiService) DeleteStreamProcessor(ctx context.Context, groupId string, tenantName string, processorName string) DeleteStreamProcessorApiRequest {
@@ -1734,13 +1734,13 @@ func (r DeleteStreamWorkspaceApiRequest) Execute() (*http.Response, error) {
}
/*
-DeleteStreamWorkspace Delete One Stream Instance
+DeleteStreamWorkspace Delete One Stream Workspace
-Delete one stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
+Delete one stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance to delete.
+ @param tenantName Label that identifies the stream workspace to delete.
@return DeleteStreamWorkspaceApiRequest
*/
func (a *StreamsApiService) DeleteStreamWorkspace(ctx context.Context, groupId string, tenantName string) DeleteStreamWorkspaceApiRequest {
@@ -1964,13 +1964,13 @@ func (r DownloadAuditLogsApiRequest) Execute() (io.ReadCloser, *http.Response, e
}
/*
-DownloadAuditLogs Download Audit Logs for One Atlas Stream Processing Instance
+DownloadAuditLogs Download Audit Logs for One Atlas Stream Processing Workspace
-Downloads the audit logs for the specified Atlas Streams Processing instance. By default, logs cover periods of 30 days. To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".
+Downloads the audit logs for the specified Atlas Streams Processing workspace. By default, logs cover periods of 30 days. To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".
@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.
- @param tenantName Human-readable label that identifies the stream instance.
+ @param tenantName Label that identifies the stream workspace.
@return DownloadAuditLogsApiRequest
*/
func (a *StreamsApiService) DownloadAuditLogs(ctx context.Context, groupId string, tenantName string) DownloadAuditLogsApiRequest {
@@ -2361,12 +2361,12 @@ func (r GetStreamConnectionApiRequest) Execute() (*StreamsConnection, *http.Resp
/*
GetStreamConnection Return One Stream Connection
-Returns the details of one stream connection within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Read Only role.
+Returns the details of one stream connection within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Read Only role.
@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.
- @param tenantName Human-readable label that identifies the stream instance to return.
- @param connectionName Human-readable label that identifies the stream connection to return.
+ @param tenantName Label that identifies the stream workspace to return.
+ @param connectionName Label that identifies the stream connection to return.
@return GetStreamConnectionApiRequest
*/
func (a *StreamsApiService) GetStreamConnection(ctx context.Context, groupId string, tenantName string, connectionName string) GetStreamConnectionApiRequest {
@@ -2493,12 +2493,12 @@ func (r GetStreamProcessorApiRequest) Execute() (*StreamsProcessorWithStats, *ht
/*
GetStreamProcessor Return One Stream Processor
-Get one Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+Get one Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
- @param processorName Human-readable label that identifies the stream processor.
+ @param tenantName Label that identifies the stream workspace.
+ @param processorName Label that identifies the stream processor.
@return GetStreamProcessorApiRequest
*/
func (a *StreamsApiService) GetStreamProcessor(ctx context.Context, groupId string, tenantName string, processorName string) GetStreamProcessorApiRequest {
@@ -2647,13 +2647,13 @@ func (r GetStreamProcessorsApiRequest) Execute() (*PaginatedApiStreamsStreamProc
}
/*
-GetStreamProcessors Return All Stream Processors in One Stream Instance
+GetStreamProcessors Return All Stream Processors in One Stream Workspace
-Returns all Stream Processors within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+Returns all Stream Processors within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
+ @param tenantName Label that identifies the stream workspace.
@return GetStreamProcessorsApiRequest
*/
func (a *StreamsApiService) GetStreamProcessors(ctx context.Context, groupId string, tenantName string) GetStreamProcessorsApiRequest {
@@ -2789,7 +2789,7 @@ func (a *StreamsApiService) GetStreamWorkspaceWithParams(ctx context.Context, ar
}
}
-// Flag to indicate whether connections information should be included in the stream instance.
+// Flag to indicate whether connections information should be included in the stream workspace.
func (r GetStreamWorkspaceApiRequest) IncludeConnections(includeConnections bool) GetStreamWorkspaceApiRequest {
r.includeConnections = &includeConnections
return r
@@ -2800,13 +2800,13 @@ func (r GetStreamWorkspaceApiRequest) Execute() (*StreamsTenant, *http.Response,
}
/*
-GetStreamWorkspace Return One Stream Instance
+GetStreamWorkspace Return One Stream Workspace
-Returns the details of one stream instance within the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role.
+Returns the details of one stream workspace within the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance to return.
+ @param tenantName Label that identifies the stream workspace to return.
@return GetStreamWorkspaceApiRequest
*/
func (a *StreamsApiService) GetStreamWorkspace(ctx context.Context, groupId string, tenantName string) GetStreamWorkspaceApiRequest {
@@ -3219,13 +3219,13 @@ func (r ListStreamConnectionsApiRequest) Execute() (*PaginatedApiStreamsConnecti
}
/*
-ListStreamConnections Return All Connections of the Stream Instances
+ListStreamConnections Return All Connections of the Stream Workspaces
-Returns all connections of the stream instance for the specified project.To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role.
+Returns all connections of the stream workspace for the specified project.To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
+ @param tenantName Label that identifies the stream workspace.
@return ListStreamConnectionsApiRequest
*/
func (a *StreamsApiService) ListStreamConnections(ctx context.Context, groupId string, tenantName string) ListStreamConnectionsApiRequest {
@@ -3371,9 +3371,9 @@ func (r ListStreamWorkspacesApiRequest) Execute() (*PaginatedApiStreamsTenant, *
}
/*
-ListStreamWorkspaces Return All Stream Instances in One Project
+ListStreamWorkspaces Return All Stream Workspaces in One Project
-Returns all stream instances for the specified project.
+Returns all stream workspaces for the specified project.
@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.
@@ -3755,12 +3755,12 @@ func (r StartStreamProcessorApiRequest) Execute() (*http.Response, error) {
/*
StartStreamProcessor Start One Stream Processor
-Start a Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+Start a Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
- @param processorName Human-readable label that identifies the stream processor.
+ @param tenantName Label that identifies the stream workspace.
+ @param processorName Label that identifies the stream processor.
@return StartStreamProcessorApiRequest
*/
func (a *StreamsApiService) StartStreamProcessor(ctx context.Context, groupId string, tenantName string, processorName string) StartStreamProcessorApiRequest {
@@ -3873,12 +3873,12 @@ func (r StartStreamProcessorWithApiRequest) Execute() (*http.Response, error) {
/*
StartStreamProcessorWith Start One Stream Processor With Options
-Start a Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+Start a Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
- @param processorName Human-readable label that identifies the stream processor.
+ @param tenantName Label that identifies the stream workspace.
+ @param processorName Label that identifies the stream processor.
@return StartStreamProcessorWithApiRequest
*/
func (a *StreamsApiService) StartStreamProcessorWith(ctx context.Context, groupId string, tenantName string, processorName string, streamsStartStreamProcessorWith *StreamsStartStreamProcessorWith) StartStreamProcessorWithApiRequest {
@@ -3991,12 +3991,12 @@ func (r StopStreamProcessorApiRequest) Execute() (*http.Response, error) {
/*
StopStreamProcessor Stop One Stream Processor
-Stop a Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+Stop a Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
- @param processorName Human-readable label that identifies the stream processor.
+ @param tenantName Label that identifies the stream workspace.
+ @param processorName Label that identifies the stream processor.
@return StopStreamProcessorApiRequest
*/
func (a *StreamsApiService) StopStreamProcessor(ctx context.Context, groupId string, tenantName string, processorName string) StopStreamProcessorApiRequest {
@@ -4109,12 +4109,12 @@ func (r UpdateStreamConnectionApiRequest) Execute() (*StreamsConnection, *http.R
/*
UpdateStreamConnection Update One Stream Connection
-Update one connection for the specified stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+Update one connection for the specified stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
- @param connectionName Human-readable label that identifies the stream connection.
+ @param tenantName Label that identifies the stream workspace.
+ @param connectionName Label that identifies the stream connection.
@return UpdateStreamConnectionApiRequest
*/
func (a *StreamsApiService) UpdateStreamConnection(ctx context.Context, groupId string, tenantName string, connectionName string, streamsConnection *StreamsConnection) UpdateStreamConnectionApiRequest {
@@ -4250,12 +4250,12 @@ func (r UpdateStreamProcessorApiRequest) Execute() (*StreamsProcessorWithStats,
/*
UpdateStreamProcessor Update One Stream Processor
-Modify one existing Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+Modify one existing Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance.
- @param processorName Human-readable label that identifies the stream processor.
+ @param tenantName Label that identifies the stream workspace.
+ @param processorName Label that identifies the stream processor.
@return UpdateStreamProcessorApiRequest
*/
func (a *StreamsApiService) UpdateStreamProcessor(ctx context.Context, groupId string, tenantName string, processorName string, streamsModifyStreamProcessor *StreamsModifyStreamProcessor) UpdateStreamProcessorApiRequest {
@@ -4386,13 +4386,13 @@ func (r UpdateStreamWorkspaceApiRequest) Execute() (*StreamsTenant, *http.Respon
}
/*
-UpdateStreamWorkspace Update One Stream Instance
+UpdateStreamWorkspace Update One Stream Workspace
-Update one stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
+Update one stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
@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.
- @param tenantName Human-readable label that identifies the stream instance to update.
+ @param tenantName Label that identifies the stream workspace to update.
@return UpdateStreamWorkspaceApiRequest
*/
func (a *StreamsApiService) UpdateStreamWorkspace(ctx context.Context, groupId string, tenantName string, streamsDataProcessRegion *StreamsDataProcessRegion) UpdateStreamWorkspaceApiRequest {
@@ -4515,9 +4515,9 @@ func (r WithStreamSampleConnectionsApiRequest) Execute() (*StreamsTenant, *http.
}
/*
-WithStreamSampleConnections Create One Stream Instance with Sample Connections
+WithStreamSampleConnections Create One Stream Workspace with Sample Connections
-Creates one stream instance in the specified project with sample connections. To use this resource the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
+Creates one stream workspace in the specified project with sample connections. To use this resource the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
@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/api_third_party_integrations.go b/admin/api_third_party_integrations.go
index e0397867..013fa35f 100644
--- a/admin/api_third_party_integrations.go
+++ b/admin/api_third_party_integrations.go
@@ -15,7 +15,7 @@ type ThirdPartyIntegrationsApi interface {
/*
CreateGroupIntegration Create One Third-Party Service Integration
- Adds the settings for configuring one third-party service integration. These settings apply to all databases managed in the specified MongoDB Cloud project. Each project can have only one configuration per `{INTEGRATION-TYPE}`. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role.
+ Adds the settings for configuring one third-party service integration. These settings apply to all databases managed in the specified MongoDB Cloud project. Each project can have only one configuration per `{INTEGRATION-TYPE}`. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role. Enabling log export to S3, Splunk, and Datadog is currently in preview. Please contact your Customer Success Manager (CSM) for access.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param integrationType Human-readable label that identifies the service which you want to integrate with MongoDB Cloud.
@@ -40,7 +40,7 @@ type ThirdPartyIntegrationsApi interface {
/*
DeleteGroupIntegration Remove One Third-Party Service Integration
- Removes the settings that permit configuring one third-party service integration. These settings apply to all databases managed in one MongoDB Cloud project. If you delete an integration from a project, you remove that integration configuration only for that project. This action doesn't affect any other project or organization's configured `{INTEGRATION-TYPE}` integrations. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role.
+ Removes the settings that permit configuring one third-party service integration. These settings apply to all databases managed in one MongoDB Cloud project. If you delete an integration from a project, you remove that integration configuration only for that project. This action doesn't affect any other project or organization's configured `{INTEGRATION-TYPE}` integrations. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role. Deleting log export to S3, Splunk, and Datadog is currently in preview. Please contact your Customer Success Manager (CSM) for access.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param integrationType Human-readable label that identifies the service which you want to integrate with MongoDB Cloud.
@@ -64,7 +64,7 @@ type ThirdPartyIntegrationsApi interface {
/*
GetGroupIntegration Return One Third-Party Service Integration
- Returns the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role.
+ Returns the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role. Viewing log export to S3, Splunk, and Datadog is currently in preview. Please contact your Customer Success Manager (CSM) for access.
@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.
@@ -111,7 +111,7 @@ type ThirdPartyIntegrationsApi interface {
/*
UpdateGroupIntegration Update One Third-Party Service Integration
- Updates the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role.
+ Updates the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role. Enabling log export to S3, Splunk, and Datadog is currently in preview. Please contact your Customer Success Manager (CSM) for access.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param integrationType Human-readable label that identifies the service which you want to integrate with MongoDB Cloud.
@@ -195,7 +195,7 @@ func (r CreateGroupIntegrationApiRequest) Execute() (*PaginatedIntegration, *htt
/*
CreateGroupIntegration Create One Third-Party Service Integration
-Adds the settings for configuring one third-party service integration. These settings apply to all databases managed in the specified MongoDB Cloud project. Each project can have only one configuration per `{INTEGRATION-TYPE}`. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role.
+Adds the settings for configuring one third-party service integration. These settings apply to all databases managed in the specified MongoDB Cloud project. Each project can have only one configuration per `{INTEGRATION-TYPE}`. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role. Enabling log export to S3, Splunk, and Datadog is currently in preview. Please contact your Customer Success Manager (CSM) for access.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param integrationType Human-readable label that identifies the service which you want to integrate with MongoDB Cloud.
@@ -345,7 +345,7 @@ func (r DeleteGroupIntegrationApiRequest) Execute() (*http.Response, error) {
/*
DeleteGroupIntegration Remove One Third-Party Service Integration
-Removes the settings that permit configuring one third-party service integration. These settings apply to all databases managed in one MongoDB Cloud project. If you delete an integration from a project, you remove that integration configuration only for that project. This action doesn't affect any other project or organization's configured `{INTEGRATION-TYPE}` integrations. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role.
+Removes the settings that permit configuring one third-party service integration. These settings apply to all databases managed in one MongoDB Cloud project. If you delete an integration from a project, you remove that integration configuration only for that project. This action doesn't affect any other project or organization's configured `{INTEGRATION-TYPE}` integrations. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role. Deleting log export to S3, Splunk, and Datadog is currently in preview. Please contact your Customer Success Manager (CSM) for access.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param integrationType Human-readable label that identifies the service which you want to integrate with MongoDB Cloud.
@@ -451,7 +451,7 @@ func (r GetGroupIntegrationApiRequest) Execute() (*ThirdPartyIntegration, *http.
/*
GetGroupIntegration Return One Third-Party Service Integration
-Returns the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role.
+Returns the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role. Viewing log export to S3, Splunk, and Datadog is currently in preview. Please contact your Customer Success Manager (CSM) for access.
@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.
@@ -766,7 +766,7 @@ func (r UpdateGroupIntegrationApiRequest) Execute() (*PaginatedIntegration, *htt
/*
UpdateGroupIntegration Update One Third-Party Service Integration
-Updates the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role.
+Updates the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role. Enabling log export to S3, Splunk, and Datadog is currently in preview. Please contact your Customer Success Manager (CSM) for access.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param integrationType Human-readable label that identifies the service which you want to integrate with MongoDB Cloud.
diff --git a/admin/atlas_client.go b/admin/atlas_client.go
index c7176238..251c3c26 100644
--- a/admin/atlas_client.go
+++ b/admin/atlas_client.go
@@ -1,4 +1,4 @@
-package admin // import "go.mongodb.org/atlas-sdk/v20250312008/admin"
+package admin // import "go.mongodb.org/atlas-sdk/v20250312009/admin"
import (
"context"
@@ -7,9 +7,9 @@ import (
"strings"
"github.com/mongodb-forks/digest"
- "go.mongodb.org/atlas-sdk/v20250312008/auth"
- "go.mongodb.org/atlas-sdk/v20250312008/auth/clientcredentials"
- "go.mongodb.org/atlas-sdk/v20250312008/internal/core"
+ "go.mongodb.org/atlas-sdk/v20250312009/auth"
+ "go.mongodb.org/atlas-sdk/v20250312009/auth/clientcredentials"
+ "go.mongodb.org/atlas-sdk/v20250312009/internal/core"
)
const (
diff --git a/admin/model_advanced_compute_auto_scaling.go b/admin/model_advanced_compute_auto_scaling.go
index 385cedfa..8d38e1cb 100644
--- a/admin/model_advanced_compute_auto_scaling.go
+++ b/admin/model_advanced_compute_auto_scaling.go
@@ -12,8 +12,6 @@ type AdvancedComputeAutoScaling struct {
// Instance size boundary to which your cluster can automatically scale.
// Read only field.
MinInstanceSize *string `json:"minInstanceSize,omitempty"`
- // Flag that indicates whether predictive instance size auto-scaling is enabled. - Set to `true` to enable predictive instance size auto-scaling. MongoDB Cloud requires **replicationSpecs[n].regionConfigs[m].autoScaling.compute.enabled** to be `true` in order to enable this feature. - Set to `false` to disable predictive instance size auto-scaling.
- PredictiveEnabled *bool `json:"predictiveEnabled,omitempty"`
// Flag that indicates whether the instance size may scale down via reactive auto-scaling. MongoDB Cloud requires this parameter if **replicationSpecs[n].regionConfigs[m].autoScaling.compute.enabled** is `true`. If you enable this option, specify a value for **replicationSpecs[n].regionConfigs[m].autoScaling.compute.minInstanceSize**.
ScaleDownEnabled *bool `json:"scaleDownEnabled,omitempty"`
}
@@ -134,39 +132,6 @@ func (o *AdvancedComputeAutoScaling) SetMinInstanceSize(v string) {
o.MinInstanceSize = &v
}
-// GetPredictiveEnabled returns the PredictiveEnabled field value if set, zero value otherwise
-func (o *AdvancedComputeAutoScaling) GetPredictiveEnabled() bool {
- if o == nil || IsNil(o.PredictiveEnabled) {
- var ret bool
- return ret
- }
- return *o.PredictiveEnabled
-}
-
-// GetPredictiveEnabledOk returns a tuple with the PredictiveEnabled field value if set, nil otherwise
-// and a boolean to check if the value has been set.
-func (o *AdvancedComputeAutoScaling) GetPredictiveEnabledOk() (*bool, bool) {
- if o == nil || IsNil(o.PredictiveEnabled) {
- return nil, false
- }
-
- return o.PredictiveEnabled, true
-}
-
-// HasPredictiveEnabled returns a boolean if a field has been set.
-func (o *AdvancedComputeAutoScaling) HasPredictiveEnabled() bool {
- if o != nil && !IsNil(o.PredictiveEnabled) {
- return true
- }
-
- return false
-}
-
-// SetPredictiveEnabled gets a reference to the given bool and assigns it to the PredictiveEnabled field.
-func (o *AdvancedComputeAutoScaling) SetPredictiveEnabled(v bool) {
- o.PredictiveEnabled = &v
-}
-
// GetScaleDownEnabled returns the ScaleDownEnabled field value if set, zero value otherwise
func (o *AdvancedComputeAutoScaling) GetScaleDownEnabled() bool {
if o == nil || IsNil(o.ScaleDownEnabled) {
diff --git a/admin/model_alert_view_for_nds_group.go b/admin/model_alert_view_for_nds_group.go
index 8ef9baae..c6f39509 100644
--- a/admin/model_alert_view_for_nds_group.go
+++ b/admin/model_alert_view_for_nds_group.go
@@ -67,7 +67,7 @@ type AlertViewForNdsGroup struct {
// Unique 24-hexadecimal character string that identifies the parent cluster to which this alert applies. The parent cluster contains the sharded nodes. MongoDB Cloud returns this parameter only for alerts of events impacting sharded clusters.
// Read only field.
ParentClusterId *string `json:"parentClusterId,omitempty"`
- // The name of the Stream Processing Instance to which this alert applies. The resource returns this parameter for alerts of events impacting Stream Processing Instances.
+ // The name of the Stream Processing Workspace to which this alert applies. The resource returns this parameter for alerts of events impacting Stream Processing Workspaces.
// Read only field.
InstanceName *string `json:"instanceName,omitempty"`
// The error message associated with the Stream Processor to which this alert applies.
diff --git a/admin/model_cloud_database_user.go b/admin/model_cloud_database_user.go
index 384f6c7f..b337157d 100644
--- a/admin/model_cloud_database_user.go
+++ b/admin/model_cloud_database_user.go
@@ -33,7 +33,7 @@ type CloudDatabaseUser struct {
Password *string `json:"password,omitempty"`
// List that provides the pairings of one role with one applicable database.
Roles *[]DatabaseUserRole `json:"roles,omitempty"`
- // List that contains clusters, MongoDB Atlas Data Lakes, and MongoDB Atlas Streams Instances that this database user can access. If omitted, MongoDB Cloud grants the database user access to all the clusters, MongoDB Atlas Data Lakes, and MongoDB Atlas Streams Instances in the project.
+ // List that contains clusters, MongoDB Atlas Data Lakes, and MongoDB Atlas Streams Workspaces that this database user can access. If omitted, MongoDB Cloud grants the database user access to all the clusters, MongoDB Atlas Data Lakes, and MongoDB Atlas Streams Workspaces in the project.
Scopes *[]UserScope `json:"scopes,omitempty"`
// Human-readable label that represents the user that authenticates to MongoDB. The format of this label depends on the method of authentication: | Authentication Method | Parameter Needed | Parameter Value | username Format | |---|---|---|---| | AWS IAM | awsIAMType | ROLE | ARN | | AWS IAM | awsIAMType | USER | ARN | | x.509 | x509Type | CUSTOMER | [RFC 2253](https://tools.ietf.org/html/2253) Distinguished Name | | x.509 | x509Type | MANAGED | [RFC 2253](https://tools.ietf.org/html/2253) Distinguished Name | | LDAP | ldapAuthType | USER | [RFC 2253](https://tools.ietf.org/html/2253) Distinguished Name | | LDAP | ldapAuthType | GROUP | [RFC 2253](https://tools.ietf.org/html/2253) Distinguished Name | | OIDC Workforce | oidcAuthType | IDP_GROUP | Atlas OIDC IdP ID (found in federation settings), followed by a '/', followed by the IdP group name | | OIDC Workload | oidcAuthType | USER | Atlas OIDC IdP ID (found in federation settings), followed by a '/', followed by the IdP user name | | SCRAM-SHA | awsIAMType, x509Type, ldapAuthType, oidcAuthType | NONE | Alphanumeric string |
Username string `json:"username"`
diff --git a/admin/model_cluster_compute_auto_scaling.go b/admin/model_cluster_compute_auto_scaling.go
index 9211c87d..21209c1f 100644
--- a/admin/model_cluster_compute_auto_scaling.go
+++ b/admin/model_cluster_compute_auto_scaling.go
@@ -6,8 +6,6 @@ package admin
type ClusterComputeAutoScaling struct {
// Flag that indicates whether instance size reactive auto-scaling is enabled. - Set to `true` to enable instance size reactive auto-scaling. If enabled, you must specify a value for **providerSettings.autoScaling.compute.maxInstanceSize**. - Set to `false` to disable instance size reactive auto-scaling.
Enabled *bool `json:"enabled,omitempty"`
- // Flag that indicates whether predictive instance size auto-scaling is enabled. - Set to `true` to enable predictive instance size auto-scaling. MongoDB Cloud requires **autoScaling.compute.enabled** is `true` in order to enable this feature. - Set to `false` to disable predictive instance size auto-scaling.
- PredictiveEnabled *bool `json:"predictiveEnabled,omitempty"`
// Flag that indicates whether the cluster tier can scale down via reactive auto-scaling. This is required if **autoScaling.compute.enabled** is `true`. If you enable this option, specify a value for **providerSettings.autoScaling.compute.minInstanceSize**.
ScaleDownEnabled *bool `json:"scaleDownEnabled,omitempty"`
}
@@ -20,8 +18,6 @@ func NewClusterComputeAutoScaling() *ClusterComputeAutoScaling {
this := ClusterComputeAutoScaling{}
var enabled bool = false
this.Enabled = &enabled
- var predictiveEnabled bool = false
- this.PredictiveEnabled = &predictiveEnabled
var scaleDownEnabled bool = false
this.ScaleDownEnabled = &scaleDownEnabled
return &this
@@ -34,8 +30,6 @@ func NewClusterComputeAutoScalingWithDefaults() *ClusterComputeAutoScaling {
this := ClusterComputeAutoScaling{}
var enabled bool = false
this.Enabled = &enabled
- var predictiveEnabled bool = false
- this.PredictiveEnabled = &predictiveEnabled
var scaleDownEnabled bool = false
this.ScaleDownEnabled = &scaleDownEnabled
return &this
@@ -74,39 +68,6 @@ func (o *ClusterComputeAutoScaling) SetEnabled(v bool) {
o.Enabled = &v
}
-// GetPredictiveEnabled returns the PredictiveEnabled field value if set, zero value otherwise
-func (o *ClusterComputeAutoScaling) GetPredictiveEnabled() bool {
- if o == nil || IsNil(o.PredictiveEnabled) {
- var ret bool
- return ret
- }
- return *o.PredictiveEnabled
-}
-
-// GetPredictiveEnabledOk returns a tuple with the PredictiveEnabled field value if set, nil otherwise
-// and a boolean to check if the value has been set.
-func (o *ClusterComputeAutoScaling) GetPredictiveEnabledOk() (*bool, bool) {
- if o == nil || IsNil(o.PredictiveEnabled) {
- return nil, false
- }
-
- return o.PredictiveEnabled, true
-}
-
-// HasPredictiveEnabled returns a boolean if a field has been set.
-func (o *ClusterComputeAutoScaling) HasPredictiveEnabled() bool {
- if o != nil && !IsNil(o.PredictiveEnabled) {
- return true
- }
-
- return false
-}
-
-// SetPredictiveEnabled gets a reference to the given bool and assigns it to the PredictiveEnabled field.
-func (o *ClusterComputeAutoScaling) SetPredictiveEnabled(v bool) {
- o.PredictiveEnabled = &v
-}
-
// GetScaleDownEnabled returns the ScaleDownEnabled field value if set, zero value otherwise
func (o *ClusterComputeAutoScaling) GetScaleDownEnabled() bool {
if o == nil || IsNil(o.ScaleDownEnabled) {
diff --git a/admin/model_event_view_for_nds_group.go b/admin/model_event_view_for_nds_group.go
index 8d9f1457..a5484f85 100644
--- a/admin/model_event_view_for_nds_group.go
+++ b/admin/model_event_view_for_nds_group.go
@@ -113,7 +113,7 @@ type EventViewForNdsGroup struct {
ResourceId *string `json:"resourceId,omitempty"`
// Unique identifier of resource type.
ResourceType *string `json:"resourceType,omitempty"`
- // Name of the stream processing instance associated with the event.
+ // Name of the stream processing workspace associated with the event.
// Read only field.
InstanceName *string `json:"instanceName,omitempty"`
// Error message linked to the stream processor associated with the event.
diff --git a/admin/model_organization_settings.go b/admin/model_organization_settings.go
index ac393827..cc108a44 100644
--- a/admin/model_organization_settings.go
+++ b/admin/model_organization_settings.go
@@ -17,7 +17,7 @@ type OrganizationSettings struct {
RestrictEmployeeAccess *bool `json:"restrictEmployeeAccess,omitempty"`
// String that specifies a single email address for the specified organization to receive security-related notifications. Specifying a security contact does not grant them authorization or access to Atlas for security decisions or approvals. An empty string is valid and clears the existing security contact (if any).
SecurityContact *string `json:"securityContact,omitempty"`
- // Flag that indicates whether a group's Atlas Stream Processing instances in this organization can create connections to other group's clusters in the same organization.
+ // Flag that indicates whether a group's Atlas Stream Processing workspaces in this organization can create connections to other group's clusters in the same organization.
StreamsCrossGroupEnabled *bool `json:"streamsCrossGroupEnabled,omitempty"`
}
diff --git a/admin/model_stream_config.go b/admin/model_stream_config.go
index 0e8ebdeb..c18a54d6 100644
--- a/admin/model_stream_config.go
+++ b/admin/model_stream_config.go
@@ -2,14 +2,14 @@
package admin
-// StreamConfig Configuration options for an Atlas Stream Processing Instance.
+// StreamConfig Configuration options for an Atlas Stream Processing Workspace.
type StreamConfig struct {
// List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships.
// Read only field.
Links *[]Link `json:"links,omitempty"`
- // Max tier size for the Stream Instance. Configures Memory / VCPU allowances. This field is not supported yet.
+ // Max tier size for the Stream Workspace. Configures Memory / VCPU allowances.
MaxTierSize *string `json:"maxTierSize,omitempty"`
- // Selected tier for the Stream Instance. Configures Memory / VCPU allowances.
+ // Selected tier for the Stream Workspace. Configures Memory / VCPU allowances.
Tier *string `json:"tier,omitempty"`
}
diff --git a/admin/model_streams_matcher.go b/admin/model_streams_matcher.go
index bee373c5..7294cd81 100644
--- a/admin/model_streams_matcher.go
+++ b/admin/model_streams_matcher.go
@@ -2,7 +2,7 @@
package admin
-// StreamsMatcher Rules to apply when comparing a stream processing instance or stream processor against this alert configuration.
+// StreamsMatcher Rules to apply when comparing a stream processing workspace or stream processor against this alert configuration.
type StreamsMatcher struct {
// Name of the parameter in the target object that MongoDB Cloud checks. The parameter must match all rules for MongoDB Cloud to check for alert configurations.
FieldName string `json:"fieldName"`
diff --git a/admin/model_streams_private_link_connection.go b/admin/model_streams_private_link_connection.go
index b9bc362f..236ae363 100644
--- a/admin/model_streams_private_link_connection.go
+++ b/admin/model_streams_private_link_connection.go
@@ -18,6 +18,8 @@ type StreamsPrivateLinkConnection struct {
// Error message if the state is FAILED.
// Read only field.
ErrorMessage *string `json:"errorMessage,omitempty"`
+ // List of GCP Private Service Connect connection IDs.
+ GcpConnectionIds *[]string `json:"gcpConnectionIds,omitempty"`
// Service Attachment URIs of each availability zone for the GCP Confluent cluster.
GcpServiceAttachmentUris *[]string `json:"gcpServiceAttachmentUris,omitempty"`
// Interface endpoint ID that is created from the service endpoint ID provided.
@@ -261,6 +263,39 @@ func (o *StreamsPrivateLinkConnection) SetErrorMessage(v string) {
o.ErrorMessage = &v
}
+// GetGcpConnectionIds returns the GcpConnectionIds field value if set, zero value otherwise
+func (o *StreamsPrivateLinkConnection) GetGcpConnectionIds() []string {
+ if o == nil || IsNil(o.GcpConnectionIds) {
+ var ret []string
+ return ret
+ }
+ return *o.GcpConnectionIds
+}
+
+// GetGcpConnectionIdsOk returns a tuple with the GcpConnectionIds field value if set, nil otherwise
+// and a boolean to check if the value has been set.
+func (o *StreamsPrivateLinkConnection) GetGcpConnectionIdsOk() (*[]string, bool) {
+ if o == nil || IsNil(o.GcpConnectionIds) {
+ return nil, false
+ }
+
+ return o.GcpConnectionIds, true
+}
+
+// HasGcpConnectionIds returns a boolean if a field has been set.
+func (o *StreamsPrivateLinkConnection) HasGcpConnectionIds() bool {
+ if o != nil && !IsNil(o.GcpConnectionIds) {
+ return true
+ }
+
+ return false
+}
+
+// SetGcpConnectionIds gets a reference to the given []string and assigns it to the GcpConnectionIds field.
+func (o *StreamsPrivateLinkConnection) SetGcpConnectionIds(v []string) {
+ o.GcpConnectionIds = &v
+}
+
// GetGcpServiceAttachmentUris returns the GcpServiceAttachmentUris field value if set, zero value otherwise
func (o *StreamsPrivateLinkConnection) GetGcpServiceAttachmentUris() []string {
if o == nil || IsNil(o.GcpServiceAttachmentUris) {
diff --git a/admin/model_streams_tenant.go b/admin/model_streams_tenant.go
index 693ed2b5..e67fe253 100644
--- a/admin/model_streams_tenant.go
+++ b/admin/model_streams_tenant.go
@@ -7,20 +7,20 @@ type StreamsTenant struct {
// Unique 24-hexadecimal character string that identifies the project.
// Read only field.
Id *string `json:"_id,omitempty"`
- // List of connections configured in the stream instance.
+ // List of connections configured in the stream workspace.
// Read only field.
Connections *[]StreamsConnection `json:"connections,omitempty"`
DataProcessRegion *StreamsDataProcessRegion `json:"dataProcessRegion,omitempty"`
// Unique 24-hexadecimal character string that identifies the project.
// Read only field.
GroupId *string `json:"groupId,omitempty"`
- // List that contains the hostnames assigned to the stream instance.
+ // List that contains the hostnames assigned to the stream workspace.
// Read only field.
Hostnames *[]string `json:"hostnames,omitempty"`
// List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships.
// Read only field.
Links *[]Link `json:"links,omitempty"`
- // Human-readable label that identifies the stream instance.
+ // Label that identifies the stream workspace.
Name *string `json:"name,omitempty"`
SampleConnections *StreamsSampleConnections `json:"sampleConnections,omitempty"`
StreamConfig *StreamConfig `json:"streamConfig,omitempty"`
diff --git a/auth/clientcredentials/clientcredentials.go b/auth/clientcredentials/clientcredentials.go
index b03cd2b9..a87f4df3 100644
--- a/auth/clientcredentials/clientcredentials.go
+++ b/auth/clientcredentials/clientcredentials.go
@@ -11,8 +11,8 @@ import (
"golang.org/x/oauth2"
- "go.mongodb.org/atlas-sdk/v20250312008/auth"
- "go.mongodb.org/atlas-sdk/v20250312008/internal/core"
+ "go.mongodb.org/atlas-sdk/v20250312009/auth"
+ "go.mongodb.org/atlas-sdk/v20250312009/internal/core"
"golang.org/x/oauth2/clientcredentials"
)
diff --git a/auth/clientcredentials/clientcredentials_test.go b/auth/clientcredentials/clientcredentials_test.go
index a407164e..484ebe7e 100644
--- a/auth/clientcredentials/clientcredentials_test.go
+++ b/auth/clientcredentials/clientcredentials_test.go
@@ -8,7 +8,7 @@ import (
"time"
"github.com/stretchr/testify/assert"
- "go.mongodb.org/atlas-sdk/v20250312008/auth"
+ "go.mongodb.org/atlas-sdk/v20250312009/auth"
)
// mockOAuthRevokeEndpoint creates a mock OAuth revoke endpoint,
diff --git a/auth/code/device_flow.go b/auth/code/device_flow.go
index 8a2aee65..7eef21a2 100644
--- a/auth/code/device_flow.go
+++ b/auth/code/device_flow.go
@@ -22,7 +22,7 @@ import (
"strings"
"time"
- core "go.mongodb.org/atlas-sdk/v20250312008/internal/core"
+ core "go.mongodb.org/atlas-sdk/v20250312009/internal/core"
)
const authExpiredError = "DEVICE_AUTHORIZATION_EXPIRED"
diff --git a/auth/code/oauth.go b/auth/code/oauth.go
index ca3a9fd2..cf1fccd5 100644
--- a/auth/code/oauth.go
+++ b/auth/code/oauth.go
@@ -26,7 +26,7 @@ import (
"runtime"
"strings"
- "go.mongodb.org/atlas-sdk/v20250312008/internal/core"
+ "go.mongodb.org/atlas-sdk/v20250312009/internal/core"
)
const defaultBaseURL = "https://cloud.mongodb.com/"
diff --git a/auth/code/oauth_test.go b/auth/code/oauth_test.go
index a07fa784..2b757c4b 100644
--- a/auth/code/oauth_test.go
+++ b/auth/code/oauth_test.go
@@ -24,7 +24,7 @@ import (
"reflect"
"testing"
- core "go.mongodb.org/atlas-sdk/v20250312008/internal/core"
+ core "go.mongodb.org/atlas-sdk/v20250312009/internal/core"
)
const (
diff --git a/docs/doc_4_authentication.md b/docs/doc_4_authentication.md
index 7a96449b..38b43bb4 100644
--- a/docs/doc_4_authentication.md
+++ b/docs/doc_4_authentication.md
@@ -18,7 +18,7 @@ import (
"log"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -62,7 +62,7 @@ import (
"log"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/doc_last_reference.md b/docs/doc_last_reference.md
index fe6c9fe2..1d3b3af9 100644
--- a/docs/doc_last_reference.md
+++ b/docs/doc_last_reference.md
@@ -415,23 +415,23 @@ Class | Method | HTTP request | Description |
*StreamsApi* | [CreatePrivateLinkConnection](./docs/StreamsApi.md#createprivatelinkconnection) | **Post** /api/atlas/v2/groups/{groupId}/streams/privateLinkConnections | Create One Private Link Connection |
*StreamsApi* | [CreateStreamConnection](./docs/StreamsApi.md#createstreamconnection) | **Post** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections | Create One Stream Connection |
*StreamsApi* | [CreateStreamProcessor](./docs/StreamsApi.md#createstreamprocessor) | **Post** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor | Create One Stream Processor |
-*StreamsApi* | [CreateStreamWorkspace](./docs/StreamsApi.md#createstreamworkspace) | **Post** /api/atlas/v2/groups/{groupId}/streams | Create One Stream Instance |
+*StreamsApi* | [CreateStreamWorkspace](./docs/StreamsApi.md#createstreamworkspace) | **Post** /api/atlas/v2/groups/{groupId}/streams | Create One Stream Workspace |
*StreamsApi* | [DeletePrivateLinkConnection](./docs/StreamsApi.md#deleteprivatelinkconnection) | **Delete** /api/atlas/v2/groups/{groupId}/streams/privateLinkConnections/{connectionId} | Delete One Private Link Connection |
*StreamsApi* | [DeleteStreamConnection](./docs/StreamsApi.md#deletestreamconnection) | **Delete** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName} | Delete One Stream Connection |
*StreamsApi* | [DeleteStreamProcessor](./docs/StreamsApi.md#deletestreamprocessor) | **Delete** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName} | Delete One Stream Processor |
-*StreamsApi* | [DeleteStreamWorkspace](./docs/StreamsApi.md#deletestreamworkspace) | **Delete** /api/atlas/v2/groups/{groupId}/streams/{tenantName} | Delete One Stream Instance |
+*StreamsApi* | [DeleteStreamWorkspace](./docs/StreamsApi.md#deletestreamworkspace) | **Delete** /api/atlas/v2/groups/{groupId}/streams/{tenantName} | Delete One Stream Workspace |
*StreamsApi* | [DeleteVpcPeeringConnection](./docs/StreamsApi.md#deletevpcpeeringconnection) | **Delete** /api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id} | Delete One VPC Peering Connection |
-*StreamsApi* | [DownloadAuditLogs](./docs/StreamsApi.md#downloadauditlogs) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs | Download Audit Logs for One Atlas Stream Processing Instance |
+*StreamsApi* | [DownloadAuditLogs](./docs/StreamsApi.md#downloadauditlogs) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs | Download Audit Logs for One Atlas Stream Processing Workspace |
*StreamsApi* | [GetAccountDetails](./docs/StreamsApi.md#getaccountdetails) | **Get** /api/atlas/v2/groups/{groupId}/streams/accountDetails | Return Account ID and VPC ID for One Project and Region |
*StreamsApi* | [GetPrivateLinkConnection](./docs/StreamsApi.md#getprivatelinkconnection) | **Get** /api/atlas/v2/groups/{groupId}/streams/privateLinkConnections/{connectionId} | Return One Private Link Connection |
*StreamsApi* | [GetStreamConnection](./docs/StreamsApi.md#getstreamconnection) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName} | Return One Stream Connection |
*StreamsApi* | [GetStreamProcessor](./docs/StreamsApi.md#getstreamprocessor) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName} | Return One Stream Processor |
-*StreamsApi* | [GetStreamProcessors](./docs/StreamsApi.md#getstreamprocessors) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors | Return All Stream Processors in One Stream Instance |
-*StreamsApi* | [GetStreamWorkspace](./docs/StreamsApi.md#getstreamworkspace) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName} | Return One Stream Instance |
+*StreamsApi* | [GetStreamProcessors](./docs/StreamsApi.md#getstreamprocessors) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors | Return All Stream Processors in One Stream Workspace |
+*StreamsApi* | [GetStreamWorkspace](./docs/StreamsApi.md#getstreamworkspace) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName} | Return One Stream Workspace |
*StreamsApi* | [ListActivePeeringConnections](./docs/StreamsApi.md#listactivepeeringconnections) | **Get** /api/atlas/v2/groups/{groupId}/streams/activeVpcPeeringConnections | Return All Active Incoming VPC Peering Connections |
*StreamsApi* | [ListPrivateLinkConnections](./docs/StreamsApi.md#listprivatelinkconnections) | **Get** /api/atlas/v2/groups/{groupId}/streams/privateLinkConnections | Return All Private Link Connections |
-*StreamsApi* | [ListStreamConnections](./docs/StreamsApi.md#liststreamconnections) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections | Return All Connections of the Stream Instances |
-*StreamsApi* | [ListStreamWorkspaces](./docs/StreamsApi.md#liststreamworkspaces) | **Get** /api/atlas/v2/groups/{groupId}/streams | Return All Stream Instances in One Project |
+*StreamsApi* | [ListStreamConnections](./docs/StreamsApi.md#liststreamconnections) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections | Return All Connections of the Stream Workspaces |
+*StreamsApi* | [ListStreamWorkspaces](./docs/StreamsApi.md#liststreamworkspaces) | **Get** /api/atlas/v2/groups/{groupId}/streams | Return All Stream Workspaces in One Project |
*StreamsApi* | [ListVpcPeeringConnections](./docs/StreamsApi.md#listvpcpeeringconnections) | **Get** /api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections | Return All VPC Peering Connections |
*StreamsApi* | [RejectVpcPeeringConnection](./docs/StreamsApi.md#rejectvpcpeeringconnection) | **Post** /api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}:reject | Reject One Incoming VPC Peering Connection |
*StreamsApi* | [StartStreamProcessor](./docs/StreamsApi.md#startstreamprocessor) | **Post** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start | Start One Stream Processor |
@@ -439,8 +439,8 @@ Class | Method | HTTP request | Description |
*StreamsApi* | [StopStreamProcessor](./docs/StreamsApi.md#stopstreamprocessor) | **Post** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop | Stop One Stream Processor |
*StreamsApi* | [UpdateStreamConnection](./docs/StreamsApi.md#updatestreamconnection) | **Patch** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName} | Update One Stream Connection |
*StreamsApi* | [UpdateStreamProcessor](./docs/StreamsApi.md#updatestreamprocessor) | **Patch** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName} | Update One Stream Processor |
-*StreamsApi* | [UpdateStreamWorkspace](./docs/StreamsApi.md#updatestreamworkspace) | **Patch** /api/atlas/v2/groups/{groupId}/streams/{tenantName} | Update One Stream Instance |
-*StreamsApi* | [WithStreamSampleConnections](./docs/StreamsApi.md#withstreamsampleconnections) | **Post** /api/atlas/v2/groups/{groupId}/streams:withSampleConnections | Create One Stream Instance with Sample Connections |
+*StreamsApi* | [UpdateStreamWorkspace](./docs/StreamsApi.md#updatestreamworkspace) | **Patch** /api/atlas/v2/groups/{groupId}/streams/{tenantName} | Update One Stream Workspace |
+*StreamsApi* | [WithStreamSampleConnections](./docs/StreamsApi.md#withstreamsampleconnections) | **Post** /api/atlas/v2/groups/{groupId}/streams:withSampleConnections | Create One Stream Workspace with Sample Connections |
*TeamsApi* | [AddGroupTeams](./docs/TeamsApi.md#addgroupteams) | **Post** /api/atlas/v2/groups/{groupId}/teams | Add One Team to One Project |
*TeamsApi* | [AddTeamUsers](./docs/TeamsApi.md#addteamusers) | **Post** /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users | Assign MongoDB Cloud Users in One Organization to One Team |
*TeamsApi* | [CreateOrgTeam](./docs/TeamsApi.md#createorgteam) | **Post** /api/atlas/v2/orgs/{orgId}/teams | Create One Team in One Organization |
diff --git a/docs/docs/AWSClustersDNSApi.md b/docs/docs/AWSClustersDNSApi.md
index e3af31cb..70fc3d65 100644
--- a/docs/docs/AWSClustersDNSApi.md
+++ b/docs/docs/AWSClustersDNSApi.md
@@ -26,7 +26,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -106,7 +106,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/AccessTrackingApi.md b/docs/docs/AccessTrackingApi.md
index 5f15c605..1225dc9e 100644
--- a/docs/docs/AccessTrackingApi.md
+++ b/docs/docs/AccessTrackingApi.md
@@ -26,7 +26,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -119,7 +119,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/AdvancedComputeAutoScaling.md b/docs/docs/AdvancedComputeAutoScaling.md
index 9d1ae99e..a04d5157 100644
--- a/docs/docs/AdvancedComputeAutoScaling.md
+++ b/docs/docs/AdvancedComputeAutoScaling.md
@@ -7,7 +7,6 @@ Name | Type | Description | Notes
**Enabled** | Pointer to **bool** | Flag that indicates whether instance size reactive auto-scaling is enabled. - Set to `true` to enable instance size reactive auto-scaling. If enabled, you must specify a value for **replicationSpecs[n].regionConfigs[m].autoScaling.compute.maxInstanceSize**. - Set to `false` to disable instance size reactive auto-scaling. | [optional]
**MaxInstanceSize** | Pointer to **string** | Instance size boundary to which your cluster can automatically scale. | [optional] [readonly]
**MinInstanceSize** | Pointer to **string** | Instance size boundary to which your cluster can automatically scale. | [optional] [readonly]
-**PredictiveEnabled** | Pointer to **bool** | Flag that indicates whether predictive instance size auto-scaling is enabled. - Set to `true` to enable predictive instance size auto-scaling. MongoDB Cloud requires **replicationSpecs[n].regionConfigs[m].autoScaling.compute.enabled** to be `true` in order to enable this feature. - Set to `false` to disable predictive instance size auto-scaling. | [optional]
**ScaleDownEnabled** | Pointer to **bool** | Flag that indicates whether the instance size may scale down via reactive auto-scaling. MongoDB Cloud requires this parameter if **replicationSpecs[n].regionConfigs[m].autoScaling.compute.enabled** is `true`. If you enable this option, specify a value for **replicationSpecs[n].regionConfigs[m].autoScaling.compute.minInstanceSize**. | [optional]
## Methods
@@ -101,30 +100,6 @@ SetMinInstanceSize sets MinInstanceSize field to given value.
`func (o *AdvancedComputeAutoScaling) HasMinInstanceSize() bool`
HasMinInstanceSize returns a boolean if a field has been set.
-### GetPredictiveEnabled
-
-`func (o *AdvancedComputeAutoScaling) GetPredictiveEnabled() bool`
-
-GetPredictiveEnabled returns the PredictiveEnabled field if non-nil, zero value otherwise.
-
-### GetPredictiveEnabledOk
-
-`func (o *AdvancedComputeAutoScaling) GetPredictiveEnabledOk() (*bool, bool)`
-
-GetPredictiveEnabledOk returns a tuple with the PredictiveEnabled field if it's non-nil, zero value otherwise
-and a boolean to check if the value has been set.
-
-### SetPredictiveEnabled
-
-`func (o *AdvancedComputeAutoScaling) SetPredictiveEnabled(v bool)`
-
-SetPredictiveEnabled sets PredictiveEnabled field to given value.
-
-### HasPredictiveEnabled
-
-`func (o *AdvancedComputeAutoScaling) HasPredictiveEnabled() bool`
-
-HasPredictiveEnabled returns a boolean if a field has been set.
### GetScaleDownEnabled
`func (o *AdvancedComputeAutoScaling) GetScaleDownEnabled() bool`
diff --git a/docs/docs/AlertConfigurationsApi.md b/docs/docs/AlertConfigurationsApi.md
index a5ce95d4..325d6c11 100644
--- a/docs/docs/AlertConfigurationsApi.md
+++ b/docs/docs/AlertConfigurationsApi.md
@@ -32,7 +32,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -114,7 +114,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -195,7 +195,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -278,7 +278,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -367,7 +367,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -453,7 +453,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -524,7 +524,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -609,7 +609,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/AlertViewForNdsGroup.md b/docs/docs/AlertViewForNdsGroup.md
index 411f42fb..1595ad62 100644
--- a/docs/docs/AlertViewForNdsGroup.md
+++ b/docs/docs/AlertViewForNdsGroup.md
@@ -25,7 +25,7 @@ Name | Type | Description | Notes
**MetricName** | Pointer to **string** | Name of the metric against which Atlas checks the configured `metricThreshold.threshold`. To learn more about the available metrics, see <a href=\"https://www.mongodb.com/docs/atlas/reference/alert-host-metrics/#std-label-measurement-types\" target=\"_blank\">Host Metrics</a>. **NOTE**: If you set eventTypeName to OUTSIDE_SERVERLESS_METRIC_THRESHOLD, you can specify only metrics available for serverless. To learn more, see <a href=\"https://dochub.mongodb.org/core/alert-config-serverless-measurements\" target=\"_blank\">Serverless Measurements</a>. | [optional] [readonly]
**NonRunningHostIds** | Pointer to **[]string** | List of unique 24-hexadecimal character strings that identify the replica set members that are not in PRIMARY nor SECONDARY state. | [optional] [readonly]
**ParentClusterId** | Pointer to **string** | Unique 24-hexadecimal character string that identifies the parent cluster to which this alert applies. The parent cluster contains the sharded nodes. MongoDB Cloud returns this parameter only for alerts of events impacting sharded clusters. | [optional] [readonly]
-**InstanceName** | Pointer to **string** | The name of the Stream Processing Instance to which this alert applies. The resource returns this parameter for alerts of events impacting Stream Processing Instances. | [optional] [readonly]
+**InstanceName** | Pointer to **string** | The name of the Stream Processing Workspace to which this alert applies. The resource returns this parameter for alerts of events impacting Stream Processing Workspaces. | [optional] [readonly]
**ProcessorErrorMsg** | Pointer to **string** | The error message associated with the Stream Processor to which this alert applies. | [optional] [readonly]
**ProcessorName** | Pointer to **string** | The name of the Stream Processor to which this alert applies. The resource returns this parameter for alerts of events impacting Stream Processors. | [optional] [readonly]
**ProcessorState** | Pointer to **string** | The state of the Stream Processor to which this alert applies. The resource returns this parameter for alerts of events impacting Stream Processors. | [optional] [readonly]
diff --git a/docs/docs/AlertsApi.md b/docs/docs/AlertsApi.md
index 946adc7d..27fd4bea 100644
--- a/docs/docs/AlertsApi.md
+++ b/docs/docs/AlertsApi.md
@@ -28,7 +28,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -113,7 +113,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -196,7 +196,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -285,7 +285,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/AtlasSearchApi.md b/docs/docs/AtlasSearchApi.md
index a5408d23..107aa089 100644
--- a/docs/docs/AtlasSearchApi.md
+++ b/docs/docs/AtlasSearchApi.md
@@ -42,7 +42,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -127,7 +127,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -212,7 +212,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -297,7 +297,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -381,7 +381,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -462,7 +462,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -546,7 +546,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -636,7 +636,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -722,7 +722,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -805,7 +805,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -891,7 +891,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -983,7 +983,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1072,7 +1072,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1155,7 +1155,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1244,7 +1244,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1332,7 +1332,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1417,7 +1417,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1505,7 +1505,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/AuditingApi.md b/docs/docs/AuditingApi.md
index 03eddb25..b60b04e7 100644
--- a/docs/docs/AuditingApi.md
+++ b/docs/docs/AuditingApi.md
@@ -26,7 +26,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -106,7 +106,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/CloudBackupsApi.md b/docs/docs/CloudBackupsApi.md
index d31b8b22..ec5800d4 100644
--- a/docs/docs/CloudBackupsApi.md
+++ b/docs/docs/CloudBackupsApi.md
@@ -54,7 +54,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -138,7 +138,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -223,7 +223,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -308,7 +308,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -390,7 +390,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -475,7 +475,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -559,7 +559,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -642,7 +642,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -726,7 +726,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -807,7 +807,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -885,7 +885,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -971,7 +971,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1057,7 +1057,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1140,7 +1140,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1226,7 +1226,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1312,7 +1312,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1392,7 +1392,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1475,7 +1475,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1561,7 +1561,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1647,7 +1647,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1736,7 +1736,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1825,7 +1825,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1908,7 +1908,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1997,7 +1997,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -2083,7 +2083,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -2172,7 +2172,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -2261,7 +2261,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -2346,7 +2346,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -2431,7 +2431,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -2519,7 +2519,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/CloudDatabaseUser.md b/docs/docs/CloudDatabaseUser.md
index 3cc9ac2e..2d99df95 100644
--- a/docs/docs/CloudDatabaseUser.md
+++ b/docs/docs/CloudDatabaseUser.md
@@ -15,7 +15,7 @@ Name | Type | Description | Notes
**OidcAuthType** | Pointer to **string** | Human-readable label that indicates whether the new database user or group authenticates with OIDC federated authentication. To create a federated authentication user, specify the value of USER in this field. To create a federated authentication group, specify the value of IDP_GROUP in this field. | [optional] [default to "NONE"]
**Password** | Pointer to **string** | Alphanumeric string that authenticates this database user against the database specified in `databaseName`. To authenticate with SCRAM-SHA, you must specify this parameter. This parameter doesn't appear in this response. | [optional]
**Roles** | Pointer to [**[]DatabaseUserRole**](DatabaseUserRole.md) | List that provides the pairings of one role with one applicable database. | [optional]
-**Scopes** | Pointer to [**[]UserScope**](UserScope.md) | List that contains clusters, MongoDB Atlas Data Lakes, and MongoDB Atlas Streams Instances that this database user can access. If omitted, MongoDB Cloud grants the database user access to all the clusters, MongoDB Atlas Data Lakes, and MongoDB Atlas Streams Instances in the project. | [optional]
+**Scopes** | Pointer to [**[]UserScope**](UserScope.md) | List that contains clusters, MongoDB Atlas Data Lakes, and MongoDB Atlas Streams Workspaces that this database user can access. If omitted, MongoDB Cloud grants the database user access to all the clusters, MongoDB Atlas Data Lakes, and MongoDB Atlas Streams Workspaces in the project. | [optional]
**Username** | **string** | Human-readable label that represents the user that authenticates to MongoDB. The format of this label depends on the method of authentication: | Authentication Method | Parameter Needed | Parameter Value | username Format | |---|---|---|---| | AWS IAM | awsIAMType | ROLE | <abbr title=\"Amazon Resource Name\">ARN</abbr> | | AWS IAM | awsIAMType | USER | <abbr title=\"Amazon Resource Name\">ARN</abbr> | | x.509 | x509Type | CUSTOMER | [RFC 2253](https://tools.ietf.org/html/2253) Distinguished Name | | x.509 | x509Type | MANAGED | [RFC 2253](https://tools.ietf.org/html/2253) Distinguished Name | | LDAP | ldapAuthType | USER | [RFC 2253](https://tools.ietf.org/html/2253) Distinguished Name | | LDAP | ldapAuthType | GROUP | [RFC 2253](https://tools.ietf.org/html/2253) Distinguished Name | | OIDC Workforce | oidcAuthType | IDP_GROUP | Atlas OIDC IdP ID (found in federation settings), followed by a '/', followed by the IdP group name | | OIDC Workload | oidcAuthType | USER | Atlas OIDC IdP ID (found in federation settings), followed by a '/', followed by the IdP user name | | SCRAM-SHA | awsIAMType, x509Type, ldapAuthType, oidcAuthType | NONE | Alphanumeric string | |
**X509Type** | Pointer to **string** | X.509 method that MongoDB Cloud uses to authenticate the database user. - For application-managed X.509, specify `MANAGED`. - For self-managed X.509, specify `CUSTOMER`. Users created with the `CUSTOMER` method require a Common Name (CN) in the **username** parameter. You must create externally authenticated users on the `$external` database. | [optional] [default to "NONE"]
diff --git a/docs/docs/CloudMigrationServiceApi.md b/docs/docs/CloudMigrationServiceApi.md
index 8ce54a93..7bd5541d 100644
--- a/docs/docs/CloudMigrationServiceApi.md
+++ b/docs/docs/CloudMigrationServiceApi.md
@@ -32,7 +32,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -114,7 +114,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -196,7 +196,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -277,7 +277,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -355,7 +355,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -438,7 +438,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -521,7 +521,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -601,7 +601,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/CloudProviderAccessApi.md b/docs/docs/CloudProviderAccessApi.md
index eceeac3e..87bbd52e 100644
--- a/docs/docs/CloudProviderAccessApi.md
+++ b/docs/docs/CloudProviderAccessApi.md
@@ -29,7 +29,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -114,7 +114,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -196,7 +196,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -280,7 +280,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -363,7 +363,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/ClusterComputeAutoScaling.md b/docs/docs/ClusterComputeAutoScaling.md
index bf4b013d..45951394 100644
--- a/docs/docs/ClusterComputeAutoScaling.md
+++ b/docs/docs/ClusterComputeAutoScaling.md
@@ -5,7 +5,6 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Enabled** | Pointer to **bool** | Flag that indicates whether instance size reactive auto-scaling is enabled. - Set to `true` to enable instance size reactive auto-scaling. If enabled, you must specify a value for **providerSettings.autoScaling.compute.maxInstanceSize**. - Set to `false` to disable instance size reactive auto-scaling. | [optional] [default to false]
-**PredictiveEnabled** | Pointer to **bool** | Flag that indicates whether predictive instance size auto-scaling is enabled. - Set to `true` to enable predictive instance size auto-scaling. MongoDB Cloud requires **autoScaling.compute.enabled** is `true` in order to enable this feature. - Set to `false` to disable predictive instance size auto-scaling. | [optional] [default to false]
**ScaleDownEnabled** | Pointer to **bool** | Flag that indicates whether the cluster tier can scale down via reactive auto-scaling. This is required if **autoScaling.compute.enabled** is `true`. If you enable this option, specify a value for **providerSettings.autoScaling.compute.minInstanceSize**. | [optional] [default to false]
## Methods
@@ -51,30 +50,6 @@ SetEnabled sets Enabled field to given value.
`func (o *ClusterComputeAutoScaling) HasEnabled() bool`
HasEnabled returns a boolean if a field has been set.
-### GetPredictiveEnabled
-
-`func (o *ClusterComputeAutoScaling) GetPredictiveEnabled() bool`
-
-GetPredictiveEnabled returns the PredictiveEnabled field if non-nil, zero value otherwise.
-
-### GetPredictiveEnabledOk
-
-`func (o *ClusterComputeAutoScaling) GetPredictiveEnabledOk() (*bool, bool)`
-
-GetPredictiveEnabledOk returns a tuple with the PredictiveEnabled field if it's non-nil, zero value otherwise
-and a boolean to check if the value has been set.
-
-### SetPredictiveEnabled
-
-`func (o *ClusterComputeAutoScaling) SetPredictiveEnabled(v bool)`
-
-SetPredictiveEnabled sets PredictiveEnabled field to given value.
-
-### HasPredictiveEnabled
-
-`func (o *ClusterComputeAutoScaling) HasPredictiveEnabled() bool`
-
-HasPredictiveEnabled returns a boolean if a field has been set.
### GetScaleDownEnabled
`func (o *ClusterComputeAutoScaling) GetScaleDownEnabled() bool`
diff --git a/docs/docs/ClusterOutageSimulationApi.md b/docs/docs/ClusterOutageSimulationApi.md
index 0acef6eb..39962498 100644
--- a/docs/docs/ClusterOutageSimulationApi.md
+++ b/docs/docs/ClusterOutageSimulationApi.md
@@ -27,7 +27,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -110,7 +110,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -193,7 +193,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/ClustersApi.md b/docs/docs/ClustersApi.md
index 3d1e6b91..4ecf26fc 100644
--- a/docs/docs/ClustersApi.md
+++ b/docs/docs/ClustersApi.md
@@ -44,7 +44,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -112,7 +112,7 @@ Name | Type | Description | Notes
## CreateCluster
-> ClusterDescription20240805 CreateCluster(ctx, groupId, clusterDescription20240805 ClusterDescription20240805).Execute()
+> ClusterDescription20240805 CreateCluster(ctx, groupId, clusterDescription20240805 ClusterDescription20240805).UseEffectiveInstanceFields(useEffectiveInstanceFields).Execute()
Create One Cluster in One Project
@@ -127,7 +127,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -142,8 +142,9 @@ func main() {
groupId := "32b6e34b3d91647abb20e7b8" // string |
clusterDescription20240805 := *openapiclient.NewClusterDescription20240805() // ClusterDescription20240805 |
+ useEffectiveInstanceFields := true // bool | (optional) (default to false)
- resp, r, err := sdk.ClustersApi.CreateCluster(context.Background(), groupId, &clusterDescription20240805).Execute()
+ resp, r, err := sdk.ClustersApi.CreateCluster(context.Background(), groupId, &clusterDescription20240805).UseEffectiveInstanceFields(useEffectiveInstanceFields).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ClustersApi.CreateCluster`: %v (%v)\n", err, r)
apiError, ok := admin.AsError(err)
@@ -174,6 +175,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**clusterDescription20240805** | [**ClusterDescription20240805**](ClusterDescription20240805.md) | Cluster to create in this project. |
+ **useEffectiveInstanceFields** | **bool** | Controls how hardware specification fields are returned in the response after cluster creation. When set to true, returns the original client-specified values and provides separate effective fields showing current operational values. When false (default), hardware specification fields show current operational values directly. Primarily used for autoscaling compatibility. | [default to false]
### Return type
@@ -209,7 +211,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -277,7 +279,7 @@ Name | Type | Description | Notes
## GetCluster
-> ClusterDescription20240805 GetCluster(ctx, groupId, clusterName).Execute()
+> ClusterDescription20240805 GetCluster(ctx, groupId, clusterName).UseEffectiveInstanceFields(useEffectiveInstanceFields).Execute()
Return One Cluster from One Project
@@ -292,7 +294,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -307,8 +309,9 @@ func main() {
groupId := "32b6e34b3d91647abb20e7b8" // string |
clusterName := "clusterName_example" // string |
+ useEffectiveInstanceFields := true // bool | (optional) (default to false)
- resp, r, err := sdk.ClustersApi.GetCluster(context.Background(), groupId, clusterName).Execute()
+ resp, r, err := sdk.ClustersApi.GetCluster(context.Background(), groupId, clusterName).UseEffectiveInstanceFields(useEffectiveInstanceFields).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ClustersApi.GetCluster`: %v (%v)\n", err, r)
apiError, ok := admin.AsError(err)
@@ -340,6 +343,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
+ **useEffectiveInstanceFields** | **bool** | Controls how hardware specification fields are returned in the response. When set to true, returns the original client-specified values and provides separate effective fields showing current operational values. When false (default), hardware specification fields show current operational values directly. Primarily used for autoscaling compatibility. | [default to false]
### Return type
@@ -375,7 +379,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -458,7 +462,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -541,7 +545,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -624,7 +628,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -707,7 +711,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -787,7 +791,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -862,7 +866,7 @@ Name | Type | Description | Notes
## ListClusters
-> PaginatedClusterDescription20240805 ListClusters(ctx, groupId).IncludeCount(includeCount).ItemsPerPage(itemsPerPage).PageNum(pageNum).IncludeDeletedWithRetainedBackups(includeDeletedWithRetainedBackups).Execute()
+> PaginatedClusterDescription20240805 ListClusters(ctx, groupId).IncludeCount(includeCount).ItemsPerPage(itemsPerPage).PageNum(pageNum).IncludeDeletedWithRetainedBackups(includeDeletedWithRetainedBackups).UseEffectiveInstanceFields(useEffectiveInstanceFields).Execute()
Return All Clusters in One Project
@@ -877,7 +881,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -895,8 +899,9 @@ func main() {
itemsPerPage := int(56) // int | (optional) (default to 100)
pageNum := int(56) // int | (optional) (default to 1)
includeDeletedWithRetainedBackups := true // bool | (optional) (default to false)
+ useEffectiveInstanceFields := true // bool | (optional) (default to false)
- resp, r, err := sdk.ClustersApi.ListClusters(context.Background(), groupId).IncludeCount(includeCount).ItemsPerPage(itemsPerPage).PageNum(pageNum).IncludeDeletedWithRetainedBackups(includeDeletedWithRetainedBackups).Execute()
+ resp, r, err := sdk.ClustersApi.ListClusters(context.Background(), groupId).IncludeCount(includeCount).ItemsPerPage(itemsPerPage).PageNum(pageNum).IncludeDeletedWithRetainedBackups(includeDeletedWithRetainedBackups).UseEffectiveInstanceFields(useEffectiveInstanceFields).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ClustersApi.ListClusters`: %v (%v)\n", err, r)
apiError, ok := admin.AsError(err)
@@ -930,6 +935,7 @@ Name | Type | Description | Notes
**itemsPerPage** | **int** | Number of items that the response returns per page. | [default to 100]
**pageNum** | **int** | Number of the page that displays the current set of the total objects that the response returns. | [default to 1]
**includeDeletedWithRetainedBackups** | **bool** | Flag that indicates whether to return Clusters with retain backups. | [default to false]
+ **useEffectiveInstanceFields** | **bool** | Controls how hardware specification fields are returned in the response. When set to true, returns the original client-specified values and provides separate effective fields showing current operational values. When false (default), hardware specification fields show current operational values directly. Primarily used for autoscaling compatibility. | [default to false]
### Return type
@@ -965,7 +971,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1048,7 +1054,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1131,7 +1137,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1212,7 +1218,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1293,7 +1299,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1359,7 +1365,7 @@ Name | Type | Description | Notes
## UpdateCluster
-> ClusterDescription20240805 UpdateCluster(ctx, groupId, clusterName, clusterDescription20240805 ClusterDescription20240805).Execute()
+> ClusterDescription20240805 UpdateCluster(ctx, groupId, clusterName, clusterDescription20240805 ClusterDescription20240805).UseEffectiveInstanceFields(useEffectiveInstanceFields).Execute()
Update One Cluster in One Project
@@ -1374,7 +1380,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1390,8 +1396,9 @@ func main() {
groupId := "32b6e34b3d91647abb20e7b8" // string |
clusterName := "clusterName_example" // string |
clusterDescription20240805 := *openapiclient.NewClusterDescription20240805() // ClusterDescription20240805 |
+ useEffectiveInstanceFields := true // bool | (optional) (default to false)
- resp, r, err := sdk.ClustersApi.UpdateCluster(context.Background(), groupId, clusterName, &clusterDescription20240805).Execute()
+ resp, r, err := sdk.ClustersApi.UpdateCluster(context.Background(), groupId, clusterName, &clusterDescription20240805).UseEffectiveInstanceFields(useEffectiveInstanceFields).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ClustersApi.UpdateCluster`: %v (%v)\n", err, r)
apiError, ok := admin.AsError(err)
@@ -1424,6 +1431,7 @@ Name | Type | Description | Notes
**clusterDescription20240805** | [**ClusterDescription20240805**](ClusterDescription20240805.md) | Cluster to update in the specified project. |
+ **useEffectiveInstanceFields** | **bool** | Controls how hardware specification fields are returned in the response after cluster updates. When set to true, returns the original client-specified values and provides separate effective fields showing current operational values. When false (default), hardware specification fields show current operational values directly. Note: When using this header with autoscaling enabled, MongoDB ignores replicationSpecs changes during updates. To intentionally override the replicationSpecs, disable this header. | [default to false]
### Return type
@@ -1459,7 +1467,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1544,7 +1552,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1626,7 +1634,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/CollectionLevelMetricsApi.md b/docs/docs/CollectionLevelMetricsApi.md
index c9e78351..7231347b 100644
--- a/docs/docs/CollectionLevelMetricsApi.md
+++ b/docs/docs/CollectionLevelMetricsApi.md
@@ -33,7 +33,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -125,7 +125,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -214,7 +214,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -314,7 +314,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -392,7 +392,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -475,7 +475,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -572,7 +572,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -657,7 +657,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -742,7 +742,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/CustomDatabaseRolesApi.md b/docs/docs/CustomDatabaseRolesApi.md
index cd32eec3..32e86efb 100644
--- a/docs/docs/CustomDatabaseRolesApi.md
+++ b/docs/docs/CustomDatabaseRolesApi.md
@@ -29,7 +29,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -111,7 +111,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -192,7 +192,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -275,7 +275,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -355,7 +355,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/DataFederationApi.md b/docs/docs/DataFederationApi.md
index afe3e530..00c3bb5e 100644
--- a/docs/docs/DataFederationApi.md
+++ b/docs/docs/DataFederationApi.md
@@ -38,7 +38,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -122,7 +122,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -204,7 +204,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -285,7 +285,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -369,7 +369,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -450,7 +450,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -537,7 +537,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -620,7 +620,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -706,7 +706,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -789,7 +789,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -871,7 +871,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -954,7 +954,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1040,7 +1040,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1128,7 +1128,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/DataLakePipelinesApi.md b/docs/docs/DataLakePipelinesApi.md
index 41e529a4..fd0aeb8e 100644
--- a/docs/docs/DataLakePipelinesApi.md
+++ b/docs/docs/DataLakePipelinesApi.md
@@ -37,7 +37,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -119,7 +119,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -200,7 +200,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -286,7 +286,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -369,7 +369,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -460,7 +460,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -543,7 +543,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -629,7 +629,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -720,7 +720,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -800,7 +800,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -883,7 +883,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -966,7 +966,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1051,7 +1051,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/DatabaseUsersApi.md b/docs/docs/DatabaseUsersApi.md
index 35021493..9da1c337 100644
--- a/docs/docs/DatabaseUsersApi.md
+++ b/docs/docs/DatabaseUsersApi.md
@@ -29,7 +29,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -111,7 +111,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -195,7 +195,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -281,7 +281,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -367,7 +367,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/EncryptionAtRestUsingCustomerKeyManagementApi.md b/docs/docs/EncryptionAtRestUsingCustomerKeyManagementApi.md
index af5a3054..212aeedc 100644
--- a/docs/docs/EncryptionAtRestUsingCustomerKeyManagementApi.md
+++ b/docs/docs/EncryptionAtRestUsingCustomerKeyManagementApi.md
@@ -30,7 +30,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -115,7 +115,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -195,7 +195,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -281,7 +281,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -370,7 +370,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -454,7 +454,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/EventViewForNdsGroup.md b/docs/docs/EventViewForNdsGroup.md
index d56cd04f..e3a795ce 100644
--- a/docs/docs/EventViewForNdsGroup.md
+++ b/docs/docs/EventViewForNdsGroup.md
@@ -41,7 +41,7 @@ Name | Type | Description | Notes
**TargetUsername** | Pointer to **string** | Email address for the console user that this event targets. The resource returns this parameter when `\"eventTypeName\" : \"USER\"`. | [optional] [readonly]
**ResourceId** | Pointer to **string** | Unique 24-hexadecimal digit string that identifies the resource associated with the event. | [optional] [readonly]
**ResourceType** | Pointer to **string** | Unique identifier of resource type. | [optional]
-**InstanceName** | Pointer to **string** | Name of the stream processing instance associated with the event. | [optional] [readonly]
+**InstanceName** | Pointer to **string** | Name of the stream processing workspace associated with the event. | [optional] [readonly]
**ProcessorErrorMsg** | Pointer to **string** | Error message linked to the stream processor associated with the event. | [optional] [readonly]
**ProcessorName** | Pointer to **string** | Name of the stream processor associated with the event. | [optional] [readonly]
**ProcessorState** | Pointer to **string** | State of the stream processor associated with the event. | [optional] [readonly]
diff --git a/docs/docs/EventsApi.md b/docs/docs/EventsApi.md
index 77e12171..cbf8d896 100644
--- a/docs/docs/EventsApi.md
+++ b/docs/docs/EventsApi.md
@@ -29,7 +29,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -114,7 +114,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -199,7 +199,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -279,7 +279,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -377,7 +377,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/FederatedAuthenticationApi.md b/docs/docs/FederatedAuthenticationApi.md
index 54c1121c..9d1cbfc6 100644
--- a/docs/docs/FederatedAuthenticationApi.md
+++ b/docs/docs/FederatedAuthenticationApi.md
@@ -42,7 +42,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -124,7 +124,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -209,7 +209,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -287,7 +287,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -368,7 +368,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -452,7 +452,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -535,7 +535,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -615,7 +615,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -698,7 +698,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -781,7 +781,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -867,7 +867,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -951,7 +951,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1039,7 +1039,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1122,7 +1122,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1203,7 +1203,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1284,7 +1284,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1369,7 +1369,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1454,7 +1454,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/FlexClustersApi.md b/docs/docs/FlexClustersApi.md
index d26890ad..2e9cbddc 100644
--- a/docs/docs/FlexClustersApi.md
+++ b/docs/docs/FlexClustersApi.md
@@ -30,7 +30,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -112,7 +112,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -193,7 +193,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -276,7 +276,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -362,7 +362,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -444,7 +444,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/FlexRestoreJobsApi.md b/docs/docs/FlexRestoreJobsApi.md
index 0cb28d2a..1499aa17 100644
--- a/docs/docs/FlexRestoreJobsApi.md
+++ b/docs/docs/FlexRestoreJobsApi.md
@@ -27,7 +27,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -112,7 +112,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -198,7 +198,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/FlexSnapshotsApi.md b/docs/docs/FlexSnapshotsApi.md
index 3c2795c8..02ebc5a6 100644
--- a/docs/docs/FlexSnapshotsApi.md
+++ b/docs/docs/FlexSnapshotsApi.md
@@ -27,7 +27,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -112,7 +112,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -198,7 +198,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/GlobalClustersApi.md b/docs/docs/GlobalClustersApi.md
index 5a097b6a..0e9aac17 100644
--- a/docs/docs/GlobalClustersApi.md
+++ b/docs/docs/GlobalClustersApi.md
@@ -29,7 +29,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -114,7 +114,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -199,7 +199,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -282,7 +282,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -369,7 +369,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/InvoicesApi.md b/docs/docs/InvoicesApi.md
index 8070e3b7..4d2dd95f 100644
--- a/docs/docs/InvoicesApi.md
+++ b/docs/docs/InvoicesApi.md
@@ -31,7 +31,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -113,7 +113,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -196,7 +196,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -279,7 +279,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -362,7 +362,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -442,7 +442,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -540,7 +540,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/LDAPConfigurationApi.md b/docs/docs/LDAPConfigurationApi.md
index 8d290a99..ceed493a 100644
--- a/docs/docs/LDAPConfigurationApi.md
+++ b/docs/docs/LDAPConfigurationApi.md
@@ -29,7 +29,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -109,7 +109,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -189,7 +189,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -272,7 +272,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -354,7 +354,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/LegacyBackupApi.md b/docs/docs/LegacyBackupApi.md
index 7b7f79a1..e1923706 100644
--- a/docs/docs/LegacyBackupApi.md
+++ b/docs/docs/LegacyBackupApi.md
@@ -35,7 +35,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -120,7 +120,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -204,7 +204,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -290,7 +290,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -376,7 +376,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -462,7 +462,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -545,7 +545,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -634,7 +634,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -725,7 +725,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -816,7 +816,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -904,7 +904,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/MaintenanceWindowsApi.md b/docs/docs/MaintenanceWindowsApi.md
index dcef2baf..552145c2 100644
--- a/docs/docs/MaintenanceWindowsApi.md
+++ b/docs/docs/MaintenanceWindowsApi.md
@@ -29,7 +29,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -107,7 +107,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -187,7 +187,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -265,7 +265,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -343,7 +343,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/MongoDBCloudUsersApi.md b/docs/docs/MongoDBCloudUsersApi.md
index 625e8ba8..9242ee61 100644
--- a/docs/docs/MongoDBCloudUsersApi.md
+++ b/docs/docs/MongoDBCloudUsersApi.md
@@ -43,7 +43,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -128,7 +128,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -210,7 +210,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -295,7 +295,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -380,7 +380,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -462,7 +462,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -538,7 +538,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -621,7 +621,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -704,7 +704,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -784,7 +784,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -864,7 +864,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -958,7 +958,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1048,7 +1048,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1141,7 +1141,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1222,7 +1222,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1307,7 +1307,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1392,7 +1392,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1477,7 +1477,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1558,7 +1558,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/MonitoringAndLogsApi.md b/docs/docs/MonitoringAndLogsApi.md
index 32129d98..1ab937d9 100644
--- a/docs/docs/MonitoringAndLogsApi.md
+++ b/docs/docs/MonitoringAndLogsApi.md
@@ -38,7 +38,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -128,7 +128,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -214,7 +214,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -310,7 +310,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -393,7 +393,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -495,7 +495,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -581,7 +581,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -677,7 +677,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -770,7 +770,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -859,7 +859,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -945,7 +945,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1028,7 +1028,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1127,7 +1127,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1220,7 +1220,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/NetworkPeeringApi.md b/docs/docs/NetworkPeeringApi.md
index 685aca7e..4cb0e87a 100644
--- a/docs/docs/NetworkPeeringApi.md
+++ b/docs/docs/NetworkPeeringApi.md
@@ -37,7 +37,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -119,7 +119,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -201,7 +201,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -282,7 +282,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -365,7 +365,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -447,7 +447,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -530,7 +530,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -613,7 +613,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -699,7 +699,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -787,7 +787,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -875,7 +875,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -960,7 +960,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1045,7 +1045,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/OnlineArchiveApi.md b/docs/docs/OnlineArchiveApi.md
index f83d6baf..77819608 100644
--- a/docs/docs/OnlineArchiveApi.md
+++ b/docs/docs/OnlineArchiveApi.md
@@ -30,7 +30,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -115,7 +115,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -199,7 +199,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -288,7 +288,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -374,7 +374,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -463,7 +463,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/OrganizationSettings.md b/docs/docs/OrganizationSettings.md
index 37203248..cdef4579 100644
--- a/docs/docs/OrganizationSettings.md
+++ b/docs/docs/OrganizationSettings.md
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
**MultiFactorAuthRequired** | Pointer to **bool** | Flag that indicates whether to require users to set up Multi-Factor Authentication (MFA) before accessing the specified organization. To learn more, see: https://www.mongodb.com/docs/atlas/security-multi-factor-authentication/. | [optional]
**RestrictEmployeeAccess** | Pointer to **bool** | Flag that indicates whether to block MongoDB Support from accessing Atlas infrastructure and cluster logs for any deployment in the specified organization without explicit permission. Once this setting is turned on, you can grant MongoDB Support a 24-hour bypass access to the Atlas deployment to resolve support issues. To learn more, see: https://www.mongodb.com/docs/atlas/security-restrict-support-access/. | [optional]
**SecurityContact** | Pointer to **string** | String that specifies a single email address for the specified organization to receive security-related notifications. Specifying a security contact does not grant them authorization or access to Atlas for security decisions or approvals. An empty string is valid and clears the existing security contact (if any). | [optional]
-**StreamsCrossGroupEnabled** | Pointer to **bool** | Flag that indicates whether a group's Atlas Stream Processing instances in this organization can create connections to other group's clusters in the same organization. | [optional]
+**StreamsCrossGroupEnabled** | Pointer to **bool** | Flag that indicates whether a group's Atlas Stream Processing workspaces in this organization can create connections to other group's clusters in the same organization. | [optional]
## Methods
diff --git a/docs/docs/OrganizationsApi.md b/docs/docs/OrganizationsApi.md
index 4d253b57..1e58ba49 100644
--- a/docs/docs/OrganizationsApi.md
+++ b/docs/docs/OrganizationsApi.md
@@ -39,7 +39,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -115,7 +115,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -197,7 +197,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -275,7 +275,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -356,7 +356,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -436,7 +436,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -524,7 +524,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -607,7 +607,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -687,7 +687,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -769,7 +769,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -851,7 +851,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -933,7 +933,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1018,7 +1018,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1100,7 +1100,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1182,7 +1182,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/PerformanceAdvisorApi.md b/docs/docs/PerformanceAdvisorApi.md
index 24130a24..1ff10478 100644
--- a/docs/docs/PerformanceAdvisorApi.md
+++ b/docs/docs/PerformanceAdvisorApi.md
@@ -35,7 +35,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -113,7 +113,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -191,7 +191,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -271,7 +271,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -354,7 +354,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -445,7 +445,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -528,7 +528,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -615,7 +615,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -698,7 +698,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -795,7 +795,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -894,7 +894,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/PrivateEndpointServicesApi.md b/docs/docs/PrivateEndpointServicesApi.md
index 9099c254..44234137 100644
--- a/docs/docs/PrivateEndpointServicesApi.md
+++ b/docs/docs/PrivateEndpointServicesApi.md
@@ -33,7 +33,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -121,7 +121,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -203,7 +203,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -290,7 +290,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -374,7 +374,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -463,7 +463,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -549,7 +549,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -629,7 +629,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -712,7 +712,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/ProgrammaticAPIKeysApi.md b/docs/docs/ProgrammaticAPIKeysApi.md
index 47e17050..440a3bc1 100644
--- a/docs/docs/ProgrammaticAPIKeysApi.md
+++ b/docs/docs/ProgrammaticAPIKeysApi.md
@@ -38,7 +38,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -121,7 +121,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -203,7 +203,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -294,7 +294,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -376,7 +376,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -460,7 +460,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -541,7 +541,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -627,7 +627,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -710,7 +710,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -796,7 +796,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -885,7 +885,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -971,7 +971,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1052,7 +1052,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1143,7 +1143,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/ProjectIPAccessListApi.md b/docs/docs/ProjectIPAccessListApi.md
index a0e6453e..be86e404 100644
--- a/docs/docs/ProjectIPAccessListApi.md
+++ b/docs/docs/ProjectIPAccessListApi.md
@@ -29,7 +29,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -117,7 +117,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -198,7 +198,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -281,7 +281,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -364,7 +364,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/ProjectsApi.md b/docs/docs/ProjectsApi.md
index 5d8f019c..02d5e897 100644
--- a/docs/docs/ProjectsApi.md
+++ b/docs/docs/ProjectsApi.md
@@ -47,7 +47,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -129,7 +129,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -207,7 +207,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -289,7 +289,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -367,7 +367,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -448,7 +448,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -529,7 +529,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -609,7 +609,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -689,7 +689,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -772,7 +772,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -852,7 +852,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -935,7 +935,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1015,7 +1015,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1105,7 +1105,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1187,7 +1187,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1267,7 +1267,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1347,7 +1347,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1429,7 +1429,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1514,7 +1514,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1596,7 +1596,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1678,7 +1678,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1760,7 +1760,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1845,7 +1845,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/PushBasedLogExportApi.md b/docs/docs/PushBasedLogExportApi.md
index 6205b492..ae6763c9 100644
--- a/docs/docs/PushBasedLogExportApi.md
+++ b/docs/docs/PushBasedLogExportApi.md
@@ -28,7 +28,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -108,7 +108,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -186,7 +186,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -266,7 +266,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/QueryShapeInsightsApi.md b/docs/docs/QueryShapeInsightsApi.md
index 5c5c84a7..79ce5fb3 100644
--- a/docs/docs/QueryShapeInsightsApi.md
+++ b/docs/docs/QueryShapeInsightsApi.md
@@ -26,7 +26,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -118,7 +118,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/ResourcePoliciesApi.md b/docs/docs/ResourcePoliciesApi.md
index 8464067d..8380485a 100644
--- a/docs/docs/ResourcePoliciesApi.md
+++ b/docs/docs/ResourcePoliciesApi.md
@@ -31,7 +31,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -120,7 +120,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -201,7 +201,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -281,7 +281,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -364,7 +364,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -444,7 +444,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -529,7 +529,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/RollingIndexApi.md b/docs/docs/RollingIndexApi.md
index 23aafccc..6558c6f8 100644
--- a/docs/docs/RollingIndexApi.md
+++ b/docs/docs/RollingIndexApi.md
@@ -25,7 +25,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/RootApi.md b/docs/docs/RootApi.md
index cc41db2c..53cd0218 100644
--- a/docs/docs/RootApi.md
+++ b/docs/docs/RootApi.md
@@ -26,7 +26,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -97,7 +97,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/ServerlessInstancesApi.md b/docs/docs/ServerlessInstancesApi.md
index 695128cd..f48bbaf2 100644
--- a/docs/docs/ServerlessInstancesApi.md
+++ b/docs/docs/ServerlessInstancesApi.md
@@ -29,7 +29,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -111,7 +111,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -194,7 +194,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -277,7 +277,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -363,7 +363,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/ServerlessPrivateEndpointsApi.md b/docs/docs/ServerlessPrivateEndpointsApi.md
index 2622b1da..3eece7fe 100644
--- a/docs/docs/ServerlessPrivateEndpointsApi.md
+++ b/docs/docs/ServerlessPrivateEndpointsApi.md
@@ -29,7 +29,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -114,7 +114,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -198,7 +198,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -284,7 +284,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -367,7 +367,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/ServiceAccountsApi.md b/docs/docs/ServiceAccountsApi.md
index 06399f3b..dc12a21d 100644
--- a/docs/docs/ServiceAccountsApi.md
+++ b/docs/docs/ServiceAccountsApi.md
@@ -46,7 +46,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -137,7 +137,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -222,7 +222,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -304,7 +304,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -395,7 +395,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -480,7 +480,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -562,7 +562,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -646,7 +646,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -730,7 +730,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -811,7 +811,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -895,7 +895,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -979,7 +979,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1060,7 +1060,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1143,7 +1143,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1226,7 +1226,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1313,7 +1313,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1398,7 +1398,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1487,7 +1487,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1571,7 +1571,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1660,7 +1660,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1744,7 +1744,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1829,7 +1829,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/SharedTierRestoreJobsApi.md b/docs/docs/SharedTierRestoreJobsApi.md
index 8a7b33ba..d0bbff13 100644
--- a/docs/docs/SharedTierRestoreJobsApi.md
+++ b/docs/docs/SharedTierRestoreJobsApi.md
@@ -27,7 +27,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -112,7 +112,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -198,7 +198,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/SharedTierSnapshotsApi.md b/docs/docs/SharedTierSnapshotsApi.md
index 92599826..37a67205 100644
--- a/docs/docs/SharedTierSnapshotsApi.md
+++ b/docs/docs/SharedTierSnapshotsApi.md
@@ -27,7 +27,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -112,7 +112,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -198,7 +198,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/StreamConfig.md b/docs/docs/StreamConfig.md
index 68545766..3675c784 100644
--- a/docs/docs/StreamConfig.md
+++ b/docs/docs/StreamConfig.md
@@ -5,8 +5,8 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Links** | Pointer to [**[]Link**](Link.md) | List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. | [optional] [readonly]
-**MaxTierSize** | Pointer to **string** | Max tier size for the Stream Instance. Configures Memory / VCPU allowances. This field is not supported yet. | [optional]
-**Tier** | Pointer to **string** | Selected tier for the Stream Instance. Configures Memory / VCPU allowances. | [optional]
+**MaxTierSize** | Pointer to **string** | Max tier size for the Stream Workspace. Configures Memory / VCPU allowances. | [optional]
+**Tier** | Pointer to **string** | Selected tier for the Stream Workspace. Configures Memory / VCPU allowances. | [optional]
## Methods
diff --git a/docs/docs/StreamsApi.md b/docs/docs/StreamsApi.md
index af173cd3..3026ff82 100644
--- a/docs/docs/StreamsApi.md
+++ b/docs/docs/StreamsApi.md
@@ -8,23 +8,23 @@ Method | HTTP request | Description
[**CreatePrivateLinkConnection**](StreamsApi.md#CreatePrivateLinkConnection) | **Post** /api/atlas/v2/groups/{groupId}/streams/privateLinkConnections | Create One Private Link Connection
[**CreateStreamConnection**](StreamsApi.md#CreateStreamConnection) | **Post** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections | Create One Stream Connection
[**CreateStreamProcessor**](StreamsApi.md#CreateStreamProcessor) | **Post** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor | Create One Stream Processor
-[**CreateStreamWorkspace**](StreamsApi.md#CreateStreamWorkspace) | **Post** /api/atlas/v2/groups/{groupId}/streams | Create One Stream Instance
+[**CreateStreamWorkspace**](StreamsApi.md#CreateStreamWorkspace) | **Post** /api/atlas/v2/groups/{groupId}/streams | Create One Stream Workspace
[**DeletePrivateLinkConnection**](StreamsApi.md#DeletePrivateLinkConnection) | **Delete** /api/atlas/v2/groups/{groupId}/streams/privateLinkConnections/{connectionId} | Delete One Private Link Connection
[**DeleteStreamConnection**](StreamsApi.md#DeleteStreamConnection) | **Delete** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName} | Delete One Stream Connection
[**DeleteStreamProcessor**](StreamsApi.md#DeleteStreamProcessor) | **Delete** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName} | Delete One Stream Processor
-[**DeleteStreamWorkspace**](StreamsApi.md#DeleteStreamWorkspace) | **Delete** /api/atlas/v2/groups/{groupId}/streams/{tenantName} | Delete One Stream Instance
+[**DeleteStreamWorkspace**](StreamsApi.md#DeleteStreamWorkspace) | **Delete** /api/atlas/v2/groups/{groupId}/streams/{tenantName} | Delete One Stream Workspace
[**DeleteVpcPeeringConnection**](StreamsApi.md#DeleteVpcPeeringConnection) | **Delete** /api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id} | Delete One VPC Peering Connection
-[**DownloadAuditLogs**](StreamsApi.md#DownloadAuditLogs) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs | Download Audit Logs for One Atlas Stream Processing Instance
+[**DownloadAuditLogs**](StreamsApi.md#DownloadAuditLogs) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs | Download Audit Logs for One Atlas Stream Processing Workspace
[**GetAccountDetails**](StreamsApi.md#GetAccountDetails) | **Get** /api/atlas/v2/groups/{groupId}/streams/accountDetails | Return Account ID and VPC ID for One Project and Region
[**GetPrivateLinkConnection**](StreamsApi.md#GetPrivateLinkConnection) | **Get** /api/atlas/v2/groups/{groupId}/streams/privateLinkConnections/{connectionId} | Return One Private Link Connection
[**GetStreamConnection**](StreamsApi.md#GetStreamConnection) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName} | Return One Stream Connection
[**GetStreamProcessor**](StreamsApi.md#GetStreamProcessor) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName} | Return One Stream Processor
-[**GetStreamProcessors**](StreamsApi.md#GetStreamProcessors) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors | Return All Stream Processors in One Stream Instance
-[**GetStreamWorkspace**](StreamsApi.md#GetStreamWorkspace) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName} | Return One Stream Instance
+[**GetStreamProcessors**](StreamsApi.md#GetStreamProcessors) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors | Return All Stream Processors in One Stream Workspace
+[**GetStreamWorkspace**](StreamsApi.md#GetStreamWorkspace) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName} | Return One Stream Workspace
[**ListActivePeeringConnections**](StreamsApi.md#ListActivePeeringConnections) | **Get** /api/atlas/v2/groups/{groupId}/streams/activeVpcPeeringConnections | Return All Active Incoming VPC Peering Connections
[**ListPrivateLinkConnections**](StreamsApi.md#ListPrivateLinkConnections) | **Get** /api/atlas/v2/groups/{groupId}/streams/privateLinkConnections | Return All Private Link Connections
-[**ListStreamConnections**](StreamsApi.md#ListStreamConnections) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections | Return All Connections of the Stream Instances
-[**ListStreamWorkspaces**](StreamsApi.md#ListStreamWorkspaces) | **Get** /api/atlas/v2/groups/{groupId}/streams | Return All Stream Instances in One Project
+[**ListStreamConnections**](StreamsApi.md#ListStreamConnections) | **Get** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections | Return All Connections of the Stream Workspaces
+[**ListStreamWorkspaces**](StreamsApi.md#ListStreamWorkspaces) | **Get** /api/atlas/v2/groups/{groupId}/streams | Return All Stream Workspaces in One Project
[**ListVpcPeeringConnections**](StreamsApi.md#ListVpcPeeringConnections) | **Get** /api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections | Return All VPC Peering Connections
[**RejectVpcPeeringConnection**](StreamsApi.md#RejectVpcPeeringConnection) | **Post** /api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}:reject | Reject One Incoming VPC Peering Connection
[**StartStreamProcessor**](StreamsApi.md#StartStreamProcessor) | **Post** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start | Start One Stream Processor
@@ -32,8 +32,8 @@ Method | HTTP request | Description
[**StopStreamProcessor**](StreamsApi.md#StopStreamProcessor) | **Post** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop | Stop One Stream Processor
[**UpdateStreamConnection**](StreamsApi.md#UpdateStreamConnection) | **Patch** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName} | Update One Stream Connection
[**UpdateStreamProcessor**](StreamsApi.md#UpdateStreamProcessor) | **Patch** /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName} | Update One Stream Processor
-[**UpdateStreamWorkspace**](StreamsApi.md#UpdateStreamWorkspace) | **Patch** /api/atlas/v2/groups/{groupId}/streams/{tenantName} | Update One Stream Instance
-[**WithStreamSampleConnections**](StreamsApi.md#WithStreamSampleConnections) | **Post** /api/atlas/v2/groups/{groupId}/streams:withSampleConnections | Create One Stream Instance with Sample Connections
+[**UpdateStreamWorkspace**](StreamsApi.md#UpdateStreamWorkspace) | **Patch** /api/atlas/v2/groups/{groupId}/streams/{tenantName} | Update One Stream Workspace
+[**WithStreamSampleConnections**](StreamsApi.md#WithStreamSampleConnections) | **Post** /api/atlas/v2/groups/{groupId}/streams:withSampleConnections | Create One Stream Workspace with Sample Connections
@@ -54,7 +54,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -137,7 +137,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -219,7 +219,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -257,7 +257,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
**groupId** | **string** | 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. |
-**tenantName** | **string** | Human-readable label that identifies the stream instance. |
+**tenantName** | **string** | Label that identifies the stream workspace. |
### Other Parameters
@@ -268,7 +268,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
- **streamsConnection** | [**StreamsConnection**](StreamsConnection.md) | Details to create one connection for a streams instance in the specified project. |
+ **streamsConnection** | [**StreamsConnection**](StreamsConnection.md) | Details to create one connection for a streams workspace in the specified project. |
### Return type
@@ -304,7 +304,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -342,7 +342,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
**groupId** | **string** | 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. |
-**tenantName** | **string** | Human-readable label that identifies the stream instance. |
+**tenantName** | **string** | Label that identifies the stream workspace. |
### Other Parameters
@@ -376,7 +376,7 @@ Name | Type | Description | Notes
> StreamsTenant CreateStreamWorkspace(ctx, groupId, streamsTenant StreamsTenant).Execute()
-Create One Stream Instance
+Create One Stream Workspace
### Example
@@ -389,7 +389,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -435,7 +435,7 @@ Other parameters are passed through a pointer to a apiCreateStreamWorkspaceReque
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
- **streamsTenant** | [**StreamsTenant**](StreamsTenant.md) | Details to create one streams instance in the specified project. |
+ **streamsTenant** | [**StreamsTenant**](StreamsTenant.md) | Details to create one streams workspace in the specified project. |
### Return type
@@ -471,7 +471,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -552,7 +552,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -588,8 +588,8 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
**groupId** | **string** | 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. |
-**tenantName** | **string** | Human-readable label that identifies the stream instance. |
-**connectionName** | **string** | Human-readable label that identifies the stream connection. |
+**tenantName** | **string** | Label that identifies the stream workspace. |
+**connectionName** | **string** | Label that identifies the stream connection. |
### Other Parameters
@@ -636,7 +636,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -672,8 +672,8 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
**groupId** | **string** | 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. |
-**tenantName** | **string** | Human-readable label that identifies the stream instance. |
-**processorName** | **string** | Human-readable label that identifies the stream processor. |
+**tenantName** | **string** | Label that identifies the stream workspace. |
+**processorName** | **string** | Label that identifies the stream processor. |
### Other Parameters
@@ -707,7 +707,7 @@ Name | Type | Description | Notes
> DeleteStreamWorkspace(ctx, groupId, tenantName).Execute()
-Delete One Stream Instance
+Delete One Stream Workspace
### Example
@@ -720,7 +720,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -755,7 +755,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
**groupId** | **string** | 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. |
-**tenantName** | **string** | Human-readable label that identifies the stream instance to delete. |
+**tenantName** | **string** | Label that identifies the stream workspace to delete. |
### Other Parameters
@@ -801,7 +801,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -869,7 +869,7 @@ Name | Type | Description | Notes
> io.ReadCloser DownloadAuditLogs(ctx, groupId, tenantName).EndDate(endDate).StartDate(startDate).Execute()
-Download Audit Logs for One Atlas Stream Processing Instance
+Download Audit Logs for One Atlas Stream Processing Workspace
### Example
@@ -882,7 +882,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -921,7 +921,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
**groupId** | **string** | 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. |
-**tenantName** | **string** | Human-readable label that identifies the stream instance. |
+**tenantName** | **string** | Label that identifies the stream workspace. |
### Other Parameters
@@ -969,7 +969,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1053,7 +1053,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1136,7 +1136,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1174,8 +1174,8 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
**groupId** | **string** | 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. |
-**tenantName** | **string** | Human-readable label that identifies the stream instance to return. |
-**connectionName** | **string** | Human-readable label that identifies the stream connection to return. |
+**tenantName** | **string** | Label that identifies the stream workspace to return. |
+**connectionName** | **string** | Label that identifies the stream connection to return. |
### Other Parameters
@@ -1222,7 +1222,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1260,8 +1260,8 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
**groupId** | **string** | 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. |
-**tenantName** | **string** | Human-readable label that identifies the stream instance. |
-**processorName** | **string** | Human-readable label that identifies the stream processor. |
+**tenantName** | **string** | Label that identifies the stream workspace. |
+**processorName** | **string** | Label that identifies the stream processor. |
### Other Parameters
@@ -1295,7 +1295,7 @@ Name | Type | Description | Notes
> PaginatedApiStreamsStreamProcessorWithStats GetStreamProcessors(ctx, groupId, tenantName).ItemsPerPage(itemsPerPage).PageNum(pageNum).IncludeCount(includeCount).Execute()
-Return All Stream Processors in One Stream Instance
+Return All Stream Processors in One Stream Workspace
### Example
@@ -1308,7 +1308,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1348,7 +1348,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
**groupId** | **string** | 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. |
-**tenantName** | **string** | Human-readable label that identifies the stream instance. |
+**tenantName** | **string** | Label that identifies the stream workspace. |
### Other Parameters
@@ -1384,7 +1384,7 @@ Name | Type | Description | Notes
> StreamsTenant GetStreamWorkspace(ctx, groupId, tenantName).IncludeConnections(includeConnections).Execute()
-Return One Stream Instance
+Return One Stream Workspace
### Example
@@ -1397,7 +1397,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1435,7 +1435,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
**groupId** | **string** | 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. |
-**tenantName** | **string** | Human-readable label that identifies the stream instance to return. |
+**tenantName** | **string** | Label that identifies the stream workspace to return. |
### Other Parameters
@@ -1446,7 +1446,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
- **includeConnections** | **bool** | Flag to indicate whether connections information should be included in the stream instance. |
+ **includeConnections** | **bool** | Flag to indicate whether connections information should be included in the stream workspace. |
### Return type
@@ -1482,7 +1482,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1564,7 +1564,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1635,7 +1635,7 @@ Name | Type | Description | Notes
> PaginatedApiStreamsConnection ListStreamConnections(ctx, groupId, tenantName).ItemsPerPage(itemsPerPage).PageNum(pageNum).Execute()
-Return All Connections of the Stream Instances
+Return All Connections of the Stream Workspaces
### Example
@@ -1648,7 +1648,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1687,7 +1687,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
**groupId** | **string** | 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. |
-**tenantName** | **string** | Human-readable label that identifies the stream instance. |
+**tenantName** | **string** | Label that identifies the stream workspace. |
### Other Parameters
@@ -1722,7 +1722,7 @@ Name | Type | Description | Notes
> PaginatedApiStreamsTenant ListStreamWorkspaces(ctx, groupId).ItemsPerPage(itemsPerPage).PageNum(pageNum).Execute()
-Return All Stream Instances in One Project
+Return All Stream Workspaces in One Project
### Example
@@ -1735,7 +1735,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1819,7 +1819,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1903,7 +1903,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1984,7 +1984,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -2020,8 +2020,8 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
**groupId** | **string** | 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. |
-**tenantName** | **string** | Human-readable label that identifies the stream instance. |
-**processorName** | **string** | Human-readable label that identifies the stream processor. |
+**tenantName** | **string** | Label that identifies the stream workspace. |
+**processorName** | **string** | Label that identifies the stream processor. |
### Other Parameters
@@ -2068,7 +2068,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -2105,8 +2105,8 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
**groupId** | **string** | 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. |
-**tenantName** | **string** | Human-readable label that identifies the stream instance. |
-**processorName** | **string** | Human-readable label that identifies the stream processor. |
+**tenantName** | **string** | Label that identifies the stream workspace. |
+**processorName** | **string** | Label that identifies the stream processor. |
### Other Parameters
@@ -2154,7 +2154,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -2190,8 +2190,8 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
**groupId** | **string** | 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. |
-**tenantName** | **string** | Human-readable label that identifies the stream instance. |
-**processorName** | **string** | Human-readable label that identifies the stream processor. |
+**tenantName** | **string** | Label that identifies the stream workspace. |
+**processorName** | **string** | Label that identifies the stream processor. |
### Other Parameters
@@ -2238,7 +2238,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -2277,8 +2277,8 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
**groupId** | **string** | 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. |
-**tenantName** | **string** | Human-readable label that identifies the stream instance. |
-**connectionName** | **string** | Human-readable label that identifies the stream connection. |
+**tenantName** | **string** | Label that identifies the stream workspace. |
+**connectionName** | **string** | Label that identifies the stream connection. |
### Other Parameters
@@ -2290,7 +2290,7 @@ Name | Type | Description | Notes
- **streamsConnection** | [**StreamsConnection**](StreamsConnection.md) | Details to update one connection for a streams instance in the specified project. |
+ **streamsConnection** | [**StreamsConnection**](StreamsConnection.md) | Details to update one connection for a streams workspace in the specified project. |
### Return type
@@ -2326,7 +2326,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -2365,8 +2365,8 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
**groupId** | **string** | 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. |
-**tenantName** | **string** | Human-readable label that identifies the stream instance. |
-**processorName** | **string** | Human-readable label that identifies the stream processor. |
+**tenantName** | **string** | Label that identifies the stream workspace. |
+**processorName** | **string** | Label that identifies the stream processor. |
### Other Parameters
@@ -2401,7 +2401,7 @@ Name | Type | Description | Notes
> StreamsTenant UpdateStreamWorkspace(ctx, groupId, tenantName, streamsDataProcessRegion StreamsDataProcessRegion).Execute()
-Update One Stream Instance
+Update One Stream Workspace
### Example
@@ -2414,7 +2414,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -2452,7 +2452,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
**groupId** | **string** | 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. |
-**tenantName** | **string** | Human-readable label that identifies the stream instance to update. |
+**tenantName** | **string** | Label that identifies the stream workspace to update. |
### Other Parameters
@@ -2463,7 +2463,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
- **streamsDataProcessRegion** | [**StreamsDataProcessRegion**](StreamsDataProcessRegion.md) | Details of the new data process region to update in the streams instance. |
+ **streamsDataProcessRegion** | [**StreamsDataProcessRegion**](StreamsDataProcessRegion.md) | Details of the new data process region to update in the streams workspace. |
### Return type
@@ -2486,7 +2486,7 @@ Name | Type | Description | Notes
> StreamsTenant WithStreamSampleConnections(ctx, groupId, body any).Execute()
-Create One Stream Instance with Sample Connections
+Create One Stream Workspace with Sample Connections
### Example
@@ -2499,7 +2499,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -2545,7 +2545,7 @@ Other parameters are passed through a pointer to a apiWithStreamSampleConnection
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
- **body** | **any** | Details to create one streams instance in the specified project. |
+ **body** | **any** | Details to create one streams workspace in the specified project. |
### Return type
diff --git a/docs/docs/StreamsPrivateLinkConnection.md b/docs/docs/StreamsPrivateLinkConnection.md
index 56e8e5fb..446af254 100644
--- a/docs/docs/StreamsPrivateLinkConnection.md
+++ b/docs/docs/StreamsPrivateLinkConnection.md
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
**DnsDomain** | Pointer to **string** | The domain hostname. Required for the following provider and vendor combinations: - AWS provider with CONFLUENT vendor. - AZURE provider with EVENTHUB or CONFLUENT vendor. | [optional]
**DnsSubDomain** | Pointer to **[]string** | Sub-Domain name of Confluent cluster. These are typically your availability zones. Required for AWS Provider and CONFLUENT vendor, if your AWS CONFLUENT cluster doesn't use subdomains, you must set this to the empty array []. | [optional]
**ErrorMessage** | Pointer to **string** | Error message if the state is FAILED. | [optional] [readonly]
+**GcpConnectionIds** | Pointer to **[]string** | List of GCP Private Service Connect connection IDs. | [optional]
**GcpServiceAttachmentUris** | Pointer to **[]string** | Service Attachment URIs of each availability zone for the GCP Confluent cluster. | [optional]
**InterfaceEndpointId** | Pointer to **string** | Interface endpoint ID that is created from the service endpoint ID provided. | [optional] [readonly]
**InterfaceEndpointName** | Pointer to **string** | Interface endpoint name that is created from the service endpoint ID provided. | [optional] [readonly]
@@ -184,6 +185,30 @@ SetErrorMessage sets ErrorMessage field to given value.
`func (o *StreamsPrivateLinkConnection) HasErrorMessage() bool`
HasErrorMessage returns a boolean if a field has been set.
+### GetGcpConnectionIds
+
+`func (o *StreamsPrivateLinkConnection) GetGcpConnectionIds() []string`
+
+GetGcpConnectionIds returns the GcpConnectionIds field if non-nil, zero value otherwise.
+
+### GetGcpConnectionIdsOk
+
+`func (o *StreamsPrivateLinkConnection) GetGcpConnectionIdsOk() (*[]string, bool)`
+
+GetGcpConnectionIdsOk returns a tuple with the GcpConnectionIds field if it's non-nil, zero value otherwise
+and a boolean to check if the value has been set.
+
+### SetGcpConnectionIds
+
+`func (o *StreamsPrivateLinkConnection) SetGcpConnectionIds(v []string)`
+
+SetGcpConnectionIds sets GcpConnectionIds field to given value.
+
+### HasGcpConnectionIds
+
+`func (o *StreamsPrivateLinkConnection) HasGcpConnectionIds() bool`
+
+HasGcpConnectionIds returns a boolean if a field has been set.
### GetGcpServiceAttachmentUris
`func (o *StreamsPrivateLinkConnection) GetGcpServiceAttachmentUris() []string`
diff --git a/docs/docs/StreamsTenant.md b/docs/docs/StreamsTenant.md
index 65e5e5d7..e096777a 100644
--- a/docs/docs/StreamsTenant.md
+++ b/docs/docs/StreamsTenant.md
@@ -5,12 +5,12 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | Unique 24-hexadecimal character string that identifies the project. | [optional] [readonly]
-**Connections** | Pointer to [**[]StreamsConnection**](StreamsConnection.md) | List of connections configured in the stream instance. | [optional] [readonly]
+**Connections** | Pointer to [**[]StreamsConnection**](StreamsConnection.md) | List of connections configured in the stream workspace. | [optional] [readonly]
**DataProcessRegion** | Pointer to [**StreamsDataProcessRegion**](StreamsDataProcessRegion.md) | | [optional]
**GroupId** | Pointer to **string** | Unique 24-hexadecimal character string that identifies the project. | [optional] [readonly]
-**Hostnames** | Pointer to **[]string** | List that contains the hostnames assigned to the stream instance. | [optional] [readonly]
+**Hostnames** | Pointer to **[]string** | List that contains the hostnames assigned to the stream workspace. | [optional] [readonly]
**Links** | Pointer to [**[]Link**](Link.md) | List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. | [optional] [readonly]
-**Name** | Pointer to **string** | Human-readable label that identifies the stream instance. | [optional]
+**Name** | Pointer to **string** | Label that identifies the stream workspace. | [optional]
**SampleConnections** | Pointer to [**StreamsSampleConnections**](StreamsSampleConnections.md) | | [optional]
**StreamConfig** | Pointer to [**StreamConfig**](StreamConfig.md) | | [optional]
diff --git a/docs/docs/TeamsApi.md b/docs/docs/TeamsApi.md
index 0530741a..c24ce226 100644
--- a/docs/docs/TeamsApi.md
+++ b/docs/docs/TeamsApi.md
@@ -37,7 +37,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -119,7 +119,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -204,7 +204,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -286,7 +286,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -367,7 +367,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -450,7 +450,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -533,7 +533,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -616,7 +616,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -702,7 +702,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -788,7 +788,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -869,7 +869,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -953,7 +953,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -1038,7 +1038,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/ThirdPartyIntegrationsApi.md b/docs/docs/ThirdPartyIntegrationsApi.md
index 710f68ec..1b0a3de7 100644
--- a/docs/docs/ThirdPartyIntegrationsApi.md
+++ b/docs/docs/ThirdPartyIntegrationsApi.md
@@ -29,7 +29,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -120,7 +120,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -201,7 +201,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -284,7 +284,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -370,7 +370,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/docs/docs/X509AuthenticationApi.md b/docs/docs/X509AuthenticationApi.md
index 4352942b..7c9d398c 100644
--- a/docs/docs/X509AuthenticationApi.md
+++ b/docs/docs/X509AuthenticationApi.md
@@ -27,7 +27,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -112,7 +112,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
@@ -192,7 +192,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/examples/aws_cluster/aws.go b/examples/aws_cluster/aws.go
index 81fa3155..80092950 100644
--- a/examples/aws_cluster/aws.go
+++ b/examples/aws_cluster/aws.go
@@ -10,8 +10,8 @@ import (
"context"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
- "go.mongodb.org/atlas-sdk/v20250312008/examples"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/examples"
)
/*
diff --git a/examples/basic/basic.go b/examples/basic/basic.go
index cb4de703..3c15a1fc 100644
--- a/examples/basic/basic.go
+++ b/examples/basic/basic.go
@@ -7,8 +7,8 @@ import (
"context"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
- "go.mongodb.org/atlas-sdk/v20250312008/examples"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/examples"
)
/*
diff --git a/examples/db_users/db_users.go b/examples/db_users/db_users.go
index 819bd0eb..2d3eef4a 100644
--- a/examples/db_users/db_users.go
+++ b/examples/db_users/db_users.go
@@ -6,8 +6,8 @@ import (
"context"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
- "go.mongodb.org/atlas-sdk/v20250312008/examples"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/examples"
)
const (
diff --git a/examples/download/downloadLogs.go b/examples/download/downloadLogs.go
index a55d741a..84f7f53a 100644
--- a/examples/download/downloadLogs.go
+++ b/examples/download/downloadLogs.go
@@ -7,8 +7,8 @@ import (
"context"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
- "go.mongodb.org/atlas-sdk/v20250312008/examples"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/examples"
)
/*
diff --git a/examples/errors.go b/examples/errors.go
index 80224d2c..f63d8636 100644
--- a/examples/errors.go
+++ b/examples/errors.go
@@ -5,7 +5,7 @@ import (
"log"
"net/http"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func HandleErr(err error, resp *http.Response) {
diff --git a/examples/go.mod b/examples/go.mod
index 2294a899..f32e5cec 100644
--- a/examples/go.mod
+++ b/examples/go.mod
@@ -1,13 +1,13 @@
-module go.mongodb.org/atlas-sdk/v20250312008/examples
+module go.mongodb.org/atlas-sdk/v20250312009/examples
go 1.24.0
-replace go.mongodb.org/atlas-sdk/v20250312008 => ../
+replace go.mongodb.org/atlas-sdk/v20250312009 => ../
require (
github.com/hashicorp/go-retryablehttp v0.7.7
github.com/mongodb-forks/digest v1.1.0
- go.mongodb.org/atlas-sdk/v20250312008 v20250312008.1.0
+ go.mongodb.org/atlas-sdk/v20250312009 v20250312009.1.0
)
require (
diff --git a/examples/invoice/invoice.go b/examples/invoice/invoice.go
index ce63974e..70822036 100644
--- a/examples/invoice/invoice.go
+++ b/examples/invoice/invoice.go
@@ -7,8 +7,8 @@ import (
"context"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
- "go.mongodb.org/atlas-sdk/v20250312008/examples"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/examples"
)
func main() {
diff --git a/examples/mock/cluster_test.go b/examples/mock/cluster_test.go
index 82551ab2..048dab54 100644
--- a/examples/mock/cluster_test.go
+++ b/examples/mock/cluster_test.go
@@ -7,8 +7,8 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
- "go.mongodb.org/atlas-sdk/v20250312008/mockadmin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/mockadmin"
)
func myFunctionCallingListClusters(clusterAPI admin.ClustersApi) (int, error) {
diff --git a/examples/regions/regions.go b/examples/regions/regions.go
index 62334856..dc582a71 100644
--- a/examples/regions/regions.go
+++ b/examples/regions/regions.go
@@ -7,8 +7,8 @@ import (
"context"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
- "go.mongodb.org/atlas-sdk/v20250312008/examples"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/examples"
)
/*
diff --git a/examples/retry/retry.go b/examples/retry/retry.go
index 01670f40..8aa09748 100644
--- a/examples/retry/retry.go
+++ b/examples/retry/retry.go
@@ -8,7 +8,7 @@ import (
"context"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
retryablehttp "github.com/hashicorp/go-retryablehttp"
"github.com/mongodb-forks/digest"
diff --git a/examples/service_account_management/sa_management.go b/examples/service_account_management/sa_management.go
index de37ee60..a2e1350f 100644
--- a/examples/service_account_management/sa_management.go
+++ b/examples/service_account_management/sa_management.go
@@ -6,7 +6,7 @@ import (
"log"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
// Example for Service Account Management API
diff --git a/examples/service_account_token_store/cached_token.go b/examples/service_account_token_store/cached_token.go
index f6c2cc44..57598df0 100644
--- a/examples/service_account_token_store/cached_token.go
+++ b/examples/service_account_token_store/cached_token.go
@@ -4,13 +4,13 @@ import (
"context"
"encoding/json"
"fmt"
- "go.mongodb.org/atlas-sdk/v20250312008/auth"
+ "go.mongodb.org/atlas-sdk/v20250312009/auth"
"log"
"os"
"strings"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
- "go.mongodb.org/atlas-sdk/v20250312008/auth/clientcredentials"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/auth/clientcredentials"
)
// Variable provided as example.
diff --git a/go.mod b/go.mod
index f5722f74..a07fd130 100644
--- a/go.mod
+++ b/go.mod
@@ -1,4 +1,4 @@
-module go.mongodb.org/atlas-sdk/v20250312008
+module go.mongodb.org/atlas-sdk/v20250312009
go 1.24.0
diff --git a/internal/core/version.go b/internal/core/version.go
index 13235d84..8a193095 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 = "v20250312008.0.0"
+ Version = "v20250312009.0.0"
// Resource Version.
Resource = "20250312"
)
diff --git a/mockadmin/access_tracking_api.go b/mockadmin/access_tracking_api.go
index d6f4d530..3e3d2681 100644
--- a/mockadmin/access_tracking_api.go
+++ b/mockadmin/access_tracking_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/alert_configurations_api.go b/mockadmin/alert_configurations_api.go
index 846c8b83..2df801e2 100644
--- a/mockadmin/alert_configurations_api.go
+++ b/mockadmin/alert_configurations_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/alerts_api.go b/mockadmin/alerts_api.go
index 7b77403b..e4f4a4ca 100644
--- a/mockadmin/alerts_api.go
+++ b/mockadmin/alerts_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/atlas_search_api.go b/mockadmin/atlas_search_api.go
index 905ae677..b5e97837 100644
--- a/mockadmin/atlas_search_api.go
+++ b/mockadmin/atlas_search_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/auditing_api.go b/mockadmin/auditing_api.go
index 996b6fa2..19e0afc5 100644
--- a/mockadmin/auditing_api.go
+++ b/mockadmin/auditing_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/aws_clusters_dns_api.go b/mockadmin/aws_clusters_dns_api.go
index 4ddd2970..e2371667 100644
--- a/mockadmin/aws_clusters_dns_api.go
+++ b/mockadmin/aws_clusters_dns_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/cloud_backups_api.go b/mockadmin/cloud_backups_api.go
index 74ad1725..5cddf2d0 100644
--- a/mockadmin/cloud_backups_api.go
+++ b/mockadmin/cloud_backups_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/cloud_migration_service_api.go b/mockadmin/cloud_migration_service_api.go
index 6971de47..ca2d0de5 100644
--- a/mockadmin/cloud_migration_service_api.go
+++ b/mockadmin/cloud_migration_service_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/cloud_provider_access_api.go b/mockadmin/cloud_provider_access_api.go
index 1b8eddfb..665c9d2a 100644
--- a/mockadmin/cloud_provider_access_api.go
+++ b/mockadmin/cloud_provider_access_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/cluster_outage_simulation_api.go b/mockadmin/cluster_outage_simulation_api.go
index ea9efb3d..69df6c96 100644
--- a/mockadmin/cluster_outage_simulation_api.go
+++ b/mockadmin/cluster_outage_simulation_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/clusters_api.go b/mockadmin/clusters_api.go
index 2fdec93b..318dd4f2 100644
--- a/mockadmin/clusters_api.go
+++ b/mockadmin/clusters_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/collection_level_metrics_api.go b/mockadmin/collection_level_metrics_api.go
index 0cf67a4a..0d125ee4 100644
--- a/mockadmin/collection_level_metrics_api.go
+++ b/mockadmin/collection_level_metrics_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/custom_database_roles_api.go b/mockadmin/custom_database_roles_api.go
index dfe6ac48..09df943e 100644
--- a/mockadmin/custom_database_roles_api.go
+++ b/mockadmin/custom_database_roles_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/data_federation_api.go b/mockadmin/data_federation_api.go
index 24ffe539..6c3fa3fa 100644
--- a/mockadmin/data_federation_api.go
+++ b/mockadmin/data_federation_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/data_lake_pipelines_api.go b/mockadmin/data_lake_pipelines_api.go
index 1a15cf2c..a5fb51ec 100644
--- a/mockadmin/data_lake_pipelines_api.go
+++ b/mockadmin/data_lake_pipelines_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/database_users_api.go b/mockadmin/database_users_api.go
index e1120504..369740de 100644
--- a/mockadmin/database_users_api.go
+++ b/mockadmin/database_users_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/encryption_at_rest_using_customer_key_management_api.go b/mockadmin/encryption_at_rest_using_customer_key_management_api.go
index 7c5e9515..55e8a259 100644
--- a/mockadmin/encryption_at_rest_using_customer_key_management_api.go
+++ b/mockadmin/encryption_at_rest_using_customer_key_management_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/events_api.go b/mockadmin/events_api.go
index 558932d3..d2e8ec6e 100644
--- a/mockadmin/events_api.go
+++ b/mockadmin/events_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/federated_authentication_api.go b/mockadmin/federated_authentication_api.go
index 0f93b318..8fb3501d 100644
--- a/mockadmin/federated_authentication_api.go
+++ b/mockadmin/federated_authentication_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/flex_clusters_api.go b/mockadmin/flex_clusters_api.go
index 0ebc3d7a..1098dc18 100644
--- a/mockadmin/flex_clusters_api.go
+++ b/mockadmin/flex_clusters_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/flex_restore_jobs_api.go b/mockadmin/flex_restore_jobs_api.go
index 9a84724b..4addd096 100644
--- a/mockadmin/flex_restore_jobs_api.go
+++ b/mockadmin/flex_restore_jobs_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/flex_snapshots_api.go b/mockadmin/flex_snapshots_api.go
index 60e9faf7..c355c044 100644
--- a/mockadmin/flex_snapshots_api.go
+++ b/mockadmin/flex_snapshots_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/global_clusters_api.go b/mockadmin/global_clusters_api.go
index 5e5a35db..ccdf8dc1 100644
--- a/mockadmin/global_clusters_api.go
+++ b/mockadmin/global_clusters_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/invoices_api.go b/mockadmin/invoices_api.go
index 76790d17..e8220eb6 100644
--- a/mockadmin/invoices_api.go
+++ b/mockadmin/invoices_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/ldap_configuration_api.go b/mockadmin/ldap_configuration_api.go
index a9bbaa30..909ee745 100644
--- a/mockadmin/ldap_configuration_api.go
+++ b/mockadmin/ldap_configuration_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/legacy_backup_api.go b/mockadmin/legacy_backup_api.go
index fdf255fa..3e9f8585 100644
--- a/mockadmin/legacy_backup_api.go
+++ b/mockadmin/legacy_backup_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/maintenance_windows_api.go b/mockadmin/maintenance_windows_api.go
index 18e82179..12aa3bf7 100644
--- a/mockadmin/maintenance_windows_api.go
+++ b/mockadmin/maintenance_windows_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/mongo_db_cloud_users_api.go b/mockadmin/mongo_db_cloud_users_api.go
index 63b5aaa1..676cfbe1 100644
--- a/mockadmin/mongo_db_cloud_users_api.go
+++ b/mockadmin/mongo_db_cloud_users_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/monitoring_and_logs_api.go b/mockadmin/monitoring_and_logs_api.go
index 7ebfc9f2..cde9afd0 100644
--- a/mockadmin/monitoring_and_logs_api.go
+++ b/mockadmin/monitoring_and_logs_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/network_peering_api.go b/mockadmin/network_peering_api.go
index 866cdf3a..bd5cd96c 100644
--- a/mockadmin/network_peering_api.go
+++ b/mockadmin/network_peering_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/online_archive_api.go b/mockadmin/online_archive_api.go
index dce2bd30..15f2b547 100644
--- a/mockadmin/online_archive_api.go
+++ b/mockadmin/online_archive_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/organizations_api.go b/mockadmin/organizations_api.go
index cacf3442..3563453d 100644
--- a/mockadmin/organizations_api.go
+++ b/mockadmin/organizations_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/performance_advisor_api.go b/mockadmin/performance_advisor_api.go
index 19b4899b..73f96e6c 100644
--- a/mockadmin/performance_advisor_api.go
+++ b/mockadmin/performance_advisor_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/private_endpoint_services_api.go b/mockadmin/private_endpoint_services_api.go
index 4164ddaa..1f61956f 100644
--- a/mockadmin/private_endpoint_services_api.go
+++ b/mockadmin/private_endpoint_services_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/programmatic_api_keys_api.go b/mockadmin/programmatic_api_keys_api.go
index bc99a68d..744910a0 100644
--- a/mockadmin/programmatic_api_keys_api.go
+++ b/mockadmin/programmatic_api_keys_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/project_ip_access_list_api.go b/mockadmin/project_ip_access_list_api.go
index befb0caf..5479bef6 100644
--- a/mockadmin/project_ip_access_list_api.go
+++ b/mockadmin/project_ip_access_list_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/projects_api.go b/mockadmin/projects_api.go
index ef4c5f0a..a8ad11f5 100644
--- a/mockadmin/projects_api.go
+++ b/mockadmin/projects_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/push_based_log_export_api.go b/mockadmin/push_based_log_export_api.go
index 5934f336..50ba4523 100644
--- a/mockadmin/push_based_log_export_api.go
+++ b/mockadmin/push_based_log_export_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/query_shape_insights_api.go b/mockadmin/query_shape_insights_api.go
index 912dd1b4..1f070547 100644
--- a/mockadmin/query_shape_insights_api.go
+++ b/mockadmin/query_shape_insights_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/resource_policies_api.go b/mockadmin/resource_policies_api.go
index ac2c878e..f58785ed 100644
--- a/mockadmin/resource_policies_api.go
+++ b/mockadmin/resource_policies_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/rolling_index_api.go b/mockadmin/rolling_index_api.go
index 66683881..daa03dad 100644
--- a/mockadmin/rolling_index_api.go
+++ b/mockadmin/rolling_index_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/root_api.go b/mockadmin/root_api.go
index 70302b2f..342ea486 100644
--- a/mockadmin/root_api.go
+++ b/mockadmin/root_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/serverless_instances_api.go b/mockadmin/serverless_instances_api.go
index 1a7567d8..a011d87d 100644
--- a/mockadmin/serverless_instances_api.go
+++ b/mockadmin/serverless_instances_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/serverless_private_endpoints_api.go b/mockadmin/serverless_private_endpoints_api.go
index 50f0448a..995b2ed1 100644
--- a/mockadmin/serverless_private_endpoints_api.go
+++ b/mockadmin/serverless_private_endpoints_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/service_accounts_api.go b/mockadmin/service_accounts_api.go
index 99bd14e3..49e924f2 100644
--- a/mockadmin/service_accounts_api.go
+++ b/mockadmin/service_accounts_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/shared_tier_restore_jobs_api.go b/mockadmin/shared_tier_restore_jobs_api.go
index e028e20a..c54549dc 100644
--- a/mockadmin/shared_tier_restore_jobs_api.go
+++ b/mockadmin/shared_tier_restore_jobs_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/shared_tier_snapshots_api.go b/mockadmin/shared_tier_snapshots_api.go
index 7d27a04c..10dfd0c4 100644
--- a/mockadmin/shared_tier_snapshots_api.go
+++ b/mockadmin/shared_tier_snapshots_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/streams_api.go b/mockadmin/streams_api.go
index d97f78c8..0744ca88 100644
--- a/mockadmin/streams_api.go
+++ b/mockadmin/streams_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/teams_api.go b/mockadmin/teams_api.go
index 1381e50c..81648c8c 100644
--- a/mockadmin/teams_api.go
+++ b/mockadmin/teams_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/third_party_integrations_api.go b/mockadmin/third_party_integrations_api.go
index 0ddac6d6..beb8c1b9 100644
--- a/mockadmin/third_party_integrations_api.go
+++ b/mockadmin/third_party_integrations_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/mockadmin/x509_authentication_api.go b/mockadmin/x509_authentication_api.go
index 7bb09b8a..65751a3b 100644
--- a/mockadmin/x509_authentication_api.go
+++ b/mockadmin/x509_authentication_api.go
@@ -5,7 +5,7 @@ package mockadmin
import (
context "context"
- admin "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ admin "go.mongodb.org/atlas-sdk/v20250312009/admin"
http "net/http"
diff --git a/openapi/atlas-api-transformed.yaml b/openapi/atlas-api-transformed.yaml
index 9edc7db7..30adc05c 100644
--- a/openapi/atlas-api-transformed.yaml
+++ b/openapi/atlas-api-transformed.yaml
@@ -448,13 +448,6 @@ components:
$ref: "#/components/schemas/BaseCloudProviderInstanceSize"
minInstanceSize:
$ref: "#/components/schemas/BaseCloudProviderInstanceSize"
- predictiveEnabled:
- description: |-
- Flag that indicates whether predictive instance size auto-scaling is enabled.
-
- - Set to `true` to enable predictive instance size auto-scaling. MongoDB Cloud requires **replicationSpecs[n].regionConfigs[m].autoScaling.compute.enabled** to be `true` in order to enable this feature.
- - Set to `false` to disable predictive instance size auto-scaling.
- type: boolean
scaleDownEnabled:
description: Flag that indicates whether the instance size may scale down via reactive auto-scaling. MongoDB Cloud requires this parameter if **replicationSpecs[n].regionConfigs[m].autoScaling.compute.enabled** is `true`. If you enable this option, specify a value for **replicationSpecs[n].regionConfigs[m].autoScaling.compute.minInstanceSize**.
type: boolean
@@ -617,7 +610,7 @@ components:
readOnly: true
type: string
instanceName:
- description: The name of the Stream Processing Instance to which this alert applies. The resource returns this parameter for alerts of events impacting Stream Processing Instances.
+ description: The name of the Stream Processing Workspace to which this alert applies. The resource returns this parameter for alerts of events impacting Stream Processing Workspaces.
example: foobar
readOnly: true
type: string
@@ -2845,7 +2838,7 @@ components:
$ref: "#/components/schemas/DatabaseUserRole"
type: array
scopes:
- description: List that contains clusters, MongoDB Atlas Data Lakes, and MongoDB Atlas Streams Instances that this database user can access. If omitted, MongoDB Cloud grants the database user access to all the clusters, MongoDB Atlas Data Lakes, and MongoDB Atlas Streams Instances in the project.
+ description: List that contains clusters, MongoDB Atlas Data Lakes, and MongoDB Atlas Streams Workspaces that this database user can access. If omitted, MongoDB Cloud grants the database user access to all the clusters, MongoDB Atlas Data Lakes, and MongoDB Atlas Streams Workspaces in the project.
items:
$ref: "#/components/schemas/UserScope"
type: array
@@ -3599,14 +3592,6 @@ components:
- Set to `true` to enable instance size reactive auto-scaling. If enabled, you must specify a value for **providerSettings.autoScaling.compute.maxInstanceSize**.
- Set to `false` to disable instance size reactive auto-scaling.
type: boolean
- predictiveEnabled:
- default: false
- description: |-
- Flag that indicates whether predictive instance size auto-scaling is enabled.
-
- - Set to `true` to enable predictive instance size auto-scaling. MongoDB Cloud requires **autoScaling.compute.enabled** is `true` in order to enable this feature.
- - Set to `false` to disable predictive instance size auto-scaling.
- type: boolean
scaleDownEnabled:
default: false
description: Flag that indicates whether the cluster tier can scale down via reactive auto-scaling. This is required if **autoScaling.compute.enabled** is `true`. If you enable this option, specify a value for **providerSettings.autoScaling.compute.minInstanceSize**.
@@ -6783,7 +6768,7 @@ components:
example: cluster
type: string
instanceName:
- description: Name of the stream processing instance associated with the event.
+ description: Name of the stream processing workspace associated with the event.
example: foobar
readOnly: true
type: string
@@ -10861,7 +10846,7 @@ components:
description: String that specifies a single email address for the specified organization to receive security-related notifications. Specifying a security contact does not grant them authorization or access to Atlas for security decisions or approvals. An empty string is valid and clears the existing security contact (if any).
type: string
streamsCrossGroupEnabled:
- description: Flag that indicates whether a group's Atlas Stream Processing instances in this organization can create connections to other group's clusters in the same organization.
+ description: Flag that indicates whether a group's Atlas Stream Processing workspaces in this organization can create connections to other group's clusters in the same organization.
type: boolean
type: object
OutboundControlPlaneCloudProviderIPAddresses:
@@ -12680,7 +12665,7 @@ components:
readOnly: true
type: object
StreamConfig:
- description: Configuration options for an Atlas Stream Processing Instance.
+ description: Configuration options for an Atlas Stream Processing Workspace.
properties:
links:
description: List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships.
@@ -12692,12 +12677,12 @@ components:
readOnly: true
type: array
maxTierSize:
- description: Max tier size for the Stream Instance. Configures Memory / VCPU allowances. This field is not supported yet.
- title: Stream Instance Max Tier Size
+ description: Max tier size for the Stream Workspace. Configures Memory / VCPU allowances.
+ title: Stream Workspace Max Tier Size
type: string
tier:
- description: Selected tier for the Stream Instance. Configures Memory / VCPU allowances.
- title: Stream Instance Tier
+ description: Selected tier for the Stream Workspace. Configures Memory / VCPU allowances.
+ title: Stream Workspace Tier
type: string
type: object
StreamProcessorEventTypeViewAlertableWithThreshold:
@@ -12967,7 +12952,7 @@ components:
type: string
type: object
StreamsMatcher:
- description: Rules to apply when comparing a stream processing instance or stream processor against this alert configuration.
+ description: Rules to apply when comparing a stream processing workspace or stream processor against this alert configuration.
properties:
fieldName:
$ref: "#/components/schemas/StreamsMatcherField"
@@ -13081,6 +13066,13 @@ components:
description: Error message if the state is FAILED.
readOnly: true
type: string
+ gcpConnectionIds:
+ description: List of GCP Private Service Connect connection IDs.
+ items:
+ type: string
+ maxItems: 3
+ type: array
+ uniqueItems: true
gcpServiceAttachmentUris:
description: Service Attachment URIs of each availability zone for the GCP Confluent cluster.
items:
@@ -13264,7 +13256,7 @@ components:
readOnly: true
type: string
connections:
- description: List of connections configured in the stream instance.
+ description: List of connections configured in the stream workspace.
items:
$ref: "#/components/schemas/StreamsConnection"
readOnly: true
@@ -13278,9 +13270,9 @@ components:
readOnly: true
type: string
hostnames:
- description: List that contains the hostnames assigned to the stream instance.
+ description: List that contains the hostnames assigned to the stream workspace.
items:
- description: Unique hostname assigned to the stream instance.
+ description: Unique hostname assigned to the stream workspace.
readOnly: true
type: string
readOnly: true
@@ -13295,7 +13287,7 @@ components:
readOnly: true
type: array
name:
- description: Human-readable label that identifies the stream instance.
+ description: Label that identifies the stream workspace.
type: string
sampleConnections:
$ref: "#/components/schemas/StreamsSampleConnections"
@@ -16514,7 +16506,7 @@ info:
termsOfService: https://www.mongodb.com/mongodb-management-service-terms-and-conditions
title: MongoDB Atlas Administration API
version: "2.0"
- x-xgen-sha: 66be7c90474eeed9de9cf2be16ecc9dc984f082c
+ x-xgen-sha: 7e672413250f29eaf2a8344dfdfd3b464e630ef8
openapi: 3.0.1
paths:
/api/atlas/v2:
@@ -16616,7 +16608,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alertConfigurations listAlertConfigMatcherFieldNames --help
+ source: atlas api alertConfigurations listMatcherFieldNames --help
- label: Go
lang: go
source: |
@@ -16903,7 +16895,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication listFederationSettingConnectedOrgConfigs --help
+ source: atlas api federatedAuthentication listConnectedOrgConfigs --help
- label: Go
lang: go
source: |
@@ -16981,7 +16973,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication removeFederationSettingConnectedOrgConfig --help
+ source: atlas api federatedAuthentication removeConnectedOrgConfig --help
- label: Go
lang: go
source: |
@@ -17065,7 +17057,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication getFederationSettingConnectedOrgConfig --help
+ source: atlas api federatedAuthentication getConnectedOrgConfig --help
- label: Go
lang: go
source: |
@@ -17160,7 +17152,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication updateFederationSettingConnectedOrgConfig --help
+ source: atlas api federatedAuthentication updateConnectedOrgConfig --help
- label: Go
lang: go
source: |
@@ -17237,7 +17229,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication listFederationSettingConnectedOrgConfigRoleMappings --help
+ source: atlas api federatedAuthentication listRoleMappings --help
- label: Go
lang: go
source: |
@@ -17316,7 +17308,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication createFederationSettingConnectedOrgConfigRoleMapping --help
+ source: atlas api federatedAuthentication createRoleMapping --help
- label: Go
lang: go
source: |
@@ -17399,7 +17391,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication deleteFederationSettingConnectedOrgConfigRoleMapping --help
+ source: atlas api federatedAuthentication deleteRoleMapping --help
- label: Go
lang: go
source: |
@@ -17481,7 +17473,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication getFederationSettingConnectedOrgConfigRoleMapping --help
+ source: atlas api federatedAuthentication getRoleMapping --help
- label: Go
lang: go
source: |
@@ -17568,7 +17560,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication updateFederationSettingConnectedOrgConfigRoleMapping --help
+ source: atlas api federatedAuthentication updateRoleMapping --help
- label: Go
lang: go
source: |
@@ -17664,7 +17656,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication listFederationSettingIdentityProviders --help
+ source: atlas api federatedAuthentication listIdentityProviders --help
- label: Go
lang: go
source: |
@@ -17745,7 +17737,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication createFederationSettingIdentityProvider --help
+ source: atlas api federatedAuthentication createIdentityProvider --help
- label: Go
lang: go
source: |
@@ -17832,7 +17824,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication deleteFederationSettingIdentityProvider --help
+ source: atlas api federatedAuthentication deleteIdentityProvider --help
- label: Go
lang: go
source: |
@@ -17912,7 +17904,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication getFederationSettingIdentityProvider --help
+ source: atlas api federatedAuthentication getIdentityProvider --help
- label: Go
lang: go
source: |
@@ -18000,7 +17992,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication updateFederationSettingIdentityProvider --help
+ source: atlas api federatedAuthentication updateIdentityProvider --help
- label: Go
lang: go
source: |
@@ -18087,7 +18079,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication revokeFederationSettingIdentityProviderJwks --help
+ source: atlas api federatedAuthentication revokeIdentityProviderJwks --help
- label: Go
lang: go
source: |
@@ -18163,7 +18155,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication getFederationSettingIdentityProviderMetadata --help
+ source: atlas api federatedAuthentication getIdentityProviderMetadata --help
- label: Go
lang: go
source: |
@@ -18639,7 +18631,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api projects addGroupAccessUser --help
+ source: atlas api projects addGroupUser --help
- label: Go
lang: go
source: |
@@ -18684,7 +18676,7 @@ paths:
--header "Content-Type: application/json" \
-X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \
-d '{ }'
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/addGroupAccessUser
x-xgen-method-verb-override:
customMethod: "True"
@@ -18723,7 +18715,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api projectIpAccessList listGroupAccessListEntries --help
+ source: atlas api projectIpAccessList listAccessListEntries --help
- label: Go
lang: go
source: |
@@ -18814,7 +18806,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api projectIpAccessList createGroupAccessListEntry --help
+ source: atlas api projectIpAccessList createAccessListEntry --help
- label: Go
lang: go
source: |
@@ -18905,7 +18897,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api projectIpAccessList deleteGroupAccessListEntry --help
+ source: atlas api projectIpAccessList deleteAccessListEntry --help
- label: Go
lang: go
source: |
@@ -18990,7 +18982,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api projectIpAccessList getGroupAccessListEntry --help
+ source: atlas api projectIpAccessList getAccessListEntry --help
- label: Go
lang: go
source: |
@@ -19075,7 +19067,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api projectIpAccessList getGroupAccessListStatus --help
+ source: atlas api projectIpAccessList getAccessListStatus --help
- label: Go
lang: go
source: |
@@ -19151,7 +19143,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alertConfigurations listGroupAlertConfigs --help
+ source: atlas api alertConfigurations listAlertConfigs --help
- label: Go
lang: go
source: |
@@ -19232,7 +19224,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alertConfigurations createGroupAlertConfig --help
+ source: atlas api alertConfigurations createAlertConfig --help
- label: Go
lang: go
source: |
@@ -19318,7 +19310,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alertConfigurations deleteGroupAlertConfig --help
+ source: atlas api alertConfigurations deleteAlertConfig --help
- label: Go
lang: go
source: |
@@ -19403,7 +19395,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alertConfigurations getGroupAlertConfig --help
+ source: atlas api alertConfigurations getAlertConfig --help
- label: Go
lang: go
source: |
@@ -19495,7 +19487,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alertConfigurations toggleGroupAlertConfig --help
+ source: atlas api alertConfigurations toggleAlertConfig --help
- label: Go
lang: go
source: |
@@ -19596,7 +19588,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alertConfigurations updateGroupAlertConfig --help
+ source: atlas api alertConfigurations updateAlertConfig --help
- label: Go
lang: go
source: |
@@ -19690,7 +19682,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alerts getGroupAlertConfigAlerts --help
+ source: atlas api alerts getAlertConfigAlerts --help
- label: Go
lang: go
source: |
@@ -19773,7 +19765,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alerts listGroupAlerts --help
+ source: atlas api alerts listAlerts --help
- label: Go
lang: go
source: |
@@ -19858,7 +19850,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alerts getGroupAlert --help
+ source: atlas api alerts getAlert --help
- label: Go
lang: go
source: |
@@ -19949,7 +19941,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alerts acknowledgeGroupAlert --help
+ source: atlas api alerts acknowledgeAlert --help
- label: Go
lang: go
source: |
@@ -20045,7 +20037,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alertConfigurations getGroupAlertAlertConfigs --help
+ source: atlas api alertConfigurations getAlertConfigs --help
- label: Go
lang: go
source: |
@@ -20372,7 +20364,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api programmaticApiKeys updateGroupApiKeyRoles --help
+ source: atlas api programmaticApiKeys updateApiKeyRoles --help
- label: Go
lang: go
source: |
@@ -20619,7 +20611,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api auditing updateGroupAuditLog --help
+ source: atlas api auditing updateAuditLog --help
- label: Go
lang: go
source: |
@@ -20695,7 +20687,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api awsClustersDns getGroupAwsCustomDns --help
+ source: atlas api awsClustersDns getAwsCustomDns --help
- label: Go
lang: go
source: |
@@ -20771,7 +20763,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api awsClustersDns toggleGroupAwsCustomDns --help
+ source: atlas api awsClustersDns toggleAwsCustomDns --help
- label: Go
lang: go
source: |
@@ -20851,7 +20843,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups listGroupBackupExportBuckets --help
+ source: atlas api cloudBackups listExportBuckets --help
- label: Go
lang: go
source: |
@@ -20986,7 +20978,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups createGroupBackupExportBucket --help
+ source: atlas api cloudBackups createExportBucket --help
- label: Go
lang: go
source: |
@@ -21068,7 +21060,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups deleteGroupBackupExportBucket --help
+ source: atlas api cloudBackups deleteExportBucket --help
- label: Go
lang: go
source: |
@@ -21180,7 +21172,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupBackupExportBucket --help
+ source: atlas api cloudBackups getExportBucket --help
- label: Go
lang: go
source: |
@@ -21250,7 +21242,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups disableGroupBackupCompliancePolicy --help
+ source: atlas api cloudBackups disableCompliancePolicy --help
- label: Go
lang: go
source: |
@@ -21324,7 +21316,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupBackupCompliancePolicy --help
+ source: atlas api cloudBackups getCompliancePolicy --help
- label: Go
lang: go
source: |
@@ -21409,7 +21401,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups updateGroupBackupCompliancePolicy --help
+ source: atlas api cloudBackups updateCompliancePolicy --help
- label: Go
lang: go
source: |
@@ -21487,7 +21479,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudProviderAccess listGroupCloudProviderAccess --help
+ source: atlas api cloudProviderAccess listCloudProviderAccess --help
- label: Go
lang: go
source: |
@@ -21566,7 +21558,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudProviderAccess createGroupCloudProviderAccess --help
+ source: atlas api cloudProviderAccess createCloudProviderAccess --help
- label: Go
lang: go
source: |
@@ -21653,7 +21645,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudProviderAccess deauthorizeGroupCloudProviderAccessRole --help
+ source: atlas api cloudProviderAccess deauthorizeProviderAccessRole --help
- label: Go
lang: go
source: |
@@ -21735,7 +21727,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudProviderAccess getGroupCloudProviderAccess --help
+ source: atlas api cloudProviderAccess getCloudProviderAccess --help
- label: Go
lang: go
source: |
@@ -21825,7 +21817,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudProviderAccess authorizeGroupCloudProviderAccessRole --help
+ source: atlas api cloudProviderAccess authorizeProviderAccessRole --help
- label: Go
lang: go
source: |
@@ -21895,6 +21887,12 @@ paths:
schema:
default: false
type: boolean
+ - description: Controls how hardware specification fields are returned in the response. When set to true, returns the original client-specified values and provides separate effective fields showing current operational values. When false (default), hardware specification fields show current operational values directly. Primarily used for autoscaling compatibility.
+ in: header
+ name: Use-Effective-Instance-Fields
+ schema:
+ default: false
+ type: boolean
responses:
"200":
content:
@@ -21917,7 +21915,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters listGroupClusters --help
+ source: atlas api clusters listClusters --help
- label: Go
lang: go
source: |
@@ -21970,6 +21968,12 @@ paths:
operationId: createCluster
parameters:
- $ref: "#/components/parameters/groupId"
+ - description: Controls how hardware specification fields are returned in the response after cluster creation. When set to true, returns the original client-specified values and provides separate effective fields showing current operational values. When false (default), hardware specification fields show current operational values directly. Primarily used for autoscaling compatibility.
+ in: header
+ name: Use-Effective-Instance-Fields
+ schema:
+ default: false
+ type: boolean
requestBody:
content:
application/vnd.atlas.2024-10-23+json:
@@ -22087,7 +22091,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters createGroupCluster --help
+ source: atlas api clusters createCluster --help
- label: Go
lang: go
source: |
@@ -22183,7 +22187,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters deleteGroupCluster --help
+ source: atlas api clusters deleteCluster --help
- label: Go
lang: go
source: |
@@ -22243,6 +22247,12 @@ paths:
schema:
pattern: ^[a-zA-Z0-9][a-zA-Z0-9-]*$
type: string
+ - description: Controls how hardware specification fields are returned in the response. When set to true, returns the original client-specified values and provides separate effective fields showing current operational values. When false (default), hardware specification fields show current operational values directly. Primarily used for autoscaling compatibility.
+ in: header
+ name: Use-Effective-Instance-Fields
+ schema:
+ default: false
+ type: boolean
responses:
"200":
content:
@@ -22269,7 +22279,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters getGroupCluster --help
+ source: atlas api clusters getCluster --help
- label: Go
lang: go
source: |
@@ -22323,6 +22333,12 @@ paths:
schema:
pattern: ^[a-zA-Z0-9][a-zA-Z0-9-]*$
type: string
+ - description: "Controls how hardware specification fields are returned in the response after cluster updates. When set to true, returns the original client-specified values and provides separate effective fields showing current operational values. When false (default), hardware specification fields show current operational values directly. Note: When using this header with autoscaling enabled, MongoDB ignores replicationSpecs changes during updates. To intentionally override the replicationSpecs, disable this header."
+ in: header
+ name: Use-Effective-Instance-Fields
+ schema:
+ default: false
+ type: boolean
requestBody:
content:
application/vnd.atlas.2024-10-23+json:
@@ -22357,7 +22373,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters updateGroupCluster --help
+ source: atlas api clusters updateCluster --help
- label: Go
lang: go
source: |
@@ -22464,7 +22480,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics listGroupClusterCollStatMeasurements --help
+ source: atlas api collectionLevelMetrics listCollStatMeasurements --help
- label: Go
lang: go
source: |
@@ -22550,7 +22566,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics getGroupClusterCollStatNamespaces --help
+ source: atlas api collectionLevelMetrics getClusterNamespaces --help
- label: Go
lang: go
source: |
@@ -22635,7 +22651,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters autoGroupClusterScalingConfiguration --help
+ source: atlas api clusters autoScalingConfiguration --help
- label: Go
lang: go
source: |
@@ -22717,7 +22733,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups listGroupClusterBackupExports --help
+ source: atlas api cloudBackups listBackupExports --help
- label: Go
lang: go
source: |
@@ -22804,7 +22820,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups createGroupClusterBackupExport --help
+ source: atlas api cloudBackups createBackupExport --help
- label: Go
lang: go
source: |
@@ -22893,7 +22909,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupClusterBackupExport --help
+ source: atlas api cloudBackups getBackupExport --help
- label: Go
lang: go
source: |
@@ -22973,7 +22989,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups listGroupClusterBackupRestoreJobs --help
+ source: atlas api cloudBackups listBackupRestoreJobs --help
- label: Go
lang: go
source: |
@@ -23063,7 +23079,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups createGroupClusterBackupRestoreJob --help
+ source: atlas api cloudBackups createBackupRestoreJob --help
- label: Go
lang: go
source: |
@@ -23153,7 +23169,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups cancelGroupClusterBackupRestoreJob --help
+ source: atlas api cloudBackups cancelBackupRestoreJob --help
- label: Go
lang: go
source: |
@@ -23239,7 +23255,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupClusterBackupRestoreJob --help
+ source: atlas api cloudBackups getBackupRestoreJob --help
- label: Go
lang: go
source: |
@@ -23318,7 +23334,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups deleteGroupClusterBackupSchedule --help
+ source: atlas api cloudBackups deleteClusterBackupSchedule --help
- label: Go
lang: go
source: |
@@ -23394,7 +23410,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupClusterBackupSchedule --help
+ source: atlas api cloudBackups getBackupSchedule --help
- label: Go
lang: go
source: |
@@ -23485,7 +23501,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups updateGroupClusterBackupSchedule --help
+ source: atlas api cloudBackups updateBackupSchedule --help
- label: Go
lang: go
source: |
@@ -23571,7 +23587,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups listGroupClusterBackupSnapshots --help
+ source: atlas api cloudBackups listBackupSnapshots --help
- label: Go
lang: go
source: |
@@ -23659,7 +23675,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups takeGroupClusterBackupSnapshots --help
+ source: atlas api cloudBackups takeSnapshots --help
- label: Go
lang: go
source: |
@@ -23750,7 +23766,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups deleteGroupClusterBackupSnapshot --help
+ source: atlas api cloudBackups deleteClusterBackupSnapshot --help
- label: Go
lang: go
source: |
@@ -23837,7 +23853,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupClusterBackupSnapshot --help
+ source: atlas api cloudBackups getClusterBackupSnapshot --help
- label: Go
lang: go
source: |
@@ -23929,7 +23945,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups updateGroupClusterBackupSnapshot --help
+ source: atlas api cloudBackups updateBackupSnapshot --help
- label: Go
lang: go
source: |
@@ -24015,7 +24031,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups deleteGroupClusterBackupSnapshotShardedCluster --help
+ source: atlas api cloudBackups deleteBackupShardedCluster --help
- label: Go
lang: go
source: |
@@ -24102,7 +24118,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupClusterBackupSnapshotShardedCluster --help
+ source: atlas api cloudBackups getBackupShardedCluster --help
- label: Go
lang: go
source: |
@@ -24181,7 +24197,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups listGroupClusterBackupSnapshotShardedClusters --help
+ source: atlas api cloudBackups listBackupShardedClusters --help
- label: Go
lang: go
source: |
@@ -24276,7 +24292,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api sharedTierSnapshots downloadGroupClusterBackupTenant --help
+ source: atlas api sharedTierSnapshots downloadClusterBackupTenant --help
- label: Go
lang: go
source: |
@@ -24378,7 +24394,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api sharedTierRestoreJobs createGroupClusterBackupTenantRestore --help
+ source: atlas api sharedTierRestoreJobs createBackupTenantRestore --help
- label: Go
lang: go
source: |
@@ -24469,7 +24485,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api sharedTierRestoreJobs listGroupClusterBackupTenantRestores --help
+ source: atlas api sharedTierRestoreJobs listBackupTenantRestores --help
- label: Go
lang: go
source: |
@@ -24563,7 +24579,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api sharedTierRestoreJobs getGroupClusterBackupTenantRestore --help
+ source: atlas api sharedTierRestoreJobs getBackupTenantRestore --help
- label: Go
lang: go
source: |
@@ -24650,7 +24666,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api sharedTierSnapshots listGroupClusterBackupTenantSnapshots --help
+ source: atlas api sharedTierSnapshots listClusterBackupSnapshots --help
- label: Go
lang: go
source: |
@@ -24744,7 +24760,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api sharedTierSnapshots getGroupClusterBackupTenantSnapshot --help
+ source: atlas api sharedTierSnapshots getBackupTenantSnapshot --help
- label: Go
lang: go
source: |
@@ -24826,7 +24842,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup listGroupClusterBackupCheckpoints --help
+ source: atlas api legacyBackup listClusterBackupCheckpoints --help
- label: Go
lang: go
source: |
@@ -24915,7 +24931,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup getGroupClusterBackupCheckpoint --help
+ source: atlas api legacyBackup getClusterBackupCheckpoint --help
- label: Go
lang: go
source: |
@@ -24994,7 +25010,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics listGroupClusterCollStatPinnedNamespaces --help
+ source: atlas api collectionLevelMetrics listPinnedNamespaces --help
- label: Go
lang: go
source: |
@@ -25089,7 +25105,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics updateGroupClusterCollStatPinnedNamespaces --help
+ source: atlas api collectionLevelMetrics updatePinnedNamespaces --help
- label: Go
lang: go
source: |
@@ -25188,7 +25204,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics pinGroupClusterCollStatPinnedNamespaces --help
+ source: atlas api collectionLevelMetrics pinNamespaces --help
- label: Go
lang: go
source: |
@@ -25281,7 +25297,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics unpinGroupClusterCollStatUnpinNamespaces --help
+ source: atlas api collectionLevelMetrics unpinNamespaces --help
- label: Go
lang: go
source: |
@@ -25380,7 +25396,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch createGroupClusterFtsIndex --help
+ source: atlas api atlasSearch createClusterFtsIndex --help
- label: Go
lang: go
source: |
@@ -25482,7 +25498,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch listGroupClusterFtsIndex --help
+ source: atlas api atlasSearch listClusterFtsIndex --help
- label: Go
lang: go
source: |
@@ -25576,7 +25592,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch deleteGroupClusterFtsIndex --help
+ source: atlas api atlasSearch deleteClusterFtsIndex --help
- label: Go
lang: go
source: |
@@ -25666,7 +25682,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch getGroupClusterFtsIndex --help
+ source: atlas api atlasSearch getClusterFtsIndex --help
- label: Go
lang: go
source: |
@@ -25767,7 +25783,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch updateGroupClusterFtsIndex --help
+ source: atlas api atlasSearch updateClusterFtsIndex --help
- label: Go
lang: go
source: |
@@ -25854,7 +25870,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api globalClusters getGroupClusterGlobalWrites --help
+ source: atlas api globalClusters getClusterGlobalWrites --help
- label: Go
lang: go
source: |
@@ -25934,7 +25950,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api globalClusters deleteGroupClusterGlobalWriteCustomZoneMapping --help
+ source: atlas api globalClusters deleteCustomZoneMapping --help
- label: Go
lang: go
source: |
@@ -26023,7 +26039,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api globalClusters createGroupClusterGlobalWriteCustomZoneMapping --help
+ source: atlas api globalClusters createCustomZoneMapping --help
- label: Go
lang: go
source: |
@@ -26119,7 +26135,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api globalClusters deleteGroupClusterGlobalWriteManagedNamespaces --help
+ source: atlas api globalClusters deleteManagedNamespaces --help
- label: Go
lang: go
source: |
@@ -26210,7 +26226,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api globalClusters createGroupClusterGlobalWriteManagedNamespace --help
+ source: atlas api globalClusters createManagedNamespace --help
- label: Go
lang: go
source: |
@@ -26368,7 +26384,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api rollingIndex createGroupClusterIndexRollingIndex --help
+ source: atlas api rollingIndex createRollingIndex --help
- label: Go
lang: go
source: |
@@ -26460,7 +26476,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api onlineArchive listGroupClusterOnlineArchives --help
+ source: atlas api onlineArchive listOnlineArchives --help
- label: Go
lang: go
source: |
@@ -26550,7 +26566,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api onlineArchive createGroupClusterOnlineArchive --help
+ source: atlas api onlineArchive createOnlineArchive --help
- label: Go
lang: go
source: |
@@ -26641,7 +26657,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api onlineArchive deleteGroupClusterOnlineArchive --help
+ source: atlas api onlineArchive deleteOnlineArchive --help
- label: Go
lang: go
source: |
@@ -26731,7 +26747,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api onlineArchive getGroupClusterOnlineArchive --help
+ source: atlas api onlineArchive getOnlineArchive --help
- label: Go
lang: go
source: |
@@ -26828,7 +26844,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api onlineArchive updateGroupClusterOnlineArchive --help
+ source: atlas api onlineArchive updateOnlineArchive --help
- label: Go
lang: go
source: |
@@ -26942,7 +26958,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api onlineArchive downloadGroupClusterOnlineArchiveQueryLogs --help
+ source: atlas api onlineArchive downloadQueryLogs --help
- label: Go
lang: go
source: |
@@ -27029,7 +27045,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusterOutageSimulation endGroupClusterOutageSimulation --help
+ source: atlas api clusterOutageSimulation endOutageSimulation --help
- label: Go
lang: go
source: |
@@ -27117,7 +27133,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusterOutageSimulation getGroupClusterOutageSimulation --help
+ source: atlas api clusterOutageSimulation getOutageSimulation --help
- label: Go
lang: go
source: |
@@ -27208,7 +27224,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusterOutageSimulation startGroupClusterOutageSimulation --help
+ source: atlas api clusterOutageSimulation startOutageSimulation --help
- label: Go
lang: go
source: |
@@ -27296,7 +27312,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor listGroupClusterPerformanceAdvisorDropIndexSuggestions --help
+ source: atlas api performanceAdvisor listDropIndexSuggestions --help
- label: Go
lang: go
source: |
@@ -27377,7 +27393,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor listGroupClusterPerformanceAdvisorSchemaAdvice --help
+ source: atlas api performanceAdvisor listSchemaAdvice --help
- label: Go
lang: go
source: |
@@ -27501,7 +27517,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor listGroupClusterPerformanceAdvisorSuggestedIndexes --help
+ source: atlas api performanceAdvisor listClusterSuggestedIndexes --help
- label: Go
lang: go
source: |
@@ -27585,7 +27601,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters getGroupClusterProcessArgs --help
+ source: atlas api clusters getProcessArgs --help
- label: Go
lang: go
source: |
@@ -27674,7 +27690,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters updateGroupClusterProcessArgs --help
+ source: atlas api clusters updateProcessArgs --help
- label: Go
lang: go
source: |
@@ -27802,7 +27818,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api queryShapeInsights getGroupClusterQueryShapeInsightDetails --help
+ source: atlas api queryShapeInsights getQueryShapeDetails --help
- label: Go
lang: go
source: |
@@ -27969,7 +27985,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api queryShapeInsights listGroupClusterQueryShapeInsightSummaries --help
+ source: atlas api queryShapeInsights listQueryShapeSummaries --help
- label: Go
lang: go
source: |
@@ -28044,7 +28060,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters restartGroupClusterPrimaries --help
+ source: atlas api clusters restartPrimaries --help
- label: Go
lang: go
source: |
@@ -28145,7 +28161,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup listGroupClusterRestoreJobs --help
+ source: atlas api legacyBackup listClusterRestoreJobs --help
- label: Go
lang: go
source: |
@@ -28234,7 +28250,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup createGroupClusterRestoreJob --help
+ source: atlas api legacyBackup createClusterRestoreJob --help
- label: Go
lang: go
source: |
@@ -28334,7 +28350,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup getGroupClusterRestoreJob --help
+ source: atlas api legacyBackup getClusterRestoreJob --help
- label: Go
lang: go
source: |
@@ -28413,7 +28429,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch deleteGroupClusterSearchDeployment --help
+ source: atlas api atlasSearch deleteClusterSearchDeployment --help
- label: Go
lang: go
source: |
@@ -28491,7 +28507,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch getGroupClusterSearchDeployment --help
+ source: atlas api atlasSearch getClusterSearchDeployment --help
- label: Go
lang: go
source: |
@@ -28583,7 +28599,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch updateGroupClusterSearchDeployment --help
+ source: atlas api atlasSearch updateClusterSearchDeployment --help
- label: Go
lang: go
source: |
@@ -28674,7 +28690,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch createGroupClusterSearchDeployment --help
+ source: atlas api atlasSearch createClusterSearchDeployment --help
- label: Go
lang: go
source: |
@@ -28770,7 +28786,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch listGroupClusterSearchIndexes --help
+ source: atlas api atlasSearch listClusterSearchIndexes --help
- label: Go
lang: go
source: |
@@ -28860,7 +28876,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch createGroupClusterSearchIndex --help
+ source: atlas api atlasSearch createClusterSearchIndex --help
- label: Go
lang: go
source: |
@@ -28968,7 +28984,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch listGroupClusterSearchIndex --help
+ source: atlas api atlasSearch listSearchIndex --help
- label: Go
lang: go
source: |
@@ -29069,7 +29085,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch deleteGroupClusterSearchIndexByName --help
+ source: atlas api atlasSearch deleteIndexByName --help
- label: Go
lang: go
source: |
@@ -29171,7 +29187,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch getGroupClusterSearchIndexByName --help
+ source: atlas api atlasSearch getIndexByName --help
- label: Go
lang: go
source: |
@@ -29282,7 +29298,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch updateGroupClusterSearchIndexByName --help
+ source: atlas api atlasSearch updateIndexByName --help
- label: Go
lang: go
source: |
@@ -29378,7 +29394,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch deleteGroupClusterSearchIndex --help
+ source: atlas api atlasSearch deleteClusterSearchIndex --help
- label: Go
lang: go
source: |
@@ -29474,7 +29490,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch getGroupClusterSearchIndex --help
+ source: atlas api atlasSearch getClusterSearchIndex --help
- label: Go
lang: go
source: |
@@ -29573,7 +29589,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch updateGroupClusterSearchIndex --help
+ source: atlas api atlasSearch updateClusterSearchIndex --help
- label: Go
lang: go
source: |
@@ -29663,7 +29679,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup getGroupClusterSnapshotSchedule --help
+ source: atlas api legacyBackup getClusterSnapshotSchedule --help
- label: Go
lang: go
source: |
@@ -29755,7 +29771,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup updateGroupClusterSnapshotSchedule --help
+ source: atlas api legacyBackup updateClusterSnapshotSchedule --help
- label: Go
lang: go
source: |
@@ -29849,7 +29865,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup listGroupClusterSnapshots --help
+ source: atlas api legacyBackup listClusterSnapshots --help
- label: Go
lang: go
source: |
@@ -29937,7 +29953,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup deleteGroupClusterSnapshot --help
+ source: atlas api legacyBackup deleteClusterSnapshot --help
- label: Go
lang: go
source: |
@@ -30026,7 +30042,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup getGroupClusterSnapshot --help
+ source: atlas api legacyBackup getClusterSnapshot --help
- label: Go
lang: go
source: |
@@ -30120,7 +30136,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup updateGroupClusterSnapshot --help
+ source: atlas api legacyBackup updateClusterSnapshot --help
- label: Go
lang: go
source: |
@@ -30203,7 +30219,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters getGroupClusterStatus --help
+ source: atlas api clusters getClusterStatus --help
- label: Go
lang: go
source: |
@@ -30290,7 +30306,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters grantGroupClusterMongoDbEmployeeAccess --help
+ source: atlas api clusters grantMongoEmployeeAccess --help
- label: Go
lang: go
source: |
@@ -30380,7 +30396,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters pinGroupClusterFeatureCompatibilityVersion --help
+ source: atlas api clusters pinFeatureCompatibilityVersion --help
- label: Go
lang: go
source: |
@@ -30463,7 +30479,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters revokeGroupClusterMongoDbEmployeeAccess --help
+ source: atlas api clusters revokeMongoEmployeeAccess --help
- label: Go
lang: go
source: |
@@ -30548,7 +30564,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters unpinGroupClusterFeatureCompatibilityVersion --help
+ source: atlas api clusters unpinFeatureCompatibilityVersion --help
- label: Go
lang: go
source: |
@@ -30658,7 +30674,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs downloadGroupClusterLog --help
+ source: atlas api monitoringAndLogs downloadClusterLog --help
- label: Go
lang: go
source: |
@@ -30748,7 +30764,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters listGroupClusterProviderRegions --help
+ source: atlas api clusters listClusterProviderRegions --help
- label: Go
lang: go
source: |
@@ -30837,7 +30853,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters upgradeGroupClusterTenantUpgrade --help
+ source: atlas api clusters upgradeTenantUpgrade --help
- label: Go
lang: go
source: |
@@ -30934,7 +30950,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters upgradeGroupClusterTenantUpgradeToServerless --help
+ source: atlas api clusters upgradeClusterToServerless --help
- label: Go
lang: go
source: |
@@ -31012,7 +31028,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics listGroupCollStatMetrics --help
+ source: atlas api collectionLevelMetrics listCollStatMetrics --help
- label: Go
lang: go
source: |
@@ -31579,7 +31595,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api customDatabaseRoles listGroupCustomDbRoleRoles --help
+ source: atlas api customDatabaseRoles listCustomDbRoles --help
- label: Go
lang: go
source: |
@@ -31659,7 +31675,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api customDatabaseRoles createGroupCustomDbRoleRole --help
+ source: atlas api customDatabaseRoles createCustomDbRole --help
- label: Go
lang: go
source: |
@@ -31741,7 +31757,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api customDatabaseRoles deleteGroupCustomDbRoleRole --help
+ source: atlas api customDatabaseRoles deleteCustomDbRole --help
- label: Go
lang: go
source: |
@@ -31816,7 +31832,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api customDatabaseRoles getGroupCustomDbRoleRole --help
+ source: atlas api customDatabaseRoles getCustomDbRole --help
- label: Go
lang: go
source: |
@@ -31902,7 +31918,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api customDatabaseRoles updateGroupCustomDbRoleRole --help
+ source: atlas api customDatabaseRoles updateCustomDbRole --help
- label: Go
lang: go
source: |
@@ -31990,7 +32006,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation listGroupDataFederation --help
+ source: atlas api dataFederation listDataFederation --help
- label: Go
lang: go
source: |
@@ -32074,7 +32090,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation createGroupDataFederation --help
+ source: atlas api dataFederation createDataFederation --help
- label: Go
lang: go
source: |
@@ -32152,7 +32168,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation deleteGroupDataFederation --help
+ source: atlas api dataFederation deleteDataFederation --help
- label: Go
lang: go
source: |
@@ -32232,7 +32248,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation getGroupDataFederation --help
+ source: atlas api dataFederation getDataFederation --help
- label: Go
lang: go
source: |
@@ -32322,7 +32338,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation updateGroupDataFederation --help
+ source: atlas api dataFederation updateDataFederation --help
- label: Go
lang: go
source: |
@@ -32410,7 +32426,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation listGroupDataFederationLimits --help
+ source: atlas api dataFederation listDataFederationLimits --help
- label: Go
lang: go
source: |
@@ -32500,7 +32516,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation deleteGroupDataFederationLimit --help
+ source: atlas api dataFederation deleteDataFederationLimit --help
- label: Go
lang: go
source: |
@@ -32591,7 +32607,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation getGroupDataFederationLimit --help
+ source: atlas api dataFederation getDataFederationLimit --help
- label: Go
lang: go
source: |
@@ -32689,7 +32705,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation setGroupDataFederationLimit --help
+ source: atlas api dataFederation setDataFederationLimit --help
- label: Go
lang: go
source: |
@@ -32794,7 +32810,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation downloadGroupDataFederationQueryLogs --help
+ source: atlas api dataFederation downloadFederationQueryLogs --help
- label: Go
lang: go
source: |
@@ -32872,7 +32888,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api databaseUsers listGroupDatabaseUsers --help
+ source: atlas api databaseUsers listDatabaseUsers --help
- label: Go
lang: go
source: |
@@ -33046,7 +33062,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api databaseUsers createGroupDatabaseUser --help
+ source: atlas api databaseUsers createDatabaseUser --help
- label: Go
lang: go
source: |
@@ -33148,7 +33164,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api databaseUsers deleteGroupDatabaseUser --help
+ source: atlas api databaseUsers deleteDatabaseUser --help
- label: Go
lang: go
source: |
@@ -33247,7 +33263,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api databaseUsers getGroupDatabaseUser --help
+ source: atlas api databaseUsers getDatabaseUser --help
- label: Go
lang: go
source: |
@@ -33357,7 +33373,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api databaseUsers updateGroupDatabaseUser --help
+ source: atlas api databaseUsers updateDatabaseUser --help
- label: Go
lang: go
source: |
@@ -33442,7 +33458,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api x509Authentication listGroupDatabaseUserCerts --help
+ source: atlas api x509Authentication listDatabaseUserCerts --help
- label: Go
lang: go
source: |
@@ -33537,7 +33553,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api x509Authentication createGroupDatabaseUserCert --help
+ source: atlas api x509Authentication createDatabaseUserCert --help
- label: Go
lang: go
source: |
@@ -33657,7 +33673,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api accessTracking getGroupDbAccessHistoryCluster --help
+ source: atlas api accessTracking getAccessHistoryCluster --help
- label: Go
lang: go
source: |
@@ -33770,7 +33786,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api accessTracking getGroupDbAccessHistoryProcess --help
+ source: atlas api accessTracking getAccessHistoryProcess --help
- label: Go
lang: go
source: |
@@ -33846,7 +33862,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api encryptionAtRestUsingCustomerKeyManagement getGroupEncryptionAtRest --help
+ source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRest --help
- label: Go
lang: go
source: |
@@ -33938,7 +33954,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api encryptionAtRestUsingCustomerKeyManagement updateGroupEncryptionAtRest --help
+ source: atlas api encryptionAtRestUsingCustomerKeyManagement updateEncryptionAtRest --help
- label: Go
lang: go
source: |
@@ -34021,7 +34037,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api encryptionAtRestUsingCustomerKeyManagement listGroupEncryptionAtRestPrivateEndpoints --help
+ source: atlas api encryptionAtRestUsingCustomerKeyManagement listRestPrivateEndpoints --help
- label: Go
lang: go
source: |
@@ -34103,7 +34119,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api encryptionAtRestUsingCustomerKeyManagement createGroupEncryptionAtRestPrivateEndpoint --help
+ source: atlas api encryptionAtRestUsingCustomerKeyManagement createRestPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -34188,7 +34204,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api encryptionAtRestUsingCustomerKeyManagement requestGroupEncryptionAtRestPrivateEndpointDeletion --help
+ source: atlas api encryptionAtRestUsingCustomerKeyManagement requestPrivateEndpointDeletion --help
- label: Go
lang: go
source: |
@@ -34275,7 +34291,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api encryptionAtRestUsingCustomerKeyManagement getGroupEncryptionAtRestPrivateEndpoint --help
+ source: atlas api encryptionAtRestUsingCustomerKeyManagement getRestPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -34576,7 +34592,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexClusters listGroupFlexClusters --help
+ source: atlas api flexClusters listFlexClusters --help
- label: Go
lang: go
source: |
@@ -34658,7 +34674,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexClusters createGroupFlexCluster --help
+ source: atlas api flexClusters createFlexCluster --help
- label: Go
lang: go
source: |
@@ -34741,7 +34757,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexClusters deleteGroupFlexCluster --help
+ source: atlas api flexClusters deleteFlexCluster --help
- label: Go
lang: go
source: |
@@ -34823,7 +34839,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexClusters getGroupFlexCluster --help
+ source: atlas api flexClusters getFlexCluster --help
- label: Go
lang: go
source: |
@@ -34910,7 +34926,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexClusters updateGroupFlexCluster --help
+ source: atlas api flexClusters updateFlexCluster --help
- label: Go
lang: go
source: |
@@ -35002,7 +35018,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexSnapshots downloadGroupFlexClusterBackup --help
+ source: atlas api flexSnapshots downloadFlexBackup --help
- label: Go
lang: go
source: |
@@ -35090,7 +35106,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexRestoreJobs listGroupFlexClusterBackupRestoreJobs --help
+ source: atlas api flexRestoreJobs listFlexRestoreJobs --help
- label: Go
lang: go
source: |
@@ -35177,7 +35193,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexRestoreJobs createGroupFlexClusterBackupRestoreJob --help
+ source: atlas api flexRestoreJobs createFlexRestoreJob --help
- label: Go
lang: go
source: |
@@ -35267,7 +35283,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexRestoreJobs getGroupFlexClusterBackupRestoreJob --help
+ source: atlas api flexRestoreJobs getFlexRestoreJob --help
- label: Go
lang: go
source: |
@@ -35349,7 +35365,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexSnapshots listGroupFlexClusterBackupSnapshots --help
+ source: atlas api flexSnapshots listFlexBackupSnapshots --help
- label: Go
lang: go
source: |
@@ -35436,7 +35452,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexSnapshots getGroupFlexClusterBackupSnapshot --help
+ source: atlas api flexSnapshots getFlexBackupSnapshot --help
- label: Go
lang: go
source: |
@@ -35519,7 +35535,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexClusters tenantGroupFlexClusterUpgrade --help
+ source: atlas api flexClusters tenantUpgrade --help
- label: Go
lang: go
source: |
@@ -35598,7 +35614,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs listGroupHostFtsMetrics --help
+ source: atlas api monitoringAndLogs listHostFtsMetrics --help
- label: Go
lang: go
source: |
@@ -35694,7 +35710,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs getGroupHostFtsMetricIndexMeasurements --help
+ source: atlas api monitoringAndLogs getIndexMeasurements --help
- label: Go
lang: go
source: |
@@ -35789,7 +35805,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs listGroupHostFtsMetricIndexMeasurements --help
+ source: atlas api monitoringAndLogs listIndexMeasurements --help
- label: Go
lang: go
source: |
@@ -35883,7 +35899,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs listGroupHostFtsMetricMeasurements --help
+ source: atlas api monitoringAndLogs listMeasurements --help
- label: Go
lang: go
source: |
@@ -36002,7 +36018,7 @@ paths:
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Third-Party-Integrations/operation/listGroupIntegrations
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}:
delete:
- description: Removes the settings that permit configuring one third-party service integration. These settings apply to all databases managed in one MongoDB Cloud project. If you delete an integration from a project, you remove that integration configuration only for that project. This action doesn't affect any other project or organization's configured `{INTEGRATION-TYPE}` integrations. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role.
+ description: Removes the settings that permit configuring one third-party service integration. These settings apply to all databases managed in one MongoDB Cloud project. If you delete an integration from a project, you remove that integration configuration only for that project. This action doesn't affect any other project or organization's configured `{INTEGRATION-TYPE}` integrations. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role. Deleting log export to S3, Splunk, and Datadog is currently in preview. Please contact your Customer Success Manager (CSM) for access.
operationId: deleteGroupIntegration
parameters:
- description: Human-readable label that identifies the service which you want to integrate with MongoDB Cloud.
@@ -36078,7 +36094,7 @@ paths:
-X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Third-Party-Integrations/operation/deleteGroupIntegration
get:
- description: Returns the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role.
+ description: Returns the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role. Viewing log export to S3, Splunk, and Datadog is currently in preview. Please contact your Customer Success Manager (CSM) for access.
operationId: getGroupIntegration
parameters:
- $ref: "#/components/parameters/groupId"
@@ -36159,7 +36175,7 @@ paths:
-X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Third-Party-Integrations/operation/getGroupIntegration
post:
- description: Adds the settings for configuring one third-party service integration. These settings apply to all databases managed in the specified MongoDB Cloud project. Each project can have only one configuration per `{INTEGRATION-TYPE}`. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role.
+ description: Adds the settings for configuring one third-party service integration. These settings apply to all databases managed in the specified MongoDB Cloud project. Each project can have only one configuration per `{INTEGRATION-TYPE}`. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role. Enabling log export to S3, Splunk, and Datadog is currently in preview. Please contact your Customer Success Manager (CSM) for access.
operationId: createGroupIntegration
parameters:
- description: Human-readable label that identifies the service which you want to integrate with MongoDB Cloud.
@@ -36253,7 +36269,7 @@ paths:
-d '{ }'
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Third-Party-Integrations/operation/createGroupIntegration
put:
- description: Updates the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role.
+ description: Updates the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role. Enabling log export to S3, Splunk, and Datadog is currently in preview. Please contact your Customer Success Manager (CSM) for access.
operationId: updateGroupIntegration
parameters:
- description: Human-readable label that identifies the service which you want to integrate with MongoDB Cloud.
@@ -36430,7 +36446,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true"
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/listGroupInvites
patch:
deprecated: true
@@ -36514,7 +36530,7 @@ paths:
--header "Content-Type: application/json" \
-X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \
-d '{ }'
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/updateGroupInvites
post:
deprecated: true
@@ -36596,12 +36612,12 @@ paths:
--header "Content-Type: application/json" \
-X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \
-d '{ }'
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/createGroupInvite
/api/atlas/v2/groups/{groupId}/invites/{invitationId}:
delete:
deprecated: true
- description: Cancels one pending invitation sent to the specified MongoDB Cloud user to join a project. You can't cancel an invitation that the user accepted. To use this resource, the requesting Service Account or API Key must have the Project Owner role.
+ description: "Cancels one pending invitation sent to the specified MongoDB Cloud user to join a project. You can't cancel an invitation that the user accepted. To use this resource, the requesting Service Account or API Key must have the Project Owner role. Note: deleting a project invitation does not delete an organization invitation even if they were created together."
operationId: deleteGroupInvite
parameters:
- $ref: "#/components/parameters/groupId"
@@ -36673,7 +36689,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}"
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/deleteGroupInvite
get:
deprecated: true
@@ -36753,7 +36769,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true"
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/getGroupInvite
patch:
deprecated: true
@@ -36799,7 +36815,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api projects updateGroupInviteById --help
+ source: atlas api projects updateInviteById --help
- label: Go
lang: go
source: |
@@ -36844,7 +36860,7 @@ paths:
--header "Content-Type: application/json" \
-X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \
-d '{ }'
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/updateGroupInviteById
x-xgen-method-verb-override:
customMethod: false
@@ -37500,7 +37516,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudMigrationService cutoverGroupLiveMigration --help
+ source: atlas api cloudMigrationService cutoverMigration --help
- label: Go
lang: go
source: |
@@ -37586,7 +37602,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudMigrationService validateGroupLiveMigrations --help
+ source: atlas api cloudMigrationService validateLiveMigrations --help
- label: Go
lang: go
source: |
@@ -37672,7 +37688,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudMigrationService getGroupLiveMigrationValidateStatus --help
+ source: atlas api cloudMigrationService getMigrationValidateStatus --help
- label: Go
lang: go
source: |
@@ -37745,7 +37761,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api maintenanceWindows resetGroupMaintenanceWindow --help
+ source: atlas api maintenanceWindows resetMaintenanceWindow --help
- label: Go
lang: go
source: |
@@ -37819,7 +37835,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api maintenanceWindows getGroupMaintenanceWindow --help
+ source: atlas api maintenanceWindows getMaintenanceWindow --help
- label: Go
lang: go
source: |
@@ -37895,7 +37911,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api maintenanceWindows updateGroupMaintenanceWindow --help
+ source: atlas api maintenanceWindows updateMaintenanceWindow --help
- label: Go
lang: go
source: |
@@ -37969,7 +37985,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api maintenanceWindows toggleGroupMaintenanceWindowAutoDefer --help
+ source: atlas api maintenanceWindows toggleMaintenanceAutoDefer --help
- label: Go
lang: go
source: |
@@ -38046,7 +38062,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api maintenanceWindows deferGroupMaintenanceWindow --help
+ source: atlas api maintenanceWindows deferMaintenanceWindow --help
- label: Go
lang: go
source: |
@@ -38126,7 +38142,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor getGroupManagedSlowMs --help
+ source: atlas api performanceAdvisor getManagedSlowMs --help
- label: Go
lang: go
source: |
@@ -38196,7 +38212,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor disableGroupManagedSlowMs --help
+ source: atlas api performanceAdvisor disableManagedSlowMs --help
- label: Go
lang: go
source: |
@@ -38268,7 +38284,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor enableGroupManagedSlowMs --help
+ source: atlas api performanceAdvisor enableManagedSlowMs --help
- label: Go
lang: go
source: |
@@ -38377,7 +38393,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api projects getGroupMongoDbVersions --help
+ source: atlas api projects getMongoDbVersions --help
- label: Go
lang: go
source: |
@@ -38878,7 +38894,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines listGroupPipelines --help
+ source: atlas api dataLakePipelines listPipelines --help
- label: Go
lang: go
source: |
@@ -38961,7 +38977,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines createGroupPipeline --help
+ source: atlas api dataLakePipelines createPipeline --help
- label: Go
lang: go
source: |
@@ -39042,7 +39058,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines deleteGroupPipeline --help
+ source: atlas api dataLakePipelines deletePipeline --help
- label: Go
lang: go
source: |
@@ -39124,7 +39140,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines getGroupPipeline --help
+ source: atlas api dataLakePipelines getPipeline --help
- label: Go
lang: go
source: |
@@ -39213,7 +39229,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines updateGroupPipeline --help
+ source: atlas api dataLakePipelines updatePipeline --help
- label: Go
lang: go
source: |
@@ -39305,7 +39321,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines getGroupPipelineAvailableSchedules --help
+ source: atlas api dataLakePipelines getAvailablePipelineSchedules --help
- label: Go
lang: go
source: |
@@ -39398,7 +39414,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines getGroupPipelineAvailableSnapshots --help
+ source: atlas api dataLakePipelines getAvailablePipelineSnapshots --help
- label: Go
lang: go
source: |
@@ -39479,7 +39495,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines pauseGroupPipeline --help
+ source: atlas api dataLakePipelines pausePipeline --help
- label: Go
lang: go
source: |
@@ -39566,7 +39582,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines resumeGroupPipeline --help
+ source: atlas api dataLakePipelines resumePipeline --help
- label: Go
lang: go
source: |
@@ -39664,7 +39680,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines listGroupPipelineRuns --help
+ source: atlas api dataLakePipelines listPipelineRuns --help
- label: Go
lang: go
source: |
@@ -39753,7 +39769,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines deleteGroupPipelineRun --help
+ source: atlas api dataLakePipelines deletePipelineRun --help
- label: Go
lang: go
source: |
@@ -39843,7 +39859,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines getGroupPipelineRun --help
+ source: atlas api dataLakePipelines getPipelineRun --help
- label: Go
lang: go
source: |
@@ -39931,7 +39947,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines triggerGroupPipeline --help
+ source: atlas api dataLakePipelines triggerPipeline --help
- label: Go
lang: go
source: |
@@ -40027,7 +40043,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices listGroupPrivateEndpointEndpointService --help
+ source: atlas api privateEndpointServices listPrivateEndpointService --help
- label: Go
lang: go
source: |
@@ -40113,7 +40129,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices deleteGroupPrivateEndpointEndpointService --help
+ source: atlas api privateEndpointServices deletePrivateEndpointService --help
- label: Go
lang: go
source: |
@@ -40202,7 +40218,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices getGroupPrivateEndpointEndpointService --help
+ source: atlas api privateEndpointServices getPrivateEndpointService --help
- label: Go
lang: go
source: |
@@ -40301,7 +40317,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices createGroupPrivateEndpointEndpointServiceEndpoint --help
+ source: atlas api privateEndpointServices createPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -40398,7 +40414,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices deleteGroupPrivateEndpointEndpointServiceEndpoint --help
+ source: atlas api privateEndpointServices deletePrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -40494,7 +40510,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices getGroupPrivateEndpointEndpointServiceEndpoint --help
+ source: atlas api privateEndpointServices getPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -40576,7 +40592,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices createGroupPrivateEndpointEndpointService --help
+ source: atlas api privateEndpointServices createPrivateEndpointService --help
- label: Go
lang: go
source: |
@@ -40650,7 +40666,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices getGroupPrivateEndpointRegionalMode --help
+ source: atlas api privateEndpointServices getRegionalEndpointMode --help
- label: Go
lang: go
source: |
@@ -40731,7 +40747,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices toggleGroupPrivateEndpointRegionalMode --help
+ source: atlas api privateEndpointServices toggleRegionalEndpointMode --help
- label: Go
lang: go
source: |
@@ -40828,7 +40844,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessPrivateEndpoints listGroupPrivateEndpointServerlessInstanceEndpoint --help
+ source: atlas api serverlessPrivateEndpoints listServerlessPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -40921,7 +40937,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessPrivateEndpoints createGroupPrivateEndpointServerlessInstanceEndpoint --help
+ source: atlas api serverlessPrivateEndpoints createServerlessPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -41012,7 +41028,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessPrivateEndpoints deleteGroupPrivateEndpointServerlessInstanceEndpoint --help
+ source: atlas api serverlessPrivateEndpoints deleteServerlessPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -41102,7 +41118,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessPrivateEndpoints getGroupPrivateEndpointServerlessInstanceEndpoint --help
+ source: atlas api serverlessPrivateEndpoints getServerlessPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -41197,7 +41213,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessPrivateEndpoints updateGroupPrivateEndpointServerlessInstanceEndpoint --help
+ source: atlas api serverlessPrivateEndpoints updateServerlessPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -41277,7 +41293,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api networkPeering verifyGroupPrivateIpMode --help
+ source: atlas api networkPeering verifyPrivateIpMode --help
- label: Go
lang: go
source: |
@@ -41362,7 +41378,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api networkPeering disableGroupPrivateIpModePeering --help
+ source: atlas api networkPeering disablePeering --help
- label: Go
lang: go
source: |
@@ -41444,7 +41460,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation listGroupPrivateNetworkSettingEndpointIds --help
+ source: atlas api dataFederation listPrivateEndpointIds --help
- label: Go
lang: go
source: |
@@ -41541,7 +41557,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation createGroupPrivateNetworkSettingEndpointId --help
+ source: atlas api dataFederation createPrivateEndpointId --help
- label: Go
lang: go
source: |
@@ -41620,7 +41636,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation deleteGroupPrivateNetworkSettingEndpointId --help
+ source: atlas api dataFederation deletePrivateEndpointId --help
- label: Go
lang: go
source: |
@@ -41698,7 +41714,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation getGroupPrivateNetworkSettingEndpointId --help
+ source: atlas api dataFederation getPrivateEndpointId --help
- label: Go
lang: go
source: |
@@ -41938,7 +41954,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics listGroupProcessCollStatMeasurements --help
+ source: atlas api collectionLevelMetrics listProcessMeasurements --help
- label: Go
lang: go
source: |
@@ -42012,7 +42028,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics getGroupProcessCollStatNamespaces --help
+ source: atlas api collectionLevelMetrics getProcessNamespaces --help
- label: Go
lang: go
source: |
@@ -42099,7 +42115,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs listGroupProcessDatabases --help
+ source: atlas api monitoringAndLogs listDatabases --help
- label: Go
lang: go
source: |
@@ -42185,7 +42201,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs getGroupProcessDatabase --help
+ source: atlas api monitoringAndLogs getDatabase --help
- label: Go
lang: go
source: |
@@ -42287,7 +42303,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs getGroupProcessDatabaseMeasurements --help
+ source: atlas api monitoringAndLogs getDatabaseMeasurements --help
- label: Go
lang: go
source: |
@@ -42368,7 +42384,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs listGroupProcessDisks --help
+ source: atlas api monitoringAndLogs listProcessDisks --help
- label: Go
lang: go
source: |
@@ -42454,7 +42470,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs getGroupProcessDisk --help
+ source: atlas api monitoringAndLogs getProcessDisk --help
- label: Go
lang: go
source: |
@@ -42563,7 +42579,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs getGroupProcessDiskMeasurements --help
+ source: atlas api monitoringAndLogs getProcessDiskMeasurements --help
- label: Go
lang: go
source: |
@@ -42667,7 +42683,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs getGroupProcessMeasurements --help
+ source: atlas api monitoringAndLogs getProcessMeasurements --help
- label: Go
lang: go
source: |
@@ -42769,7 +42785,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor listGroupProcessPerformanceAdvisorNamespaces --help
+ source: atlas api performanceAdvisor listPerformanceAdvisorNamespaces --help
- label: Go
lang: go
source: |
@@ -42906,7 +42922,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor listGroupProcessPerformanceAdvisorSlowQueryLogs --help
+ source: atlas api performanceAdvisor listSlowQueryLogs --help
- label: Go
lang: go
source: |
@@ -43032,7 +43048,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor listGroupProcessPerformanceAdvisorSuggestedIndexes --help
+ source: atlas api performanceAdvisor listSuggestedIndexes --help
- label: Go
lang: go
source: |
@@ -43102,7 +43118,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api pushBasedLogExport deleteGroupPushBasedLogExport --help
+ source: atlas api pushBasedLogExport deleteLogExport --help
- label: Go
lang: go
source: |
@@ -43174,7 +43190,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api pushBasedLogExport getGroupPushBasedLogExport --help
+ source: atlas api pushBasedLogExport getLogExport --help
- label: Go
lang: go
source: |
@@ -43254,7 +43270,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api pushBasedLogExport updateGroupPushBasedLogExport --help
+ source: atlas api pushBasedLogExport updateLogExport --help
- label: Go
lang: go
source: |
@@ -43335,7 +43351,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api pushBasedLogExport createGroupPushBasedLogExport --help
+ source: atlas api pushBasedLogExport createLogExport --help
- label: Go
lang: go
source: |
@@ -43420,7 +43436,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters requestGroupSampleDatasetLoad --help
+ source: atlas api clusters requestSampleDatasetLoad --help
- label: Go
lang: go
source: |
@@ -43506,7 +43522,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters getGroupSampleDatasetLoad --help
+ source: atlas api clusters getSampleDatasetLoad --help
- label: Go
lang: go
source: |
@@ -43587,7 +43603,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessInstances listGroupServerlessInstances --help
+ source: atlas api serverlessInstances listServerlessInstances --help
- label: Go
lang: go
source: |
@@ -43678,7 +43694,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessInstances createGroupServerlessInstance --help
+ source: atlas api serverlessInstances createServerlessInstance --help
- label: Go
lang: go
source: |
@@ -43773,7 +43789,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups listGroupServerlessBackupRestoreJobs --help
+ source: atlas api cloudBackups listServerlessRestoreJobs --help
- label: Go
lang: go
source: |
@@ -43866,7 +43882,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups createGroupServerlessBackupRestoreJob --help
+ source: atlas api cloudBackups createServerlessRestoreJob --help
- label: Go
lang: go
source: |
@@ -43964,7 +43980,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupServerlessBackupRestoreJob --help
+ source: atlas api cloudBackups getServerlessRestoreJob --help
- label: Go
lang: go
source: |
@@ -44052,7 +44068,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups listGroupServerlessBackupSnapshots --help
+ source: atlas api cloudBackups listServerlessBackupSnapshots --help
- label: Go
lang: go
source: |
@@ -44147,7 +44163,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupServerlessBackupSnapshot --help
+ source: atlas api cloudBackups getServerlessBackupSnapshot --help
- label: Go
lang: go
source: |
@@ -44229,7 +44245,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor getGroupServerlessPerformanceAdvisorAutoIndexing --help
+ source: atlas api performanceAdvisor getServerlessAutoIndexing --help
- label: Go
lang: go
source: |
@@ -44317,7 +44333,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor setGroupServerlessPerformanceAdvisorAutoIndexing --help
+ source: atlas api performanceAdvisor setServerlessAutoIndexing --help
- label: Go
lang: go
source: |
@@ -44411,7 +44427,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessInstances deleteGroupServerlessInstance --help
+ source: atlas api serverlessInstances deleteServerlessInstance --help
- label: Go
lang: go
source: |
@@ -44502,7 +44518,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessInstances getGroupServerlessInstance --help
+ source: atlas api serverlessInstances getServerlessInstance --help
- label: Go
lang: go
source: |
@@ -44598,7 +44614,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessInstances updateGroupServerlessInstance --help
+ source: atlas api serverlessInstances updateServerlessInstance --help
- label: Go
lang: go
source: |
@@ -45087,7 +45103,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts listGroupServiceAccountAccessList --help
+ source: atlas api serviceAccounts listAccessList --help
- label: Go
lang: go
source: |
@@ -45182,7 +45198,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts createGroupServiceAccountAccessList --help
+ source: atlas api serviceAccounts createAccessList --help
- label: Go
lang: go
source: |
@@ -45272,7 +45288,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts deleteGroupServiceAccountAccessListEntry --help
+ source: atlas api serviceAccounts deleteGroupAccessEntry --help
- label: Go
lang: go
source: |
@@ -45362,7 +45378,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts createGroupServiceAccountSecret --help
+ source: atlas api serviceAccounts createGroupSecret --help
- label: Go
lang: go
source: |
@@ -45448,7 +45464,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts deleteGroupServiceAccountSecret --help
+ source: atlas api serviceAccounts deleteGroupSecret --help
- label: Go
lang: go
source: |
@@ -45734,7 +45750,7 @@ paths:
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/updateGroupSettings
/api/atlas/v2/groups/{groupId}/streams:
get:
- description: Returns all stream instances for the specified project.
+ description: Returns all stream workspaces for the specified project.
operationId: listStreamWorkspaces
parameters:
- $ref: "#/components/parameters/groupId"
@@ -45756,13 +45772,13 @@ paths:
$ref: "#/components/responses/notFound"
"500":
$ref: "#/components/responses/internalServerError"
- summary: Return All Stream Instances in One Project
+ summary: Return All Stream Workspaces in One Project
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams listGroupStreamWorkspaces --help
+ source: atlas api streams listStreamWorkspaces --help
- label: Go
lang: go
source: |
@@ -45810,7 +45826,7 @@ paths:
customMethod: false
verb: listWorkspaces
post:
- description: Creates one stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
+ description: Creates one stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
operationId: createStreamWorkspace
parameters:
- $ref: "#/components/parameters/groupId"
@@ -45819,7 +45835,7 @@ paths:
application/vnd.atlas.2023-02-01+json:
schema:
$ref: "#/components/schemas/StreamsTenant"
- description: Details to create one streams instance in the specified project.
+ description: Details to create one streams workspace in the specified project.
required: true
responses:
"200":
@@ -45839,13 +45855,13 @@ paths:
$ref: "#/components/responses/notFound"
"500":
$ref: "#/components/responses/internalServerError"
- summary: Create One Stream Instance
+ summary: Create One Stream Workspace
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams createGroupStreamWorkspace --help
+ source: atlas api streams createStreamWorkspace --help
- label: Go
lang: go
source: |
@@ -45898,11 +45914,11 @@ paths:
verb: createWorkspace
/api/atlas/v2/groups/{groupId}/streams/{tenantName}:
delete:
- description: Delete one stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
+ description: Delete one stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
operationId: deleteStreamWorkspace
parameters:
- $ref: "#/components/parameters/groupId"
- - description: Human-readable label that identifies the stream instance to delete.
+ - description: Label that identifies the stream workspace to delete.
in: path
name: tenantName
required: true
@@ -45922,13 +45938,13 @@ paths:
$ref: "#/components/responses/notFound"
"500":
$ref: "#/components/responses/internalServerError"
- summary: Delete One Stream Instance
+ summary: Delete One Stream Workspace
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams deleteGroupStreamWorkspace --help
+ source: atlas api streams deleteStreamWorkspace --help
- label: Go
lang: go
source: |
@@ -45976,17 +45992,17 @@ paths:
customMethod: false
verb: deleteWorkspace
get:
- description: Returns the details of one stream instance within the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role.
+ description: Returns the details of one stream workspace within the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role.
operationId: getStreamWorkspace
parameters:
- $ref: "#/components/parameters/groupId"
- - description: Human-readable label that identifies the stream instance to return.
+ - description: Label that identifies the stream workspace to return.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Flag to indicate whether connections information should be included in the stream instance.
+ - description: Flag to indicate whether connections information should be included in the stream workspace.
in: query
name: includeConnections
schema:
@@ -46011,13 +46027,13 @@ paths:
$ref: "#/components/responses/notFound"
"500":
$ref: "#/components/responses/internalServerError"
- summary: Return One Stream Instance
+ summary: Return One Stream Workspace
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams getGroupStreamWorkspace --help
+ source: atlas api streams getStreamWorkspace --help
- label: Go
lang: go
source: |
@@ -46065,11 +46081,11 @@ paths:
customMethod: false
verb: getWorkspace
patch:
- description: Update one stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
+ description: Update one stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
operationId: updateStreamWorkspace
parameters:
- $ref: "#/components/parameters/groupId"
- - description: Human-readable label that identifies the stream instance to update.
+ - description: Label that identifies the stream workspace to update.
in: path
name: tenantName
required: true
@@ -46080,7 +46096,7 @@ paths:
application/vnd.atlas.2023-02-01+json:
schema:
$ref: "#/components/schemas/StreamsDataProcessRegion"
- description: Details of the new data process region to update in the streams instance.
+ description: Details of the new data process region to update in the streams workspace.
required: true
responses:
"200":
@@ -46100,13 +46116,13 @@ paths:
$ref: "#/components/responses/notFound"
"500":
$ref: "#/components/responses/internalServerError"
- summary: Update One Stream Instance
+ summary: Update One Stream Workspace
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams updateGroupStreamWorkspace --help
+ source: atlas api streams updateStreamWorkspace --help
- label: Go
lang: go
source: |
@@ -46159,7 +46175,7 @@ paths:
verb: updateWorkspace
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs:
get:
- description: 'Downloads the audit logs for the specified Atlas Streams Processing instance. By default, logs cover periods of 30 days. To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".'
+ description: 'Downloads the audit logs for the specified Atlas Streams Processing workspace. By default, logs cover periods of 30 days. To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".'
operationId: downloadAuditLogs
parameters:
- $ref: "#/components/parameters/groupId"
@@ -46179,7 +46195,7 @@ paths:
format: int64
pattern: "1199145600"
type: integer
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
@@ -46207,13 +46223,13 @@ paths:
$ref: "#/components/responses/conflict"
"500":
$ref: "#/components/responses/internalServerError"
- summary: Download Audit Logs for One Atlas Stream Processing Instance
+ summary: Download Audit Logs for One Atlas Stream Processing Workspace
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams downloadGroupStreamAuditLogs --help
+ source: atlas api streams downloadAuditLogs --help
- label: Go
lang: go
source: |
@@ -46262,13 +46278,13 @@ paths:
verb: download
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections:
get:
- description: Returns all connections of the stream instance for the specified project.To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role.
+ description: Returns all connections of the stream workspace for the specified project.To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role.
operationId: listStreamConnections
parameters:
- $ref: "#/components/parameters/groupId"
- $ref: "#/components/parameters/itemsPerPage"
- $ref: "#/components/parameters/pageNum"
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
@@ -46290,13 +46306,13 @@ paths:
$ref: "#/components/responses/notFound"
"500":
$ref: "#/components/responses/internalServerError"
- summary: Return All Connections of the Stream Instances
+ summary: Return All Connections of the Stream Workspaces
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams listGroupStreamConnections --help
+ source: atlas api streams listStreamConnections --help
- label: Go
lang: go
source: |
@@ -46341,11 +46357,11 @@ paths:
2023-09-11: The MongoDB Atlas Streams Processing API is now exposed as part of private preview, but is subject to change until GA.
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/listGroupStreamConnections
post:
- description: Creates one connection for a stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Owner or Project Stream Processing Owner role.
+ description: Creates one connection for a stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Owner or Project Stream Processing Owner role.
operationId: createStreamConnection
parameters:
- $ref: "#/components/parameters/groupId"
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
@@ -46356,7 +46372,7 @@ paths:
application/vnd.atlas.2023-02-01+json:
schema:
$ref: "#/components/schemas/StreamsConnection"
- description: Details to create one connection for a streams instance in the specified project.
+ description: Details to create one connection for a streams workspace in the specified project.
required: true
responses:
"200":
@@ -46384,7 +46400,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams createGroupStreamConnection --help
+ source: atlas api streams createStreamConnection --help
- label: Go
lang: go
source: |
@@ -46434,17 +46450,17 @@ paths:
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/createGroupStreamConnection
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}:
delete:
- description: Delete one connection of the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Delete one connection of the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: deleteStreamConnection
parameters:
- $ref: "#/components/parameters/groupId"
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream connection.
+ - description: Label that identifies the stream connection.
in: path
name: connectionName
required: true
@@ -46472,7 +46488,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams deleteGroupStreamConnection --help
+ source: atlas api streams deleteStreamConnection --help
- label: Go
lang: go
source: |
@@ -46517,17 +46533,17 @@ paths:
2023-09-11: The MongoDB Atlas Streams Processing API is now exposed as part of private preview, but is subject to change until GA.
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/deleteGroupStreamConnection
get:
- description: Returns the details of one stream connection within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Read Only role.
+ description: Returns the details of one stream connection within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Read Only role.
operationId: getStreamConnection
parameters:
- $ref: "#/components/parameters/groupId"
- - description: Human-readable label that identifies the stream instance to return.
+ - description: Label that identifies the stream workspace to return.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream connection to return.
+ - description: Label that identifies the stream connection to return.
in: path
name: connectionName
required: true
@@ -46557,7 +46573,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams getGroupStreamConnection --help
+ source: atlas api streams getStreamConnection --help
- label: Go
lang: go
source: |
@@ -46602,17 +46618,17 @@ paths:
2023-09-11: The MongoDB Atlas Streams Processing API is now exposed as part of private preview, but is subject to change until GA.
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/getGroupStreamConnection
patch:
- description: Update one connection for the specified stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Update one connection for the specified stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: updateStreamConnection
parameters:
- $ref: "#/components/parameters/groupId"
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream connection.
+ - description: Label that identifies the stream connection.
in: path
name: connectionName
required: true
@@ -46623,7 +46639,7 @@ paths:
application/vnd.atlas.2023-02-01+json:
schema:
$ref: "#/components/schemas/StreamsConnection"
- description: Details to update one connection for a streams instance in the specified project.
+ description: Details to update one connection for a streams workspace in the specified project.
required: true
responses:
"200":
@@ -46651,7 +46667,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams updateGroupStreamConnection --help
+ source: atlas api streams updateStreamConnection --help
- label: Go
lang: go
source: |
@@ -46701,11 +46717,11 @@ paths:
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/updateGroupStreamConnection
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor:
post:
- description: Create one Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Create one Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: createStreamProcessor
parameters:
- $ref: "#/components/parameters/groupId"
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
@@ -46744,7 +46760,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams createGroupStreamProcessor --help
+ source: atlas api streams createStreamProcessor --help
- label: Go
lang: go
source: |
@@ -46792,17 +46808,17 @@ paths:
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/createGroupStreamProcessor
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:
delete:
- description: Delete a Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Delete a Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: deleteStreamProcessor
parameters:
- $ref: "#/components/parameters/groupId"
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream processor.
+ - description: Label that identifies the stream processor.
in: path
name: processorName
required: true
@@ -46828,7 +46844,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams deleteGroupStreamProcessor --help
+ source: atlas api streams deleteStreamProcessor --help
- label: Go
lang: go
source: |
@@ -46871,17 +46887,17 @@ paths:
-X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/deleteGroupStreamProcessor
get:
- description: Get one Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Get one Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: getStreamProcessor
parameters:
- $ref: "#/components/parameters/groupId"
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream processor.
+ - description: Label that identifies the stream processor.
in: path
name: processorName
required: true
@@ -46913,7 +46929,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams getGroupStreamProcessor --help
+ source: atlas api streams getStreamProcessor --help
- label: Go
lang: go
source: |
@@ -46956,17 +46972,17 @@ paths:
-X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/getGroupStreamProcessor
patch:
- description: Modify one existing Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Modify one existing Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: updateStreamProcessor
parameters:
- $ref: "#/components/parameters/groupId"
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream processor.
+ - description: Label that identifies the stream processor.
in: path
name: processorName
required: true
@@ -47003,7 +47019,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams updateGroupStreamProcessor --help
+ source: atlas api streams updateStreamProcessor --help
- label: Go
lang: go
source: |
@@ -47051,17 +47067,17 @@ paths:
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/updateGroupStreamProcessor
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start:
post:
- description: Start a Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Start a Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: startStreamProcessor
parameters:
- $ref: "#/components/parameters/groupId"
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream processor.
+ - description: Label that identifies the stream processor.
in: path
name: processorName
required: true
@@ -47087,7 +47103,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams startGroupStreamProcessor --help
+ source: atlas api streams startStreamProcessor --help
- label: Go
lang: go
source: |
@@ -47135,17 +47151,17 @@ paths:
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/startGroupStreamProcessor
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:startWith:
post:
- description: Start a Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Start a Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: startStreamProcessorWith
parameters:
- $ref: "#/components/parameters/groupId"
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream processor.
+ - description: Label that identifies the stream processor.
in: path
name: processorName
required: true
@@ -47178,7 +47194,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams startGroupStreamProcessorWith --help
+ source: atlas api streams startStreamProcessorWith --help
- label: Go
lang: go
source: |
@@ -47226,17 +47242,17 @@ paths:
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/startGroupStreamProcessorWith
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop:
post:
- description: Stop a Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Stop a Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: stopStreamProcessor
parameters:
- $ref: "#/components/parameters/groupId"
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream processor.
+ - description: Label that identifies the stream processor.
in: path
name: processorName
required: true
@@ -47262,7 +47278,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams stopGroupStreamProcessor --help
+ source: atlas api streams stopStreamProcessor --help
- label: Go
lang: go
source: |
@@ -47310,14 +47326,14 @@ paths:
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/stopGroupStreamProcessor
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors:
get:
- description: Returns all Stream Processors within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Returns all Stream Processors within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: getStreamProcessors
parameters:
- $ref: "#/components/parameters/groupId"
- $ref: "#/components/parameters/itemsPerPage"
- $ref: "#/components/parameters/pageNum"
- $ref: "#/components/parameters/includeCount"
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
@@ -47344,13 +47360,13 @@ paths:
$ref: "#/components/responses/notFound"
"500":
$ref: "#/components/responses/internalServerError"
- summary: Return All Stream Processors in One Stream Instance
+ summary: Return All Stream Processors in One Stream Workspace
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams getGroupStreamProcessors --help
+ source: atlas api streams getStreamProcessors --help
- label: Go
lang: go
source: |
@@ -47432,7 +47448,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams getGroupStreamAccountDetails --help
+ source: atlas api streams getAccountDetails --help
- label: Go
lang: go
source: |
@@ -47505,7 +47521,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams listGroupStreamActiveVpcPeeringConnections --help
+ source: atlas api streams listActivePeeringConnections --help
- label: Go
lang: go
source: |
@@ -47577,7 +47593,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams listGroupStreamPrivateLinkConnections --help
+ source: atlas api streams listPrivateLinkConnections --help
- label: Go
lang: go
source: |
@@ -47659,7 +47675,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams createGroupStreamPrivateLinkConnection --help
+ source: atlas api streams createPrivateLinkConnection --help
- label: Go
lang: go
source: |
@@ -47739,7 +47755,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams deleteGroupStreamPrivateLinkConnection --help
+ source: atlas api streams deletePrivateLinkConnection --help
- label: Go
lang: go
source: |
@@ -47816,7 +47832,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams getGroupStreamPrivateLinkConnection --help
+ source: atlas api streams getPrivateLinkConnection --help
- label: Go
lang: go
source: |
@@ -47894,7 +47910,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams listGroupStreamVpcPeeringConnections --help
+ source: atlas api streams listVpcPeeringConnections --help
- label: Go
lang: go
source: |
@@ -47968,7 +47984,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams deleteGroupStreamVpcPeeringConnection --help
+ source: atlas api streams deleteVpcPeeringConnection --help
- label: Go
lang: go
source: |
@@ -48049,7 +48065,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams acceptGroupStreamVpcPeeringConnection --help
+ source: atlas api streams acceptVpcPeeringConnection --help
- label: Go
lang: go
source: |
@@ -48127,7 +48143,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams rejectGroupStreamVpcPeeringConnection --help
+ source: atlas api streams rejectVpcPeeringConnection --help
- label: Go
lang: go
source: |
@@ -48175,7 +48191,7 @@ paths:
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/rejectGroupStreamVpcPeeringConnection
/api/atlas/v2/groups/{groupId}/streams:withSampleConnections:
post:
- description: Creates one stream instance in the specified project with sample connections. To use this resource the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
+ description: Creates one stream workspace in the specified project with sample connections. To use this resource the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
operationId: withStreamSampleConnections
parameters:
- $ref: "#/components/parameters/groupId"
@@ -48184,7 +48200,7 @@ paths:
application/vnd.atlas.2024-08-05+json:
schema:
$ref: "#/components/schemas/TenantWithSampleConnections"
- description: Details to create one streams instance in the specified project.
+ description: Details to create one streams workspace in the specified project.
required: true
responses:
"200":
@@ -48204,13 +48220,13 @@ paths:
$ref: "#/components/responses/notFound"
"500":
$ref: "#/components/responses/internalServerError"
- summary: Create One Stream Instance with Sample Connections
+ summary: Create One Stream Workspace with Sample Connections
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams withGroupStreamSampleConnections --help
+ source: atlas api streams withStreamSampleConnections --help
- label: Go
lang: go
source: |
@@ -48709,7 +48725,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api ldapConfiguration getGroupUserSecurity --help
+ source: atlas api ldapConfiguration getUserSecurity --help
- label: Go
lang: go
source: |
@@ -48790,7 +48806,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api ldapConfiguration updateGroupUserSecurity --help
+ source: atlas api ldapConfiguration updateUserSecurity --help
- label: Go
lang: go
source: |
@@ -48867,7 +48883,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api x509Authentication disableGroupUserSecurityCustomerX509 --help
+ source: atlas api x509Authentication disableSecurityCustomerX509 --help
- label: Go
lang: go
source: |
@@ -48940,7 +48956,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api ldapConfiguration deleteGroupUserSecurityLdapUserToDnMapping --help
+ source: atlas api ldapConfiguration deleteLdapUserMapping --help
- label: Go
lang: go
source: |
@@ -49019,7 +49035,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api ldapConfiguration verifyGroupUserSecurityLdap --help
+ source: atlas api ldapConfiguration verifyUserSecurityLdap --help
- label: Go
lang: go
source: |
@@ -49102,7 +49118,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api ldapConfiguration getGroupUserSecurityLdapVerify --help
+ source: atlas api ldapConfiguration getUserSecurityVerify --help
- label: Go
lang: go
source: |
@@ -49604,7 +49620,7 @@ paths:
--header "Content-Type: application/json" \
-X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \
-d '{ }'
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/updateGroupUserRoles
/api/atlas/v2/groups/{groupId}/users/{userId}:addRole:
post:
@@ -50822,7 +50838,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api programmaticApiKeys listOrgApiKeyAccessListEntries --help
+ source: atlas api programmaticApiKeys listOrgAccessEntries --help
- label: Go
lang: go
source: |
@@ -50917,7 +50933,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api programmaticApiKeys createOrgApiKeyAccessListEntry --help
+ source: atlas api programmaticApiKeys createOrgAccessEntry --help
- label: Go
lang: go
source: |
@@ -51012,7 +51028,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api programmaticApiKeys deleteOrgApiKeyAccessListEntry --help
+ source: atlas api programmaticApiKeys deleteAccessEntry --help
- label: Go
lang: go
source: |
@@ -51102,7 +51118,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api programmaticApiKeys getOrgApiKeyAccessListEntry --help
+ source: atlas api programmaticApiKeys getOrgAccessEntry --help
- label: Go
lang: go
source: |
@@ -51184,7 +51200,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api invoices createOrgBillingCostExplorerUsageProcess --help
+ source: atlas api invoices createCostExplorerProcess --help
- label: Go
lang: go
source: |
@@ -51288,7 +51304,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api invoices getOrgBillingCostExplorerUsage --help
+ source: atlas api invoices getCostExplorerUsage --help
- label: Go
lang: go
source: |
@@ -51567,7 +51583,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication getOrgFederationSettings --help
+ source: atlas api federatedAuthentication getFederationSettings --help
- label: Go
lang: go
source: |
@@ -51792,7 +51808,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true"
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Organizations/operation/listOrgInvites
patch:
deprecated: true
@@ -51882,7 +51898,7 @@ paths:
--header "Content-Type: application/json" \
-X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \
-d '{ }'
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Organizations/operation/updateOrgInvites
post:
deprecated: true
@@ -51972,7 +51988,7 @@ paths:
--header "Content-Type: application/json" \
-X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \
-d '{ }'
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Organizations/operation/createOrgInvite
/api/atlas/v2/orgs/{orgId}/invites/{invitationId}:
delete:
@@ -52056,7 +52072,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}"
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Organizations/operation/deleteOrgInvite
get:
deprecated: true
@@ -52144,7 +52160,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true"
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Organizations/operation/getOrgInvite
patch:
deprecated: true
@@ -52241,7 +52257,7 @@ paths:
--header "Content-Type: application/json" \
-X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \
-d '{ }'
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Organizations/operation/updateOrgInviteById
x-xgen-method-verb-override:
customMethod: false
@@ -52322,7 +52338,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api invoices listOrgInvoices --help
+ source: atlas api invoices listInvoices --help
- label: Go
lang: go
source: |
@@ -52414,7 +52430,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api invoices getOrgInvoice --help
+ source: atlas api invoices getInvoice --help
- label: Go
lang: go
source: |
@@ -52500,7 +52516,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api invoices getOrgInvoiceCsv --help
+ source: atlas api invoices getInvoiceCsv --help
- label: Go
lang: go
source: |
@@ -52588,7 +52604,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api invoices searchOrgInvoiceLineItems --help
+ source: atlas api invoices searchInvoiceLineItems --help
- label: Go
lang: go
source: |
@@ -52658,7 +52674,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api invoices listOrgInvoicePending --help
+ source: atlas api invoices listInvoicePending --help
- label: Go
lang: go
source: |
@@ -52734,7 +52750,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudMigrationService listOrgLiveMigrationAvailableProjects --help
+ source: atlas api cloudMigrationService listAvailableProjects --help
- label: Go
lang: go
source: |
@@ -52804,7 +52820,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudMigrationService deleteOrgLiveMigrationLinkTokens --help
+ source: atlas api cloudMigrationService deleteLinkTokens --help
- label: Go
lang: go
source: |
@@ -52882,7 +52898,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudMigrationService createOrgLiveMigrationLinkToken --help
+ source: atlas api cloudMigrationService createLinkToken --help
- label: Go
lang: go
source: |
@@ -52968,7 +52984,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api resourcePolicies getOrgNonCompliantResources --help
+ source: atlas api resourcePolicies getNonCompliantResources --help
- label: Go
lang: go
source: |
@@ -53500,7 +53516,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api resourcePolicies validateOrgResourcePolicies --help
+ source: atlas api resourcePolicies validateResourcePolicies --help
- label: Go
lang: go
source: |
@@ -53984,7 +54000,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts listOrgServiceAccountAccessList --help
+ source: atlas api serviceAccounts listOrgAccessList --help
- label: Go
lang: go
source: |
@@ -54079,7 +54095,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts createOrgServiceAccountAccessList --help
+ source: atlas api serviceAccounts createOrgAccessList --help
- label: Go
lang: go
source: |
@@ -54169,7 +54185,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts deleteOrgServiceAccountAccessListEntry --help
+ source: atlas api serviceAccounts deleteOrgAccessEntry --help
- label: Go
lang: go
source: |
@@ -54255,7 +54271,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts getOrgServiceAccountGroups --help
+ source: atlas api serviceAccounts getServiceAccountGroups --help
- label: Go
lang: go
source: |
@@ -54342,7 +54358,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts createOrgServiceAccountSecret --help
+ source: atlas api serviceAccounts createOrgSecret --help
- label: Go
lang: go
source: |
@@ -54428,7 +54444,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts deleteOrgServiceAccountSecret --help
+ source: atlas api serviceAccounts deleteOrgSecret --help
- label: Go
lang: go
source: |
@@ -55116,7 +55132,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api mongoDbCloudUsers listOrgTeamUsers --help
+ source: atlas api mongoDbCloudUsers listTeamUsers --help
- label: Go
lang: go
source: |
@@ -55212,7 +55228,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api teams addOrgTeamUsers --help
+ source: atlas api teams addTeamUsers --help
- label: Go
lang: go
source: |
@@ -55257,7 +55273,7 @@ paths:
--header "Content-Type: application/json" \
-X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \
-d '{ }'
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Teams/operation/addOrgTeamUsers
x-xgen-method-verb-override:
customMethod: "True"
@@ -55311,7 +55327,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api teams removeOrgTeamUserFromTeam --help
+ source: atlas api teams removeUserFromTeam --help
- label: Go
lang: go
source: |
@@ -55352,7 +55368,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}"
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Teams/operation/removeOrgTeamUserFromTeam
x-xgen-method-verb-override:
customMethod: "True"
@@ -55588,7 +55604,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api teams getOrgTeamByName --help
+ source: atlas api teams getTeamByName --help
- label: Go
lang: go
source: |
@@ -56170,7 +56186,7 @@ paths:
--header "Content-Type: application/json" \
-X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \
-d '{ }'
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Organizations/operation/updateOrgUserRoles
/api/atlas/v2/orgs/{orgId}/users/{userId}:addRole:
post:
@@ -56226,7 +56242,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api mongoDbCloudUsers addOrgUserRole --help
+ source: atlas api mongoDbCloudUsers addOrgRole --help
- label: Go
lang: go
source: |
@@ -56324,7 +56340,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api mongoDbCloudUsers removeOrgUserRole --help
+ source: atlas api mongoDbCloudUsers removeOrgRole --help
- label: Go
lang: go
source: |
@@ -56396,7 +56412,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api root listControlPlaneIpAddresses --help
+ source: atlas api root listControlPlaneAddresses --help
- label: Go
lang: go
source: |
@@ -56523,7 +56539,7 @@ paths:
--header "Content-Type: application/json" \
-X POST "https://cloud.mongodb.com/api/atlas/v2/users" \
-d '{ }'
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/MongoDB-Cloud-Users/operation/createUser
/api/atlas/v2/users/{userId}:
get:
@@ -56606,6 +56622,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true"
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/MongoDB-Cloud-Users/operation/getUser
/api/atlas/v2/users/byName/{userName}:
get:
@@ -56686,7 +56703,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true"
- x-sunset: 2026-07-31
+ x-sunset: 2026-09-15
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/MongoDB-Cloud-Users/operation/getUserByName
security:
- ServiceAccounts: []
@@ -56799,7 +56816,7 @@ tags:
name: Shared-Tier Restore Jobs
- description: Returns and requests to download shared-tier database deployment snapshots.
name: Shared-Tier Snapshots
- - description: Returns, adds, edits, and removes Streams Instances. This resource requires your project ID.
+ - description: Returns, adds, edits, and removes Streams Workspaces. This resource requires your project ID.
name: Streams
- description: Returns, adds, edits, or removes teams.
name: Teams
diff --git a/openapi/atlas-api.yaml b/openapi/atlas-api.yaml
index 515c74d5..37c5ad28 100644
--- a/openapi/atlas-api.yaml
+++ b/openapi/atlas-api.yaml
@@ -340,9 +340,13 @@ components:
- EU_CENTRAL_2
- SA_EAST_1
- AP_EAST_1
+ - AP_EAST_2
- AP_SOUTHEAST_2
- AP_SOUTHEAST_3
- AP_SOUTHEAST_4
+ - AP_SOUTHEAST_5
+ - AP_SOUTHEAST_6
+ - AP_SOUTHEAST_7
- AP_NORTHEAST_1
- AP_NORTHEAST_2
- AP_NORTHEAST_3
@@ -358,8 +362,6 @@ components:
- EU_SOUTH_2
- IL_CENTRAL_1
- CA_WEST_1
- - AP_SOUTHEAST_5
- - AP_SOUTHEAST_7
- MX_CENTRAL_1
- GLOBAL
- US_GOV_WEST_1
@@ -439,6 +441,7 @@ components:
- EU_CENTRAL_1
- EU_CENTRAL_2
- AP_EAST_1
+ - AP_EAST_2
- AP_NORTHEAST_1
- AP_NORTHEAST_2
- AP_NORTHEAST_3
@@ -446,6 +449,9 @@ components:
- AP_SOUTHEAST_2
- AP_SOUTHEAST_3
- AP_SOUTHEAST_4
+ - AP_SOUTHEAST_5
+ - AP_SOUTHEAST_6
+ - AP_SOUTHEAST_7
- AP_SOUTH_1
- AP_SOUTH_2
- SA_EAST_1
@@ -458,8 +464,6 @@ components:
- EU_SOUTH_2
- IL_CENTRAL_1
- CA_WEST_1
- - AP_SOUTHEAST_5
- - AP_SOUTHEAST_7
- MX_CENTRAL_1
- GLOBAL
externalDocs:
@@ -809,6 +813,7 @@ components:
- EU_CENTRAL_1
- EU_CENTRAL_2
- AP_EAST_1
+ - AP_EAST_2
- AP_NORTHEAST_1
- AP_NORTHEAST_2
- AP_NORTHEAST_3
@@ -816,6 +821,9 @@ components:
- AP_SOUTHEAST_2
- AP_SOUTHEAST_3
- AP_SOUTHEAST_4
+ - AP_SOUTHEAST_5
+ - AP_SOUTHEAST_6
+ - AP_SOUTHEAST_7
- AP_SOUTH_1
- AP_SOUTH_2
- SA_EAST_1
@@ -828,8 +836,6 @@ components:
- EU_SOUTH_2
- IL_CENTRAL_1
- CA_WEST_1
- - AP_SOUTHEAST_5
- - AP_SOUTHEAST_7
- MX_CENTRAL_1
- GLOBAL
title: AWS Regions
@@ -954,6 +960,7 @@ components:
- EU_CENTRAL_1
- EU_CENTRAL_2
- AP_EAST_1
+ - AP_EAST_2
- AP_NORTHEAST_1
- AP_NORTHEAST_2
- AP_NORTHEAST_3
@@ -961,6 +968,9 @@ components:
- AP_SOUTHEAST_2
- AP_SOUTHEAST_3
- AP_SOUTHEAST_4
+ - AP_SOUTHEAST_5
+ - AP_SOUTHEAST_6
+ - AP_SOUTHEAST_7
- AP_SOUTH_1
- AP_SOUTH_2
- SA_EAST_1
@@ -973,8 +983,6 @@ components:
- EU_SOUTH_2
- IL_CENTRAL_1
- CA_WEST_1
- - AP_SOUTHEAST_5
- - AP_SOUTHEAST_7
- MX_CENTRAL_1
- GLOBAL
title: AWS Regions
@@ -1224,13 +1232,6 @@ components:
$ref: '#/components/schemas/BaseCloudProviderInstanceSize'
minInstanceSize:
$ref: '#/components/schemas/BaseCloudProviderInstanceSize'
- predictiveEnabled:
- description: |-
- Flag that indicates whether predictive instance size auto-scaling is enabled.
-
- - Set to `true` to enable predictive instance size auto-scaling. MongoDB Cloud requires **replicationSpecs[n].regionConfigs[m].autoScaling.compute.enabled** to be `true` in order to enable this feature.
- - Set to `false` to disable predictive instance size auto-scaling.
- type: boolean
scaleDownEnabled:
description: Flag that indicates whether the instance size may scale down via reactive auto-scaling. MongoDB Cloud requires this parameter if **replicationSpecs[n].regionConfigs[m].autoScaling.compute.enabled** is `true`. If you enable this option, specify a value for **replicationSpecs[n].regionConfigs[m].autoScaling.compute.minInstanceSize**.
type: boolean
@@ -1643,6 +1644,8 @@ components:
- days
- requests
- 1000 requests
+ - tokens
+ - pixels
- GB seconds
- GB hours
- GB days
@@ -3368,6 +3371,8 @@ components:
- days
- requests
- 1000 requests
+ - tokens
+ - pixels
- GB seconds
- GB hours
- GB days
@@ -5005,6 +5010,7 @@ components:
- EU_CENTRAL_1
- EU_CENTRAL_2
- AP_EAST_1
+ - AP_EAST_2
- AP_NORTHEAST_1
- AP_NORTHEAST_2
- AP_NORTHEAST_3
@@ -5012,6 +5018,9 @@ components:
- AP_SOUTHEAST_2
- AP_SOUTHEAST_3
- AP_SOUTHEAST_4
+ - AP_SOUTHEAST_5
+ - AP_SOUTHEAST_6
+ - AP_SOUTHEAST_7
- AP_SOUTH_1
- AP_SOUTH_2
- SA_EAST_1
@@ -5024,8 +5033,6 @@ components:
- EU_SOUTH_2
- IL_CENTRAL_1
- CA_WEST_1
- - AP_SOUTHEAST_5
- - AP_SOUTHEAST_7
- MX_CENTRAL_1
- GLOBAL
title: AWS Regions
@@ -6250,6 +6257,7 @@ components:
- GCP_USAGE_REPORTED
- VERCEL_USAGE_REPORTED
- BECAME_PAYING_ORG
+ - BECAME_LINKED_ORG
- NEW_LINKED_ORG
- UNLINKED_ORG
- ORG_LINKED_TO_PAYING_ORG
@@ -6279,6 +6287,7 @@ components:
- PENDING_DEAL_APPLIED
- PENDING_DEAL_ACTIVATION_FAILED
- EVERGREEN_PRIORITY_MODIFIED
+ - CROSS_ORG_OPERATION_TICKET_TRACKING
example: CHARGE_SUCCEEDED
title: Billing Event Types
type: string
@@ -7311,7 +7320,7 @@ components:
$ref: '#/components/schemas/DatabaseUserRole'
type: array
scopes:
- description: List that contains clusters, MongoDB Atlas Data Lakes, and MongoDB Atlas Streams Instances that this database user can access. If omitted, MongoDB Cloud grants the database user access to all the clusters, MongoDB Atlas Data Lakes, and MongoDB Atlas Streams Instances in the project.
+ description: List that contains clusters, MongoDB Atlas Data Lakes, and MongoDB Atlas Streams Workspaces that this database user can access. If omitted, MongoDB Cloud grants the database user access to all the clusters, MongoDB Atlas Data Lakes, and MongoDB Atlas Streams Workspaces in the project.
items:
$ref: '#/components/schemas/UserScope'
type: array
@@ -8120,6 +8129,7 @@ components:
- EU_CENTRAL_1
- EU_CENTRAL_2
- AP_EAST_1
+ - AP_EAST_2
- AP_NORTHEAST_1
- AP_NORTHEAST_2
- AP_NORTHEAST_3
@@ -8127,6 +8137,9 @@ components:
- AP_SOUTHEAST_2
- AP_SOUTHEAST_3
- AP_SOUTHEAST_4
+ - AP_SOUTHEAST_5
+ - AP_SOUTHEAST_6
+ - AP_SOUTHEAST_7
- AP_SOUTH_1
- AP_SOUTH_2
- SA_EAST_1
@@ -8139,8 +8152,6 @@ components:
- EU_SOUTH_2
- IL_CENTRAL_1
- CA_WEST_1
- - AP_SOUTHEAST_5
- - AP_SOUTHEAST_7
- MX_CENTRAL_1
- GLOBAL
title: AWS Regions
@@ -8318,6 +8329,7 @@ components:
- EU_CENTRAL_1
- EU_CENTRAL_2
- AP_EAST_1
+ - AP_EAST_2
- AP_NORTHEAST_1
- AP_NORTHEAST_2
- AP_NORTHEAST_3
@@ -8325,6 +8337,9 @@ components:
- AP_SOUTHEAST_2
- AP_SOUTHEAST_3
- AP_SOUTHEAST_4
+ - AP_SOUTHEAST_5
+ - AP_SOUTHEAST_6
+ - AP_SOUTHEAST_7
- AP_SOUTH_1
- AP_SOUTH_2
- SA_EAST_1
@@ -8337,8 +8352,6 @@ components:
- EU_SOUTH_2
- IL_CENTRAL_1
- CA_WEST_1
- - AP_SOUTHEAST_5
- - AP_SOUTHEAST_7
- MX_CENTRAL_1
- GLOBAL
title: AWS Regions
@@ -8726,14 +8739,6 @@ components:
- Set to `true` to enable instance size reactive auto-scaling. If enabled, you must specify a value for **providerSettings.autoScaling.compute.maxInstanceSize**.
- Set to `false` to disable instance size reactive auto-scaling.
type: boolean
- predictiveEnabled:
- default: false
- description: |-
- Flag that indicates whether predictive instance size auto-scaling is enabled.
-
- - Set to `true` to enable predictive instance size auto-scaling. MongoDB Cloud requires **autoScaling.compute.enabled** is `true` in order to enable this feature.
- - Set to `false` to disable predictive instance size auto-scaling.
- type: boolean
scaleDownEnabled:
default: false
description: Flag that indicates whether the cluster tier can scale down via reactive auto-scaling. This is required if **autoScaling.compute.enabled** is `true`. If you enable this option, specify a value for **providerSettings.autoScaling.compute.minInstanceSize**.
@@ -12963,11 +12968,17 @@ components:
- CPS_EXPORT_SUCCESSFUL
- CPS_RESTORE_FAILED
- CPS_EXPORT_FAILED
+ - CPS_COLLECTION_RESTORE_SUCCESSFUL
+ - CPS_COLLECTION_RESTORE_FAILED
+ - CPS_COLLECTION_RESTORE_PARTIAL_SUCCESS
+ - CPS_COLLECTION_RESTORE_CANCELED
- CPS_AUTO_EXPORT_FAILED
- CPS_SNAPSHOT_DOWNLOAD_REQUEST_FAILED
- CPS_OPLOG_CAUGHT_UP
title: Cps Backup Event Types
type: string
+ x-xgen-IPA-exception:
+ xgen-IPA-123-allowable-enum-values-should-not-exceed-20: Schema values all related to CPS backup events.
- enum:
- CPS_DATA_PROTECTION_ENABLE_REQUESTED
- CPS_DATA_PROTECTION_ENABLED
@@ -12982,6 +12993,7 @@ components:
- FTS_INDEX_DELETION_FAILED
- FTS_INDEX_BUILD_COMPLETE
- FTS_INDEX_BUILD_FAILED
+ - FTS_INDEX_STALE
- FTS_INDEXES_RESTORE_FAILED
- FTS_INDEXES_SYNONYM_MAPPING_INVALID
title: FTS Index Audit Types
@@ -13052,6 +13064,7 @@ components:
- PREDICTIVE_COMPUTE_AUTO_SCALE_INITIATED_BASE
- PREDICTIVE_COMPUTE_AUTO_SCALE_MAX_INSTANCE_SIZE_FAIL_BASE
- PREDICTIVE_COMPUTE_AUTO_SCALE_OPLOG_FAIL_BASE
+ - CLUSTER_AUTO_SHARDING_INITIATED
title: NDS Auto Scaling Audit Types
type: string
- enum:
@@ -13170,12 +13183,18 @@ components:
- CPS_EXPORT_SUCCESSFUL
- CPS_RESTORE_FAILED
- CPS_EXPORT_FAILED
+ - CPS_COLLECTION_RESTORE_SUCCESSFUL
+ - CPS_COLLECTION_RESTORE_FAILED
+ - CPS_COLLECTION_RESTORE_PARTIAL_SUCCESS
+ - CPS_COLLECTION_RESTORE_CANCELED
- CPS_AUTO_EXPORT_FAILED
- CPS_SNAPSHOT_DOWNLOAD_REQUEST_FAILED
- CPS_OPLOG_BEHIND
- CPS_OPLOG_CAUGHT_UP
title: Cps Backup Event Types
type: string
+ x-xgen-IPA-exception:
+ xgen-IPA-123-allowable-enum-values-should-not-exceed-20: Schema values all related to CPS backup events.
- enum:
- AWS_ENCRYPTION_KEY_NEEDS_ROTATION
- AZURE_ENCRYPTION_KEY_NEEDS_ROTATION
@@ -13189,6 +13208,7 @@ components:
- FTS_INDEX_DELETION_FAILED
- FTS_INDEX_BUILD_COMPLETE
- FTS_INDEX_BUILD_FAILED
+ - FTS_INDEX_STALE
- FTS_INDEXES_RESTORE_FAILED
- FTS_INDEXES_SYNONYM_MAPPING_INVALID
title: FTS Index Audit Types
@@ -13273,6 +13293,7 @@ components:
- PREDICTIVE_COMPUTE_AUTO_SCALE_INITIATED_BASE
- PREDICTIVE_COMPUTE_AUTO_SCALE_MAX_INSTANCE_SIZE_FAIL_BASE
- PREDICTIVE_COMPUTE_AUTO_SCALE_OPLOG_FAIL_BASE
+ - CLUSTER_AUTO_SHARDING_INITIATED
title: NDS Auto Scaling Audit Types
type: string
- enum:
@@ -13438,12 +13459,18 @@ components:
- CPS_EXPORT_SUCCESSFUL
- CPS_RESTORE_FAILED
- CPS_EXPORT_FAILED
+ - CPS_COLLECTION_RESTORE_SUCCESSFUL
+ - CPS_COLLECTION_RESTORE_FAILED
+ - CPS_COLLECTION_RESTORE_PARTIAL_SUCCESS
+ - CPS_COLLECTION_RESTORE_CANCELED
- CPS_AUTO_EXPORT_FAILED
- CPS_SNAPSHOT_DOWNLOAD_REQUEST_FAILED
- CPS_OPLOG_BEHIND
- CPS_OPLOG_CAUGHT_UP
title: Cps Backup Event Types
type: string
+ x-xgen-IPA-exception:
+ xgen-IPA-123-allowable-enum-values-should-not-exceed-20: Schema values all related to CPS backup events.
- enum:
- CPS_DATA_PROTECTION_ENABLE_REQUESTED
- CPS_DATA_PROTECTION_ENABLED
@@ -13843,6 +13870,7 @@ components:
title: Mlab Migration Audit Types
type: string
- enum:
+ - AWS_PAYMENT_PAID
- AWS_SELF_SERVE_ACCOUNT_LINKED
- AWS_SELF_SERVE_ACCOUNT_LINK_PENDING
- AWS_SELF_SERVE_ACCOUNT_CANCELLED
@@ -13865,6 +13893,8 @@ components:
- VERCEL_INVOICE_REFUNDED
title: Partner Event Types
type: string
+ x-xgen-IPA-exception:
+ xgen-IPA-123-allowable-enum-values-should-not-exceed-20: Schema predates IPA validation.
- enum:
- SUPPORT_EMAILS_SENT_SUCCESSFULLY
- SUPPORT_EMAILS_SENT_FAILURE
@@ -15958,6 +15988,7 @@ components:
- EU_CENTRAL_1
- EU_CENTRAL_2
- AP_EAST_1
+ - AP_EAST_2
- AP_NORTHEAST_1
- AP_NORTHEAST_2
- AP_NORTHEAST_3
@@ -15965,6 +15996,9 @@ components:
- AP_SOUTHEAST_2
- AP_SOUTHEAST_3
- AP_SOUTHEAST_4
+ - AP_SOUTHEAST_5
+ - AP_SOUTHEAST_6
+ - AP_SOUTHEAST_7
- AP_SOUTH_1
- AP_SOUTH_2
- SA_EAST_1
@@ -15977,8 +16011,6 @@ components:
- EU_SOUTH_2
- IL_CENTRAL_1
- CA_WEST_1
- - AP_SOUTHEAST_5
- - AP_SOUTHEAST_7
- MX_CENTRAL_1
- GLOBAL
title: AWS Regions
@@ -16354,12 +16386,18 @@ components:
- CPS_EXPORT_SUCCESSFUL
- CPS_RESTORE_FAILED
- CPS_EXPORT_FAILED
+ - CPS_COLLECTION_RESTORE_SUCCESSFUL
+ - CPS_COLLECTION_RESTORE_FAILED
+ - CPS_COLLECTION_RESTORE_PARTIAL_SUCCESS
+ - CPS_COLLECTION_RESTORE_CANCELED
- CPS_AUTO_EXPORT_FAILED
- CPS_SNAPSHOT_DOWNLOAD_REQUEST_FAILED
- CPS_OPLOG_BEHIND
- CPS_OPLOG_CAUGHT_UP
title: Cps Backup Event Types
type: string
+ x-xgen-IPA-exception:
+ xgen-IPA-123-allowable-enum-values-should-not-exceed-20: Schema values all related to CPS backup events.
- enum:
- DATA_EXPLORER
- DATA_EXPLORER_CRUD_ATTEMPT
@@ -16424,6 +16462,7 @@ components:
- FTS_INDEX_UPDATED
- FTS_INDEX_DELETED
- FTS_INDEX_CLEANED_UP
+ - FTS_INDEX_STALE
- FTS_INDEXES_RESTORED
- FTS_INDEXES_RESTORE_FAILED
- FTS_INDEXES_SYNONYM_MAPPING_INVALID
@@ -16547,6 +16586,7 @@ components:
- CLUSTER_IMPORT_EXPIRED
- CLUSTER_IMPORT_CUTOVER
- CLUSTER_IMPORT_COMPLETED
+ - CLUSTER_IMPORT_FAILED
- CLUSTER_IMPORT_RESTART_REQUESTED
- PROJECT_LIVE_IMPORT_OVERRIDES_ADDED
- PROJECT_LIVE_IMPORT_OVERRIDES_UPDATED
@@ -16592,6 +16632,8 @@ components:
- PLAN_STARTED
- PLAN_COMPLETED
- PLAN_ABANDONED
+ - PLAN_DECLINED
+ - PLAN_APPROVED
- PLAN_FAILURE_COUNT_RESET
- PLAN_ASAP_REQUESTED
- INDEPENDENT_SHARD_SCALING_AVAILABLE
@@ -16748,6 +16790,7 @@ components:
- STREAM_TENANT_CONNECTION_DELETED
- STREAM_TENANT_CONNECTION_CREATED
- STREAM_TENANT_CONNECTION_VIEWED
+ - STREAM_TENANT_OPERATIONAL_LOGS
- STREAM_TENANT_AUDIT_LOGS
- STREAM_TENANT_AUDIT_LOGS_DELETED
- QUEUED_ADMIN_ACTION_CREATED
@@ -16774,6 +16817,12 @@ components:
- PROXY_PROTOCOL_FOR_PRIVATE_LINK_MODE_UPDATED
- MONGOTUNE_WRITE_BLOCK_POLICY_ELIGIBLE
- MONGOTUNE_WRITE_BLOCK_POLICY_INELIGIBLE
+ - PREDICTIVE_AUTOSCALING_ENABLED
+ - PREDICTIVE_AUTOSCALING_DISABLED
+ - DEPUTY_SETTINGS_UPDATED
+ - SHADOW_CLUSTER_CREATE_EXPOSURE
+ - SHADOW_CLUSTER_DELETE_EXPOSURE
+ - SHADOW_CLUSTER_RECORDING_STATUS_UPDATE
title: NDS Audit Types
type: string
x-xgen-IPA-exception:
@@ -16809,6 +16858,7 @@ components:
- PREDICTIVE_COMPUTE_AUTO_SCALE_INITIATED_BASE
- PREDICTIVE_COMPUTE_AUTO_SCALE_MAX_INSTANCE_SIZE_FAIL_BASE
- PREDICTIVE_COMPUTE_AUTO_SCALE_OPLOG_FAIL_BASE
+ - CLUSTER_AUTO_SHARDING_INITIATED
title: NDS Auto Scaling Audit Types
type: string
- enum:
@@ -17107,6 +17157,7 @@ components:
- GCP_USAGE_REPORTED
- VERCEL_USAGE_REPORTED
- BECAME_PAYING_ORG
+ - BECAME_LINKED_ORG
- NEW_LINKED_ORG
- UNLINKED_ORG
- ORG_LINKED_TO_PAYING_ORG
@@ -17136,6 +17187,7 @@ components:
- PENDING_DEAL_APPLIED
- PENDING_DEAL_ACTIVATION_FAILED
- EVERGREEN_PRIORITY_MODIFIED
+ - CROSS_ORG_OPERATION_TICKET_TRACKING
title: Billing Event Types
type: string
x-xgen-IPA-exception:
@@ -17196,6 +17248,8 @@ components:
type: string
- enum:
- ORG_LIMIT_UPDATED
+ - SHADOW_CLUSTER_ORG_OPT_IN
+ - SHADOW_CLUSTER_ORG_OPT_OUT
title: NDS Audit Types
type: string
- enum:
@@ -17263,11 +17317,14 @@ components:
- SANDBOX_DISABLED_FOR_ORG
- SANDBOX_CONFIG_DELETED
- SANDBOX_TEMPLATE_UPDATED
+ - ORGANIZATION_VOYAGE_SETTINGS_CREATED
+ - ORGANIZATION_VOYAGE_SETTINGS_DELETED
title: Org Event Types
type: string
x-xgen-IPA-exception:
xgen-IPA-123-allowable-enum-values-should-not-exceed-20: Schema predates IPA validation.
- enum:
+ - AWS_PAYMENT_PAID
- AWS_SELF_SERVE_ACCOUNT_LINKED
- AWS_SELF_SERVE_ACCOUNT_LINK_PENDING
- AWS_SELF_SERVE_ACCOUNT_CANCELLED
@@ -17290,6 +17347,8 @@ components:
- VERCEL_INVOICE_REFUNDED
title: Partner Event Types
type: string
+ x-xgen-IPA-exception:
+ xgen-IPA-123-allowable-enum-values-should-not-exceed-20: Schema predates IPA validation.
- enum:
- SUPPORT_EMAILS_SENT_SUCCESSFULLY
- SUPPORT_EMAILS_SENT_FAILURE
@@ -17443,6 +17502,7 @@ components:
- FTS_INDEX_UPDATED
- FTS_INDEX_DELETED
- FTS_INDEX_CLEANED_UP
+ - FTS_INDEX_STALE
- FTS_INDEXES_RESTORED
- FTS_INDEXES_RESTORE_FAILED
- FTS_INDEXES_SYNONYM_MAPPING_INVALID
@@ -18815,6 +18875,8 @@ components:
- days
- requests
- 1000 requests
+ - tokens
+ - pixels
- GB seconds
- GB hours
- GB days
@@ -22586,6 +22648,8 @@ components:
- days
- requests
- 1000 requests
+ - tokens
+ - pixels
- GB seconds
- GB hours
- GB days
@@ -22634,6 +22698,8 @@ components:
- days
- requests
- 1000 requests
+ - tokens
+ - pixels
- GB seconds
- GB hours
- GB days
@@ -23465,14 +23531,24 @@ components:
- REALM_APP_DATA_TRANSFER_FREE_TIER
- REALM_APP_DATA_TRANSFER
- GCP_SNAPSHOT_COPY_DISK
+ - ATLAS_AWS_STREAM_PROCESSING_INSTANCE_SP2
+ - ATLAS_AWS_STREAM_PROCESSING_INSTANCE_SP5
- ATLAS_AWS_STREAM_PROCESSING_INSTANCE_SP10
- ATLAS_AWS_STREAM_PROCESSING_INSTANCE_SP30
- ATLAS_AWS_STREAM_PROCESSING_INSTANCE_SP50
+ - ATLAS_AZURE_STREAM_PROCESSING_INSTANCE_SP2
+ - ATLAS_AZURE_STREAM_PROCESSING_INSTANCE_SP5
- ATLAS_AZURE_STREAM_PROCESSING_INSTANCE_SP10
- ATLAS_AZURE_STREAM_PROCESSING_INSTANCE_SP30
- ATLAS_AZURE_STREAM_PROCESSING_INSTANCE_SP50
- ATLAS_AWS_STREAM_PROCESSING_DATA_TRANSFER
+ - ATLAS_AWS_STREAM_PROCESSING_DATA_TRANSFER_SAME_REGION
+ - ATLAS_AWS_STREAM_PROCESSING_DATA_TRANSFER_DIFFERENT_REGION
+ - ATLAS_AWS_STREAM_PROCESSING_DATA_TRANSFER_INTERNET
- ATLAS_AZURE_STREAM_PROCESSING_DATA_TRANSFER
+ - ATLAS_AZURE_STREAM_PROCESSING_DATA_TRANSFER_INTERNET
+ - ATLAS_AZURE_STREAM_PROCESSING_DATA_TRANSFER_SAME_CONTINENT
+ - ATLAS_AZURE_STREAM_PROCESSING_DATA_TRANSFER_DIFFERENT_CONTINENT
- ATLAS_AWS_STREAM_PROCESSING_VPC_PEERING
- ATLAS_AZURE_STREAM_PROCESSING_PRIVATELINK
- ATLAS_AWS_STREAM_PROCESSING_PRIVATELINK
@@ -23506,10 +23582,15 @@ components:
- ATLAS_FLEX_GCP_LEGACY_300_USAGE_HOURS
- ATLAS_FLEX_GCP_LEGACY_400_USAGE_HOURS
- ATLAS_FLEX_GCP_LEGACY_500_USAGE_HOURS
+ - ATLAS_GCP_STREAM_PROCESSING_INSTANCE_SP2
+ - ATLAS_GCP_STREAM_PROCESSING_INSTANCE_SP5
- ATLAS_GCP_STREAM_PROCESSING_INSTANCE_SP10
- ATLAS_GCP_STREAM_PROCESSING_INSTANCE_SP30
- ATLAS_GCP_STREAM_PROCESSING_INSTANCE_SP50
- ATLAS_GCP_STREAM_PROCESSING_DATA_TRANSFER
+ - ATLAS_GCP_STREAM_PROCESSING_DATA_TRANSFER_SAME_REGION
+ - ATLAS_GCP_STREAM_PROCESSING_DATA_TRANSFER_DIFFERENT_REGION
+ - ATLAS_GCP_STREAM_PROCESSING_DATA_TRANSFER_INTERNET
- ATLAS_GCP_STREAM_PROCESSING_PRIVATELINK
readOnly: true
type: string
@@ -26375,6 +26456,7 @@ components:
- CLUSTER_IMPORT_EXPIRED
- CLUSTER_IMPORT_CUTOVER
- CLUSTER_IMPORT_COMPLETED
+ - CLUSTER_IMPORT_FAILED
- CLUSTER_IMPORT_RESTART_REQUESTED
- PROJECT_LIVE_IMPORT_OVERRIDES_ADDED
- PROJECT_LIVE_IMPORT_OVERRIDES_UPDATED
@@ -26420,6 +26502,8 @@ components:
- PLAN_STARTED
- PLAN_COMPLETED
- PLAN_ABANDONED
+ - PLAN_DECLINED
+ - PLAN_APPROVED
- PLAN_FAILURE_COUNT_RESET
- PLAN_ASAP_REQUESTED
- INDEPENDENT_SHARD_SCALING_AVAILABLE
@@ -26576,6 +26660,7 @@ components:
- STREAM_TENANT_CONNECTION_DELETED
- STREAM_TENANT_CONNECTION_CREATED
- STREAM_TENANT_CONNECTION_VIEWED
+ - STREAM_TENANT_OPERATIONAL_LOGS
- STREAM_TENANT_AUDIT_LOGS
- STREAM_TENANT_AUDIT_LOGS_DELETED
- QUEUED_ADMIN_ACTION_CREATED
@@ -26602,6 +26687,12 @@ components:
- PROXY_PROTOCOL_FOR_PRIVATE_LINK_MODE_UPDATED
- MONGOTUNE_WRITE_BLOCK_POLICY_ELIGIBLE
- MONGOTUNE_WRITE_BLOCK_POLICY_INELIGIBLE
+ - PREDICTIVE_AUTOSCALING_ENABLED
+ - PREDICTIVE_AUTOSCALING_DISABLED
+ - DEPUTY_SETTINGS_UPDATED
+ - SHADOW_CLUSTER_CREATE_EXPOSURE
+ - SHADOW_CLUSTER_DELETE_EXPOSURE
+ - SHADOW_CLUSTER_RECORDING_STATUS_UPDATE
example: CLUSTER_CREATED
title: NDS Audit Types
type: string
@@ -26609,6 +26700,8 @@ components:
description: Unique identifier of event type.
enum:
- ORG_LIMIT_UPDATED
+ - SHADOW_CLUSTER_ORG_OPT_IN
+ - SHADOW_CLUSTER_ORG_OPT_OUT
example: ORG_LIMIT_UPDATED
title: NDS Audit Types
type: string
@@ -26818,6 +26911,7 @@ components:
- PREDICTIVE_COMPUTE_AUTO_SCALE_INITIATED_BASE
- PREDICTIVE_COMPUTE_AUTO_SCALE_MAX_INSTANCE_SIZE_FAIL_BASE
- PREDICTIVE_COMPUTE_AUTO_SCALE_OPLOG_FAIL_BASE
+ - CLUSTER_AUTO_SHARDING_INITIATED
example: COMPUTE_AUTO_SCALE_INITIATED
title: NDS Auto Scaling Audit Types
type: string
@@ -28537,6 +28631,8 @@ components:
- SANDBOX_DISABLED_FOR_ORG
- SANDBOX_CONFIG_DELETED
- SANDBOX_TEMPLATE_UPDATED
+ - ORGANIZATION_VOYAGE_SETTINGS_CREATED
+ - ORGANIZATION_VOYAGE_SETTINGS_DELETED
example: ORG_CREATED
title: Org Event Types
type: string
@@ -29250,7 +29346,7 @@ components:
description: String that specifies a single email address for the specified organization to receive security-related notifications. Specifying a security contact does not grant them authorization or access to Atlas for security decisions or approvals. An empty string is valid and clears the existing security contact (if any).
type: string
streamsCrossGroupEnabled:
- description: Flag that indicates whether a group's Atlas Stream Processing instances in this organization can create connections to other group's clusters in the same organization.
+ description: Flag that indicates whether a group's Atlas Stream Processing workspaces in this organization can create connections to other group's clusters in the same organization.
type: boolean
type: object
OutboundControlPlaneCloudProviderIPAddresses:
@@ -34473,6 +34569,8 @@ components:
- days
- requests
- 1000 requests
+ - tokens
+ - pixels
- GB seconds
- GB hours
- GB days
@@ -35331,7 +35429,7 @@ components:
readOnly: true
type: object
StreamConfig:
- description: Configuration options for an Atlas Stream Processing Instance.
+ description: Configuration options for an Atlas Stream Processing Workspace.
nullable: true
properties:
links:
@@ -35344,21 +35442,21 @@ components:
readOnly: true
type: array
maxTierSize:
- description: Max tier size for the Stream Instance. Configures Memory / VCPU allowances. This field is not supported yet.
+ description: Max tier size for the Stream Workspace. Configures Memory / VCPU allowances.
enum:
- SP50
- SP30
- SP10
- SP5
- SP2
- title: Stream Instance Max Tier Size
+ title: Stream Workspace Max Tier Size
type: string
tier:
- description: Selected tier for the Stream Instance. Configures Memory / VCPU allowances.
+ description: Selected tier for the Stream Workspace. Configures Memory / VCPU allowances.
enum:
- SP30
- SP10
- title: Stream Instance Tier
+ title: Stream Workspace Tier
type: string
type: object
StreamProcessorAlertConfigViewForNdsGroup:
@@ -35478,7 +35576,7 @@ components:
readOnly: true
type: string
instanceName:
- description: The name of the Stream Processing Instance to which this alert applies. The resource returns this parameter for alerts of events impacting Stream Processing Instances.
+ description: The name of the Stream Processing Workspace to which this alert applies. The resource returns this parameter for alerts of events impacting Stream Processing Workspaces.
example: foobar
readOnly: true
type: string
@@ -35604,7 +35702,7 @@ components:
readOnly: true
type: string
instanceName:
- description: Name of the stream processing instance associated with the event.
+ description: Name of the stream processing workspace associated with the event.
example: foobar
readOnly: true
type: string
@@ -35766,6 +35864,8 @@ components:
- days
- requests
- 1000 requests
+ - tokens
+ - pixels
- GB seconds
- GB hours
- GB days
@@ -35966,7 +36066,7 @@ components:
readOnly: true
type: string
instanceName:
- description: Name of the stream processing instance associated with the event.
+ description: Name of the stream processing workspace associated with the event.
example: foobar
readOnly: true
type: string
@@ -36158,7 +36258,7 @@ components:
type: string
type: object
StreamsMatcher:
- description: Rules to apply when comparing a stream processing instance or stream processor against this alert configuration.
+ description: Rules to apply when comparing a stream processing workspace or stream processor against this alert configuration.
properties:
fieldName:
$ref: '#/components/schemas/StreamsMatcherField'
@@ -36283,6 +36383,13 @@ components:
description: Error message if the state is FAILED.
readOnly: true
type: string
+ gcpConnectionIds:
+ description: List of GCP Private Service Connect connection IDs.
+ items:
+ type: string
+ maxItems: 3
+ type: array
+ uniqueItems: true
gcpServiceAttachmentUris:
description: Service Attachment URIs of each availability zone for the GCP Confluent cluster.
items:
@@ -36490,7 +36597,7 @@ components:
readOnly: true
type: string
connections:
- description: List of connections configured in the stream instance.
+ description: List of connections configured in the stream workspace.
items:
$ref: '#/components/schemas/StreamsConnection'
readOnly: true
@@ -36504,9 +36611,9 @@ components:
readOnly: true
type: string
hostnames:
- description: List that contains the hostnames assigned to the stream instance.
+ description: List that contains the hostnames assigned to the stream workspace.
items:
- description: Unique hostname assigned to the stream instance.
+ description: Unique hostname assigned to the stream workspace.
readOnly: true
type: string
readOnly: true
@@ -36521,7 +36628,7 @@ components:
readOnly: true
type: array
name:
- description: Human-readable label that identifies the stream instance.
+ description: Label that identifies the stream workspace.
type: string
sampleConnections:
$ref: '#/components/schemas/StreamsSampleConnections'
@@ -39825,7 +39932,7 @@ info:
termsOfService: https://www.mongodb.com/mongodb-management-service-terms-and-conditions
title: MongoDB Atlas Administration API
version: "2.0"
- x-xgen-sha: 66be7c90474eeed9de9cf2be16ecc9dc984f082c
+ x-xgen-sha: 7e672413250f29eaf2a8344dfdfd3b464e630ef8
openapi: 3.0.1
paths:
/api/atlas/v2:
@@ -39931,7 +40038,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alertConfigurations listAlertConfigMatcherFieldNames --help
+ source: atlas api alertConfigurations listMatcherFieldNames --help
- label: Go
lang: go
source: |
@@ -40224,7 +40331,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication listFederationSettingConnectedOrgConfigs --help
+ source: atlas api federatedAuthentication listConnectedOrgConfigs --help
- label: Go
lang: go
source: |
@@ -40304,7 +40411,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication removeFederationSettingConnectedOrgConfig --help
+ source: atlas api federatedAuthentication removeConnectedOrgConfig --help
- label: Go
lang: go
source: |
@@ -40390,7 +40497,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication getFederationSettingConnectedOrgConfig --help
+ source: atlas api federatedAuthentication getConnectedOrgConfig --help
- label: Go
lang: go
source: |
@@ -40478,7 +40585,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication updateFederationSettingConnectedOrgConfig --help
+ source: atlas api federatedAuthentication updateConnectedOrgConfig --help
- label: Go
lang: go
source: |
@@ -40557,7 +40664,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication listFederationSettingConnectedOrgConfigRoleMappings --help
+ source: atlas api federatedAuthentication listRoleMappings --help
- label: Go
lang: go
source: |
@@ -40638,7 +40745,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication createFederationSettingConnectedOrgConfigRoleMapping --help
+ source: atlas api federatedAuthentication createRoleMapping --help
- label: Go
lang: go
source: |
@@ -40723,7 +40830,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication deleteFederationSettingConnectedOrgConfigRoleMapping --help
+ source: atlas api federatedAuthentication deleteRoleMapping --help
- label: Go
lang: go
source: |
@@ -40807,7 +40914,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication getFederationSettingConnectedOrgConfigRoleMapping --help
+ source: atlas api federatedAuthentication getRoleMapping --help
- label: Go
lang: go
source: |
@@ -40896,7 +41003,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication updateFederationSettingConnectedOrgConfigRoleMapping --help
+ source: atlas api federatedAuthentication updateRoleMapping --help
- label: Go
lang: go
source: |
@@ -41000,7 +41107,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication listFederationSettingIdentityProviders --help
+ source: atlas api federatedAuthentication listIdentityProviders --help
- label: Go
lang: go
source: |
@@ -41083,7 +41190,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication createFederationSettingIdentityProvider --help
+ source: atlas api federatedAuthentication createIdentityProvider --help
- label: Go
lang: go
source: |
@@ -41169,7 +41276,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication deleteFederationSettingIdentityProvider --help
+ source: atlas api federatedAuthentication deleteIdentityProvider --help
- label: Go
lang: go
source: |
@@ -41251,7 +41358,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication getFederationSettingIdentityProvider --help
+ source: atlas api federatedAuthentication getIdentityProvider --help
- label: Go
lang: go
source: |
@@ -41341,7 +41448,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication updateFederationSettingIdentityProvider --help
+ source: atlas api federatedAuthentication updateIdentityProvider --help
- label: Go
lang: go
source: |
@@ -41427,7 +41534,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication revokeFederationSettingIdentityProviderJwks --help
+ source: atlas api federatedAuthentication revokeIdentityProviderJwks --help
- label: Go
lang: go
source: |
@@ -41504,7 +41611,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication getFederationSettingIdentityProviderMetadata --help
+ source: atlas api federatedAuthentication getIdentityProviderMetadata --help
- label: Go
lang: go
source: |
@@ -41993,7 +42100,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api projects addGroupAccessUser --help
+ source: atlas api projects addGroupUser --help
- label: Go
lang: go
source: |
@@ -42038,7 +42145,7 @@ paths:
--header "Content-Type: application/json" \
-X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \
-d '{ }'
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/addGroupAccessUser
x-xgen-method-verb-override:
customMethod: "True"
@@ -42080,7 +42187,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api projectIpAccessList listGroupAccessListEntries --help
+ source: atlas api projectIpAccessList listAccessListEntries --help
- label: Go
lang: go
source: |
@@ -42174,7 +42281,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api projectIpAccessList createGroupAccessListEntry --help
+ source: atlas api projectIpAccessList createAccessListEntry --help
- label: Go
lang: go
source: |
@@ -42268,7 +42375,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api projectIpAccessList deleteGroupAccessListEntry --help
+ source: atlas api projectIpAccessList deleteAccessListEntry --help
- label: Go
lang: go
source: |
@@ -42356,7 +42463,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api projectIpAccessList getGroupAccessListEntry --help
+ source: atlas api projectIpAccessList getAccessListEntry --help
- label: Go
lang: go
source: |
@@ -42444,7 +42551,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api projectIpAccessList getGroupAccessListStatus --help
+ source: atlas api projectIpAccessList getAccessListStatus --help
- label: Go
lang: go
source: |
@@ -42523,7 +42630,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alertConfigurations listGroupAlertConfigs --help
+ source: atlas api alertConfigurations listAlertConfigs --help
- label: Go
lang: go
source: |
@@ -42607,7 +42714,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alertConfigurations createGroupAlertConfig --help
+ source: atlas api alertConfigurations createAlertConfig --help
- label: Go
lang: go
source: |
@@ -42696,7 +42803,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alertConfigurations deleteGroupAlertConfig --help
+ source: atlas api alertConfigurations deleteAlertConfig --help
- label: Go
lang: go
source: |
@@ -42784,7 +42891,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alertConfigurations getGroupAlertConfig --help
+ source: atlas api alertConfigurations getAlertConfig --help
- label: Go
lang: go
source: |
@@ -42879,7 +42986,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alertConfigurations toggleGroupAlertConfig --help
+ source: atlas api alertConfigurations toggleAlertConfig --help
- label: Go
lang: go
source: |
@@ -42983,7 +43090,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alertConfigurations updateGroupAlertConfig --help
+ source: atlas api alertConfigurations updateAlertConfig --help
- label: Go
lang: go
source: |
@@ -43080,7 +43187,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alerts getGroupAlertConfigAlerts --help
+ source: atlas api alerts getAlertConfigAlerts --help
- label: Go
lang: go
source: |
@@ -43170,7 +43277,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alerts listGroupAlerts --help
+ source: atlas api alerts listAlerts --help
- label: Go
lang: go
source: |
@@ -43258,7 +43365,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alerts getGroupAlert --help
+ source: atlas api alerts getAlert --help
- label: Go
lang: go
source: |
@@ -43352,7 +43459,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alerts acknowledgeGroupAlert --help
+ source: atlas api alerts acknowledgeAlert --help
- label: Go
lang: go
source: |
@@ -43451,7 +43558,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api alertConfigurations getGroupAlertAlertConfigs --help
+ source: atlas api alertConfigurations getAlertConfigs --help
- label: Go
lang: go
source: |
@@ -43787,7 +43894,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api programmaticApiKeys updateGroupApiKeyRoles --help
+ source: atlas api programmaticApiKeys updateApiKeyRoles --help
- label: Go
lang: go
source: |
@@ -44041,7 +44148,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api auditing updateGroupAuditLog --help
+ source: atlas api auditing updateAuditLog --help
- label: Go
lang: go
source: |
@@ -44120,7 +44227,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api awsClustersDns getGroupAwsCustomDns --help
+ source: atlas api awsClustersDns getAwsCustomDns --help
- label: Go
lang: go
source: |
@@ -44199,7 +44306,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api awsClustersDns toggleGroupAwsCustomDns --help
+ source: atlas api awsClustersDns toggleAwsCustomDns --help
- label: Go
lang: go
source: |
@@ -44282,7 +44389,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups listGroupBackupExportBuckets --help
+ source: atlas api cloudBackups listExportBuckets --help
- label: Go
lang: go
source: |
@@ -44420,7 +44527,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups createGroupBackupExportBucket --help
+ source: atlas api cloudBackups createExportBucket --help
- label: Go
lang: go
source: |
@@ -44504,7 +44611,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups deleteGroupBackupExportBucket --help
+ source: atlas api cloudBackups deleteExportBucket --help
- label: Go
lang: go
source: |
@@ -44618,7 +44725,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupBackupExportBucket --help
+ source: atlas api cloudBackups getExportBucket --help
- label: Go
lang: go
source: |
@@ -44691,7 +44798,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups disableGroupBackupCompliancePolicy --help
+ source: atlas api cloudBackups disableCompliancePolicy --help
- label: Go
lang: go
source: |
@@ -44768,7 +44875,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupBackupCompliancePolicy --help
+ source: atlas api cloudBackups getCompliancePolicy --help
- label: Go
lang: go
source: |
@@ -44856,7 +44963,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups updateGroupBackupCompliancePolicy --help
+ source: atlas api cloudBackups updateCompliancePolicy --help
- label: Go
lang: go
source: |
@@ -44937,7 +45044,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudProviderAccess listGroupCloudProviderAccess --help
+ source: atlas api cloudProviderAccess listCloudProviderAccess --help
- label: Go
lang: go
source: |
@@ -45019,7 +45126,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudProviderAccess createGroupCloudProviderAccess --help
+ source: atlas api cloudProviderAccess createCloudProviderAccess --help
- label: Go
lang: go
source: |
@@ -45113,7 +45220,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudProviderAccess deauthorizeGroupCloudProviderAccessRole --help
+ source: atlas api cloudProviderAccess deauthorizeProviderAccessRole --help
- label: Go
lang: go
source: |
@@ -45198,7 +45305,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudProviderAccess getGroupCloudProviderAccess --help
+ source: atlas api cloudProviderAccess getCloudProviderAccess --help
- label: Go
lang: go
source: |
@@ -45291,7 +45398,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudProviderAccess authorizeGroupCloudProviderAccessRole --help
+ source: atlas api cloudProviderAccess authorizeProviderAccessRole --help
- label: Go
lang: go
source: |
@@ -45364,6 +45471,12 @@ paths:
schema:
default: false
type: boolean
+ - description: Controls how hardware specification fields are returned in the response. When set to true, returns the original client-specified values and provides separate effective fields showing current operational values. When false (default), hardware specification fields show current operational values directly. Primarily used for autoscaling compatibility.
+ in: header
+ name: Use-Effective-Instance-Fields
+ schema:
+ default: false
+ type: boolean
responses:
"200":
content:
@@ -45386,7 +45499,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters listGroupClusters --help
+ source: atlas api clusters listClusters --help
- label: Go
lang: go
source: |
@@ -45442,6 +45555,12 @@ paths:
- $ref: '#/components/parameters/envelope'
- $ref: '#/components/parameters/groupId'
- $ref: '#/components/parameters/pretty'
+ - description: Controls how hardware specification fields are returned in the response after cluster creation. When set to true, returns the original client-specified values and provides separate effective fields showing current operational values. When false (default), hardware specification fields show current operational values directly. Primarily used for autoscaling compatibility.
+ in: header
+ name: Use-Effective-Instance-Fields
+ schema:
+ default: false
+ type: boolean
requestBody:
content:
application/vnd.atlas.2024-10-23+json:
@@ -45559,7 +45678,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters createGroupCluster --help
+ source: atlas api clusters createCluster --help
- label: Go
lang: go
source: |
@@ -45658,7 +45777,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters deleteGroupCluster --help
+ source: atlas api clusters deleteCluster --help
- label: Go
lang: go
source: |
@@ -45721,6 +45840,12 @@ paths:
schema:
pattern: ^[a-zA-Z0-9][a-zA-Z0-9-]*$
type: string
+ - description: Controls how hardware specification fields are returned in the response. When set to true, returns the original client-specified values and provides separate effective fields showing current operational values. When false (default), hardware specification fields show current operational values directly. Primarily used for autoscaling compatibility.
+ in: header
+ name: Use-Effective-Instance-Fields
+ schema:
+ default: false
+ type: boolean
responses:
"200":
content:
@@ -45747,7 +45872,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters getGroupCluster --help
+ source: atlas api clusters getCluster --help
- label: Go
lang: go
source: |
@@ -45804,6 +45929,12 @@ paths:
schema:
pattern: ^[a-zA-Z0-9][a-zA-Z0-9-]*$
type: string
+ - description: 'Controls how hardware specification fields are returned in the response after cluster updates. When set to true, returns the original client-specified values and provides separate effective fields showing current operational values. When false (default), hardware specification fields show current operational values directly. Note: When using this header with autoscaling enabled, MongoDB ignores replicationSpecs changes during updates. To intentionally override the replicationSpecs, disable this header.'
+ in: header
+ name: Use-Effective-Instance-Fields
+ schema:
+ default: false
+ type: boolean
requestBody:
content:
application/vnd.atlas.2024-10-23+json:
@@ -45838,7 +45969,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters updateGroupCluster --help
+ source: atlas api clusters updateCluster --help
- label: Go
lang: go
source: |
@@ -45976,7 +46107,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics listGroupClusterCollStatMeasurements --help
+ source: atlas api collectionLevelMetrics listCollStatMeasurements --help
- label: Go
lang: go
source: |
@@ -46068,7 +46199,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics getGroupClusterCollStatNamespaces --help
+ source: atlas api collectionLevelMetrics getClusterNamespaces --help
- label: Go
lang: go
source: |
@@ -46156,7 +46287,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters autoGroupClusterScalingConfiguration --help
+ source: atlas api clusters autoScalingConfiguration --help
- label: Go
lang: go
source: |
@@ -46241,7 +46372,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups listGroupClusterBackupExports --help
+ source: atlas api cloudBackups listBackupExports --help
- label: Go
lang: go
source: |
@@ -46330,7 +46461,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups createGroupClusterBackupExport --help
+ source: atlas api cloudBackups createBackupExport --help
- label: Go
lang: go
source: |
@@ -46421,7 +46552,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupClusterBackupExport --help
+ source: atlas api cloudBackups getBackupExport --help
- label: Go
lang: go
source: |
@@ -46504,7 +46635,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups listGroupClusterBackupRestoreJobs --help
+ source: atlas api cloudBackups listBackupRestoreJobs --help
- label: Go
lang: go
source: |
@@ -46597,7 +46728,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups createGroupClusterBackupRestoreJob --help
+ source: atlas api cloudBackups createBackupRestoreJob --help
- label: Go
lang: go
source: |
@@ -46690,7 +46821,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups cancelGroupClusterBackupRestoreJob --help
+ source: atlas api cloudBackups cancelBackupRestoreJob --help
- label: Go
lang: go
source: |
@@ -46779,7 +46910,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupClusterBackupRestoreJob --help
+ source: atlas api cloudBackups getBackupRestoreJob --help
- label: Go
lang: go
source: |
@@ -46860,7 +46991,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups deleteGroupClusterBackupSchedule --help
+ source: atlas api cloudBackups deleteClusterBackupSchedule --help
- label: Go
lang: go
source: |
@@ -46939,7 +47070,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupClusterBackupSchedule --help
+ source: atlas api cloudBackups getBackupSchedule --help
- label: Go
lang: go
source: |
@@ -47033,7 +47164,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups updateGroupClusterBackupSchedule --help
+ source: atlas api cloudBackups updateBackupSchedule --help
- label: Go
lang: go
source: |
@@ -47122,7 +47253,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups listGroupClusterBackupSnapshots --help
+ source: atlas api cloudBackups listBackupSnapshots --help
- label: Go
lang: go
source: |
@@ -47213,7 +47344,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups takeGroupClusterBackupSnapshots --help
+ source: atlas api cloudBackups takeSnapshots --help
- label: Go
lang: go
source: |
@@ -47307,7 +47438,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups deleteGroupClusterBackupSnapshot --help
+ source: atlas api cloudBackups deleteClusterBackupSnapshot --help
- label: Go
lang: go
source: |
@@ -47397,7 +47528,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupClusterBackupSnapshot --help
+ source: atlas api cloudBackups getClusterBackupSnapshot --help
- label: Go
lang: go
source: |
@@ -47492,7 +47623,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups updateGroupClusterBackupSnapshot --help
+ source: atlas api cloudBackups updateBackupSnapshot --help
- label: Go
lang: go
source: |
@@ -47581,7 +47712,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups deleteGroupClusterBackupSnapshotShardedCluster --help
+ source: atlas api cloudBackups deleteBackupShardedCluster --help
- label: Go
lang: go
source: |
@@ -47671,7 +47802,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupClusterBackupSnapshotShardedCluster --help
+ source: atlas api cloudBackups getBackupShardedCluster --help
- label: Go
lang: go
source: |
@@ -47753,7 +47884,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups listGroupClusterBackupSnapshotShardedClusters --help
+ source: atlas api cloudBackups listBackupShardedClusters --help
- label: Go
lang: go
source: |
@@ -47851,7 +47982,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api sharedTierSnapshots downloadGroupClusterBackupTenant --help
+ source: atlas api sharedTierSnapshots downloadClusterBackupTenant --help
- label: Go
lang: go
source: |
@@ -47956,7 +48087,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api sharedTierRestoreJobs createGroupClusterBackupTenantRestore --help
+ source: atlas api sharedTierRestoreJobs createBackupTenantRestore --help
- label: Go
lang: go
source: |
@@ -48050,7 +48181,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api sharedTierRestoreJobs listGroupClusterBackupTenantRestores --help
+ source: atlas api sharedTierRestoreJobs listBackupTenantRestores --help
- label: Go
lang: go
source: |
@@ -48147,7 +48278,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api sharedTierRestoreJobs getGroupClusterBackupTenantRestore --help
+ source: atlas api sharedTierRestoreJobs getBackupTenantRestore --help
- label: Go
lang: go
source: |
@@ -48237,7 +48368,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api sharedTierSnapshots listGroupClusterBackupTenantSnapshots --help
+ source: atlas api sharedTierSnapshots listClusterBackupSnapshots --help
- label: Go
lang: go
source: |
@@ -48334,7 +48465,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api sharedTierSnapshots getGroupClusterBackupTenantSnapshot --help
+ source: atlas api sharedTierSnapshots getBackupTenantSnapshot --help
- label: Go
lang: go
source: |
@@ -48419,7 +48550,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup listGroupClusterBackupCheckpoints --help
+ source: atlas api legacyBackup listClusterBackupCheckpoints --help
- label: Go
lang: go
source: |
@@ -48511,7 +48642,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup getGroupClusterBackupCheckpoint --help
+ source: atlas api legacyBackup getClusterBackupCheckpoint --help
- label: Go
lang: go
source: |
@@ -48592,7 +48723,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics listGroupClusterCollStatPinnedNamespaces --help
+ source: atlas api collectionLevelMetrics listPinnedNamespaces --help
- label: Go
lang: go
source: |
@@ -48689,7 +48820,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics updateGroupClusterCollStatPinnedNamespaces --help
+ source: atlas api collectionLevelMetrics updatePinnedNamespaces --help
- label: Go
lang: go
source: |
@@ -48790,7 +48921,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics pinGroupClusterCollStatPinnedNamespaces --help
+ source: atlas api collectionLevelMetrics pinNamespaces --help
- label: Go
lang: go
source: |
@@ -48885,7 +49016,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics unpinGroupClusterCollStatUnpinNamespaces --help
+ source: atlas api collectionLevelMetrics unpinNamespaces --help
- label: Go
lang: go
source: |
@@ -48987,7 +49118,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch createGroupClusterFtsIndex --help
+ source: atlas api atlasSearch createClusterFtsIndex --help
- label: Go
lang: go
source: |
@@ -49092,7 +49223,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch listGroupClusterFtsIndex --help
+ source: atlas api atlasSearch listClusterFtsIndex --help
- label: Go
lang: go
source: |
@@ -49189,7 +49320,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch deleteGroupClusterFtsIndex --help
+ source: atlas api atlasSearch deleteClusterFtsIndex --help
- label: Go
lang: go
source: |
@@ -49282,7 +49413,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch getGroupClusterFtsIndex --help
+ source: atlas api atlasSearch getClusterFtsIndex --help
- label: Go
lang: go
source: |
@@ -49386,7 +49517,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch updateGroupClusterFtsIndex --help
+ source: atlas api atlasSearch updateClusterFtsIndex --help
- label: Go
lang: go
source: |
@@ -49476,7 +49607,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api globalClusters getGroupClusterGlobalWrites --help
+ source: atlas api globalClusters getClusterGlobalWrites --help
- label: Go
lang: go
source: |
@@ -49559,7 +49690,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api globalClusters deleteGroupClusterGlobalWriteCustomZoneMapping --help
+ source: atlas api globalClusters deleteCustomZoneMapping --help
- label: Go
lang: go
source: |
@@ -49651,7 +49782,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api globalClusters createGroupClusterGlobalWriteCustomZoneMapping --help
+ source: atlas api globalClusters createCustomZoneMapping --help
- label: Go
lang: go
source: |
@@ -49750,7 +49881,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api globalClusters deleteGroupClusterGlobalWriteManagedNamespaces --help
+ source: atlas api globalClusters deleteManagedNamespaces --help
- label: Go
lang: go
source: |
@@ -49844,7 +49975,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api globalClusters createGroupClusterGlobalWriteManagedNamespace --help
+ source: atlas api globalClusters createManagedNamespace --help
- label: Go
lang: go
source: |
@@ -50005,7 +50136,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api rollingIndex createGroupClusterIndexRollingIndex --help
+ source: atlas api rollingIndex createRollingIndex --help
- label: Go
lang: go
source: |
@@ -50100,7 +50231,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api onlineArchive listGroupClusterOnlineArchives --help
+ source: atlas api onlineArchive listOnlineArchives --help
- label: Go
lang: go
source: |
@@ -50193,7 +50324,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api onlineArchive createGroupClusterOnlineArchive --help
+ source: atlas api onlineArchive createOnlineArchive --help
- label: Go
lang: go
source: |
@@ -50287,7 +50418,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api onlineArchive deleteGroupClusterOnlineArchive --help
+ source: atlas api onlineArchive deleteOnlineArchive --help
- label: Go
lang: go
source: |
@@ -50380,7 +50511,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api onlineArchive getGroupClusterOnlineArchive --help
+ source: atlas api onlineArchive getOnlineArchive --help
- label: Go
lang: go
source: |
@@ -50480,7 +50611,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api onlineArchive updateGroupClusterOnlineArchive --help
+ source: atlas api onlineArchive updateOnlineArchive --help
- label: Go
lang: go
source: |
@@ -50596,7 +50727,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api onlineArchive downloadGroupClusterOnlineArchiveQueryLogs --help
+ source: atlas api onlineArchive downloadQueryLogs --help
- label: Go
lang: go
source: |
@@ -50686,7 +50817,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusterOutageSimulation endGroupClusterOutageSimulation --help
+ source: atlas api clusterOutageSimulation endOutageSimulation --help
- label: Go
lang: go
source: |
@@ -50777,7 +50908,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusterOutageSimulation getGroupClusterOutageSimulation --help
+ source: atlas api clusterOutageSimulation getOutageSimulation --help
- label: Go
lang: go
source: |
@@ -50871,7 +51002,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusterOutageSimulation startGroupClusterOutageSimulation --help
+ source: atlas api clusterOutageSimulation startOutageSimulation --help
- label: Go
lang: go
source: |
@@ -50960,7 +51091,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor listGroupClusterPerformanceAdvisorDropIndexSuggestions --help
+ source: atlas api performanceAdvisor listDropIndexSuggestions --help
- label: Go
lang: go
source: |
@@ -51042,7 +51173,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor listGroupClusterPerformanceAdvisorSchemaAdvice --help
+ source: atlas api performanceAdvisor listSchemaAdvice --help
- label: Go
lang: go
source: |
@@ -51167,7 +51298,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor listGroupClusterPerformanceAdvisorSuggestedIndexes --help
+ source: atlas api performanceAdvisor listClusterSuggestedIndexes --help
- label: Go
lang: go
source: |
@@ -51254,7 +51385,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters getGroupClusterProcessArgs --help
+ source: atlas api clusters getProcessArgs --help
- label: Go
lang: go
source: |
@@ -51346,7 +51477,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters updateGroupClusterProcessArgs --help
+ source: atlas api clusters updateProcessArgs --help
- label: Go
lang: go
source: |
@@ -51477,7 +51608,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api queryShapeInsights getGroupClusterQueryShapeInsightDetails --help
+ source: atlas api queryShapeInsights getQueryShapeDetails --help
- label: Go
lang: go
source: |
@@ -51666,7 +51797,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api queryShapeInsights listGroupClusterQueryShapeInsightSummaries --help
+ source: atlas api queryShapeInsights listQueryShapeSummaries --help
- label: Go
lang: go
source: |
@@ -51744,7 +51875,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters restartGroupClusterPrimaries --help
+ source: atlas api clusters restartPrimaries --help
- label: Go
lang: go
source: |
@@ -51848,7 +51979,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup listGroupClusterRestoreJobs --help
+ source: atlas api legacyBackup listClusterRestoreJobs --help
- label: Go
lang: go
source: |
@@ -51940,7 +52071,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup createGroupClusterRestoreJob --help
+ source: atlas api legacyBackup createClusterRestoreJob --help
- label: Go
lang: go
source: |
@@ -52043,7 +52174,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup getGroupClusterRestoreJob --help
+ source: atlas api legacyBackup getClusterRestoreJob --help
- label: Go
lang: go
source: |
@@ -52125,7 +52256,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch deleteGroupClusterSearchDeployment --help
+ source: atlas api atlasSearch deleteClusterSearchDeployment --help
- label: Go
lang: go
source: |
@@ -52206,7 +52337,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch getGroupClusterSearchDeployment --help
+ source: atlas api atlasSearch getClusterSearchDeployment --help
- label: Go
lang: go
source: |
@@ -52301,7 +52432,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch updateGroupClusterSearchDeployment --help
+ source: atlas api atlasSearch updateClusterSearchDeployment --help
- label: Go
lang: go
source: |
@@ -52395,7 +52526,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch createGroupClusterSearchDeployment --help
+ source: atlas api atlasSearch createClusterSearchDeployment --help
- label: Go
lang: go
source: |
@@ -52494,7 +52625,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch listGroupClusterSearchIndexes --help
+ source: atlas api atlasSearch listClusterSearchIndexes --help
- label: Go
lang: go
source: |
@@ -52587,7 +52718,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch createGroupClusterSearchIndex --help
+ source: atlas api atlasSearch createClusterSearchIndex --help
- label: Go
lang: go
source: |
@@ -52698,7 +52829,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch listGroupClusterSearchIndex --help
+ source: atlas api atlasSearch listSearchIndex --help
- label: Go
lang: go
source: |
@@ -52802,7 +52933,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch deleteGroupClusterSearchIndexByName --help
+ source: atlas api atlasSearch deleteIndexByName --help
- label: Go
lang: go
source: |
@@ -52907,7 +53038,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch getGroupClusterSearchIndexByName --help
+ source: atlas api atlasSearch getIndexByName --help
- label: Go
lang: go
source: |
@@ -53021,7 +53152,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch updateGroupClusterSearchIndexByName --help
+ source: atlas api atlasSearch updateIndexByName --help
- label: Go
lang: go
source: |
@@ -53120,7 +53251,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch deleteGroupClusterSearchIndex --help
+ source: atlas api atlasSearch deleteClusterSearchIndex --help
- label: Go
lang: go
source: |
@@ -53219,7 +53350,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch getGroupClusterSearchIndex --help
+ source: atlas api atlasSearch getClusterSearchIndex --help
- label: Go
lang: go
source: |
@@ -53321,7 +53452,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api atlasSearch updateGroupClusterSearchIndex --help
+ source: atlas api atlasSearch updateClusterSearchIndex --help
- label: Go
lang: go
source: |
@@ -53414,7 +53545,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup getGroupClusterSnapshotSchedule --help
+ source: atlas api legacyBackup getClusterSnapshotSchedule --help
- label: Go
lang: go
source: |
@@ -53509,7 +53640,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup updateGroupClusterSnapshotSchedule --help
+ source: atlas api legacyBackup updateClusterSnapshotSchedule --help
- label: Go
lang: go
source: |
@@ -53610,7 +53741,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup listGroupClusterSnapshots --help
+ source: atlas api legacyBackup listClusterSnapshots --help
- label: Go
lang: go
source: |
@@ -53701,7 +53832,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup deleteGroupClusterSnapshot --help
+ source: atlas api legacyBackup deleteClusterSnapshot --help
- label: Go
lang: go
source: |
@@ -53793,7 +53924,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup getGroupClusterSnapshot --help
+ source: atlas api legacyBackup getClusterSnapshot --help
- label: Go
lang: go
source: |
@@ -53890,7 +54021,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api legacyBackup updateGroupClusterSnapshot --help
+ source: atlas api legacyBackup updateClusterSnapshot --help
- label: Go
lang: go
source: |
@@ -53976,7 +54107,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters getGroupClusterStatus --help
+ source: atlas api clusters getClusterStatus --help
- label: Go
lang: go
source: |
@@ -54066,7 +54197,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters grantGroupClusterMongoDbEmployeeAccess --help
+ source: atlas api clusters grantMongoEmployeeAccess --help
- label: Go
lang: go
source: |
@@ -54159,7 +54290,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters pinGroupClusterFeatureCompatibilityVersion --help
+ source: atlas api clusters pinFeatureCompatibilityVersion --help
- label: Go
lang: go
source: |
@@ -54245,7 +54376,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters revokeGroupClusterMongoDbEmployeeAccess --help
+ source: atlas api clusters revokeMongoEmployeeAccess --help
- label: Go
lang: go
source: |
@@ -54333,7 +54464,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters unpinGroupClusterFeatureCompatibilityVersion --help
+ source: atlas api clusters unpinFeatureCompatibilityVersion --help
- label: Go
lang: go
source: |
@@ -54450,7 +54581,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs downloadGroupClusterLog --help
+ source: atlas api monitoringAndLogs downloadClusterLog --help
- label: Go
lang: go
source: |
@@ -54543,7 +54674,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters listGroupClusterProviderRegions --help
+ source: atlas api clusters listClusterProviderRegions --help
- label: Go
lang: go
source: |
@@ -54632,7 +54763,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters upgradeGroupClusterTenantUpgrade --help
+ source: atlas api clusters upgradeTenantUpgrade --help
- label: Go
lang: go
source: |
@@ -54732,7 +54863,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters upgradeGroupClusterTenantUpgradeToServerless --help
+ source: atlas api clusters upgradeClusterToServerless --help
- label: Go
lang: go
source: |
@@ -54812,7 +54943,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics listGroupCollStatMetrics --help
+ source: atlas api collectionLevelMetrics listCollStatMetrics --help
- label: Go
lang: go
source: |
@@ -55398,7 +55529,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api customDatabaseRoles listGroupCustomDbRoleRoles --help
+ source: atlas api customDatabaseRoles listCustomDbRoles --help
- label: Go
lang: go
source: |
@@ -55481,7 +55612,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api customDatabaseRoles createGroupCustomDbRoleRole --help
+ source: atlas api customDatabaseRoles createCustomDbRole --help
- label: Go
lang: go
source: |
@@ -55566,7 +55697,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api customDatabaseRoles deleteGroupCustomDbRoleRole --help
+ source: atlas api customDatabaseRoles deleteCustomDbRole --help
- label: Go
lang: go
source: |
@@ -55644,7 +55775,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api customDatabaseRoles getGroupCustomDbRoleRole --help
+ source: atlas api customDatabaseRoles getCustomDbRole --help
- label: Go
lang: go
source: |
@@ -55733,7 +55864,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api customDatabaseRoles updateGroupCustomDbRoleRole --help
+ source: atlas api customDatabaseRoles updateCustomDbRole --help
- label: Go
lang: go
source: |
@@ -55827,7 +55958,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation listGroupDataFederation --help
+ source: atlas api dataFederation listDataFederation --help
- label: Go
lang: go
source: |
@@ -55914,7 +56045,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation createGroupDataFederation --help
+ source: atlas api dataFederation createDataFederation --help
- label: Go
lang: go
source: |
@@ -55995,7 +56126,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation deleteGroupDataFederation --help
+ source: atlas api dataFederation deleteDataFederation --help
- label: Go
lang: go
source: |
@@ -56077,7 +56208,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation getGroupDataFederation --help
+ source: atlas api dataFederation getDataFederation --help
- label: Go
lang: go
source: |
@@ -56170,7 +56301,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation updateGroupDataFederation --help
+ source: atlas api dataFederation updateDataFederation --help
- label: Go
lang: go
source: |
@@ -56261,7 +56392,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation listGroupDataFederationLimits --help
+ source: atlas api dataFederation listDataFederationLimits --help
- label: Go
lang: go
source: |
@@ -56358,7 +56489,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation deleteGroupDataFederationLimit --help
+ source: atlas api dataFederation deleteDataFederationLimit --help
- label: Go
lang: go
source: |
@@ -56457,7 +56588,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation getGroupDataFederationLimit --help
+ source: atlas api dataFederation getDataFederationLimit --help
- label: Go
lang: go
source: |
@@ -56562,7 +56693,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation setGroupDataFederationLimit --help
+ source: atlas api dataFederation setDataFederationLimit --help
- label: Go
lang: go
source: |
@@ -56668,7 +56799,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation downloadGroupDataFederationQueryLogs --help
+ source: atlas api dataFederation downloadFederationQueryLogs --help
- label: Go
lang: go
source: |
@@ -56749,7 +56880,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api databaseUsers listGroupDatabaseUsers --help
+ source: atlas api databaseUsers listDatabaseUsers --help
- label: Go
lang: go
source: |
@@ -56926,7 +57057,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api databaseUsers createGroupDatabaseUser --help
+ source: atlas api databaseUsers createDatabaseUser --help
- label: Go
lang: go
source: |
@@ -57031,7 +57162,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api databaseUsers deleteGroupDatabaseUser --help
+ source: atlas api databaseUsers deleteDatabaseUser --help
- label: Go
lang: go
source: |
@@ -57133,7 +57264,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api databaseUsers getGroupDatabaseUser --help
+ source: atlas api databaseUsers getDatabaseUser --help
- label: Go
lang: go
source: |
@@ -57246,7 +57377,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api databaseUsers updateGroupDatabaseUser --help
+ source: atlas api databaseUsers updateDatabaseUser --help
- label: Go
lang: go
source: |
@@ -57334,7 +57465,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api x509Authentication listGroupDatabaseUserCerts --help
+ source: atlas api x509Authentication listDatabaseUserCerts --help
- label: Go
lang: go
source: |
@@ -57432,7 +57563,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api x509Authentication createGroupDatabaseUserCert --help
+ source: atlas api x509Authentication createDatabaseUserCert --help
- label: Go
lang: go
source: |
@@ -57555,7 +57686,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api accessTracking getGroupDbAccessHistoryCluster --help
+ source: atlas api accessTracking getAccessHistoryCluster --help
- label: Go
lang: go
source: |
@@ -57671,7 +57802,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api accessTracking getGroupDbAccessHistoryProcess --help
+ source: atlas api accessTracking getAccessHistoryProcess --help
- label: Go
lang: go
source: |
@@ -57750,7 +57881,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api encryptionAtRestUsingCustomerKeyManagement getGroupEncryptionAtRest --help
+ source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRest --help
- label: Go
lang: go
source: |
@@ -57845,7 +57976,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api encryptionAtRestUsingCustomerKeyManagement updateGroupEncryptionAtRest --help
+ source: atlas api encryptionAtRestUsingCustomerKeyManagement updateEncryptionAtRest --help
- label: Go
lang: go
source: |
@@ -57934,7 +58065,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api encryptionAtRestUsingCustomerKeyManagement listGroupEncryptionAtRestPrivateEndpoints --help
+ source: atlas api encryptionAtRestUsingCustomerKeyManagement listRestPrivateEndpoints --help
- label: Go
lang: go
source: |
@@ -58022,7 +58153,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api encryptionAtRestUsingCustomerKeyManagement createGroupEncryptionAtRestPrivateEndpoint --help
+ source: atlas api encryptionAtRestUsingCustomerKeyManagement createRestPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -58113,7 +58244,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api encryptionAtRestUsingCustomerKeyManagement requestGroupEncryptionAtRestPrivateEndpointDeletion --help
+ source: atlas api encryptionAtRestUsingCustomerKeyManagement requestPrivateEndpointDeletion --help
- label: Go
lang: go
source: |
@@ -58206,7 +58337,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api encryptionAtRestUsingCustomerKeyManagement getGroupEncryptionAtRestPrivateEndpoint --help
+ source: atlas api encryptionAtRestUsingCustomerKeyManagement getRestPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -58514,7 +58645,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexClusters listGroupFlexClusters --help
+ source: atlas api flexClusters listFlexClusters --help
- label: Go
lang: go
source: |
@@ -58599,7 +58730,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexClusters createGroupFlexCluster --help
+ source: atlas api flexClusters createFlexCluster --help
- label: Go
lang: go
source: |
@@ -58685,7 +58816,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexClusters deleteGroupFlexCluster --help
+ source: atlas api flexClusters deleteFlexCluster --help
- label: Go
lang: go
source: |
@@ -58770,7 +58901,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexClusters getGroupFlexCluster --help
+ source: atlas api flexClusters getFlexCluster --help
- label: Go
lang: go
source: |
@@ -58860,7 +58991,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexClusters updateGroupFlexCluster --help
+ source: atlas api flexClusters updateFlexCluster --help
- label: Go
lang: go
source: |
@@ -58955,7 +59086,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexSnapshots downloadGroupFlexClusterBackup --help
+ source: atlas api flexSnapshots downloadFlexBackup --help
- label: Go
lang: go
source: |
@@ -59046,7 +59177,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexRestoreJobs listGroupFlexClusterBackupRestoreJobs --help
+ source: atlas api flexRestoreJobs listFlexRestoreJobs --help
- label: Go
lang: go
source: |
@@ -59136,7 +59267,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexRestoreJobs createGroupFlexClusterBackupRestoreJob --help
+ source: atlas api flexRestoreJobs createFlexRestoreJob --help
- label: Go
lang: go
source: |
@@ -59229,7 +59360,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexRestoreJobs getGroupFlexClusterBackupRestoreJob --help
+ source: atlas api flexRestoreJobs getFlexRestoreJob --help
- label: Go
lang: go
source: |
@@ -59314,7 +59445,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexSnapshots listGroupFlexClusterBackupSnapshots --help
+ source: atlas api flexSnapshots listFlexBackupSnapshots --help
- label: Go
lang: go
source: |
@@ -59403,7 +59534,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexSnapshots getGroupFlexClusterBackupSnapshot --help
+ source: atlas api flexSnapshots getFlexBackupSnapshot --help
- label: Go
lang: go
source: |
@@ -59489,7 +59620,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api flexClusters tenantGroupFlexClusterUpgrade --help
+ source: atlas api flexClusters tenantUpgrade --help
- label: Go
lang: go
source: |
@@ -59570,7 +59701,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs listGroupHostFtsMetrics --help
+ source: atlas api monitoringAndLogs listHostFtsMetrics --help
- label: Go
lang: go
source: |
@@ -59679,7 +59810,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs getGroupHostFtsMetricIndexMeasurements --help
+ source: atlas api monitoringAndLogs getIndexMeasurements --help
- label: Go
lang: go
source: |
@@ -59787,7 +59918,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs listGroupHostFtsMetricIndexMeasurements --help
+ source: atlas api monitoringAndLogs listIndexMeasurements --help
- label: Go
lang: go
source: |
@@ -59895,7 +60026,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs listGroupHostFtsMetricMeasurements --help
+ source: atlas api monitoringAndLogs listMeasurements --help
- label: Go
lang: go
source: |
@@ -60017,7 +60148,7 @@ paths:
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Third-Party-Integrations/operation/listGroupIntegrations
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}:
delete:
- description: Removes the settings that permit configuring one third-party service integration. These settings apply to all databases managed in one MongoDB Cloud project. If you delete an integration from a project, you remove that integration configuration only for that project. This action doesn't affect any other project or organization's configured `{INTEGRATION-TYPE}` integrations. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role.
+ description: Removes the settings that permit configuring one third-party service integration. These settings apply to all databases managed in one MongoDB Cloud project. If you delete an integration from a project, you remove that integration configuration only for that project. This action doesn't affect any other project or organization's configured `{INTEGRATION-TYPE}` integrations. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role. Deleting log export to S3, Splunk, and Datadog is currently in preview. Please contact your Customer Success Manager (CSM) for access.
operationId: deleteGroupIntegration
parameters:
- description: Human-readable label that identifies the service which you want to integrate with MongoDB Cloud.
@@ -60106,7 +60237,7 @@ paths:
-X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Third-Party-Integrations/operation/deleteGroupIntegration
get:
- description: Returns the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role.
+ description: Returns the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role. Viewing log export to S3, Splunk, and Datadog is currently in preview. Please contact your Customer Success Manager (CSM) for access.
operationId: getGroupIntegration
parameters:
- $ref: '#/components/parameters/envelope'
@@ -60200,7 +60331,7 @@ paths:
-X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Third-Party-Integrations/operation/getGroupIntegration
post:
- description: Adds the settings for configuring one third-party service integration. These settings apply to all databases managed in the specified MongoDB Cloud project. Each project can have only one configuration per `{INTEGRATION-TYPE}`. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role.
+ description: Adds the settings for configuring one third-party service integration. These settings apply to all databases managed in the specified MongoDB Cloud project. Each project can have only one configuration per `{INTEGRATION-TYPE}`. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role. Enabling log export to S3, Splunk, and Datadog is currently in preview. Please contact your Customer Success Manager (CSM) for access.
operationId: createGroupIntegration
parameters:
- description: Human-readable label that identifies the service which you want to integrate with MongoDB Cloud.
@@ -60307,7 +60438,7 @@ paths:
-d '{ }'
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Third-Party-Integrations/operation/createGroupIntegration
put:
- description: Updates the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role.
+ description: Updates the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting Service Account or API Key must have the Organization Owner or Project Owner role. Enabling log export to S3, Splunk, and Datadog is currently in preview. Please contact your Customer Success Manager (CSM) for access.
operationId: updateGroupIntegration
parameters:
- description: Human-readable label that identifies the service which you want to integrate with MongoDB Cloud.
@@ -60499,7 +60630,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true"
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/listGroupInvites
patch:
deprecated: true
@@ -60585,7 +60716,7 @@ paths:
--header "Content-Type: application/json" \
-X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \
-d '{ }'
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/updateGroupInvites
post:
deprecated: true
@@ -60669,12 +60800,12 @@ paths:
--header "Content-Type: application/json" \
-X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \
-d '{ }'
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/createGroupInvite
/api/atlas/v2/groups/{groupId}/invites/{invitationId}:
delete:
deprecated: true
- description: Cancels one pending invitation sent to the specified MongoDB Cloud user to join a project. You can't cancel an invitation that the user accepted. To use this resource, the requesting Service Account or API Key must have the Project Owner role.
+ description: 'Cancels one pending invitation sent to the specified MongoDB Cloud user to join a project. You can''t cancel an invitation that the user accepted. To use this resource, the requesting Service Account or API Key must have the Project Owner role. Note: deleting a project invitation does not delete an organization invitation even if they were created together.'
operationId: deleteGroupInvite
parameters:
- $ref: '#/components/parameters/groupId'
@@ -60747,7 +60878,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}"
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/deleteGroupInvite
get:
deprecated: true
@@ -60829,7 +60960,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true"
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/getGroupInvite
patch:
deprecated: true
@@ -60876,7 +61007,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api projects updateGroupInviteById --help
+ source: atlas api projects updateInviteById --help
- label: Go
lang: go
source: |
@@ -60921,7 +61052,7 @@ paths:
--header "Content-Type: application/json" \
-X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \
-d '{ }'
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/updateGroupInviteById
x-xgen-method-verb-override:
customMethod: false
@@ -61636,7 +61767,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudMigrationService cutoverGroupLiveMigration --help
+ source: atlas api cloudMigrationService cutoverMigration --help
- label: Go
lang: go
source: |
@@ -61725,7 +61856,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudMigrationService validateGroupLiveMigrations --help
+ source: atlas api cloudMigrationService validateLiveMigrations --help
- label: Go
lang: go
source: |
@@ -61813,7 +61944,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudMigrationService getGroupLiveMigrationValidateStatus --help
+ source: atlas api cloudMigrationService getMigrationValidateStatus --help
- label: Go
lang: go
source: |
@@ -61888,7 +62019,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api maintenanceWindows resetGroupMaintenanceWindow --help
+ source: atlas api maintenanceWindows resetMaintenanceWindow --help
- label: Go
lang: go
source: |
@@ -61965,7 +62096,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api maintenanceWindows getGroupMaintenanceWindow --help
+ source: atlas api maintenanceWindows getMaintenanceWindow --help
- label: Go
lang: go
source: |
@@ -62043,7 +62174,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api maintenanceWindows updateGroupMaintenanceWindow --help
+ source: atlas api maintenanceWindows updateMaintenanceWindow --help
- label: Go
lang: go
source: |
@@ -62119,7 +62250,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api maintenanceWindows toggleGroupMaintenanceWindowAutoDefer --help
+ source: atlas api maintenanceWindows toggleMaintenanceAutoDefer --help
- label: Go
lang: go
source: |
@@ -62198,7 +62329,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api maintenanceWindows deferGroupMaintenanceWindow --help
+ source: atlas api maintenanceWindows deferMaintenanceWindow --help
- label: Go
lang: go
source: |
@@ -62281,7 +62412,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor getGroupManagedSlowMs --help
+ source: atlas api performanceAdvisor getManagedSlowMs --help
- label: Go
lang: go
source: |
@@ -62354,7 +62485,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor disableGroupManagedSlowMs --help
+ source: atlas api performanceAdvisor disableManagedSlowMs --help
- label: Go
lang: go
source: |
@@ -62429,7 +62560,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor enableGroupManagedSlowMs --help
+ source: atlas api performanceAdvisor enableManagedSlowMs --help
- label: Go
lang: go
source: |
@@ -62548,7 +62679,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api projects getGroupMongoDbVersions --help
+ source: atlas api projects getMongoDbVersions --help
- label: Go
lang: go
source: |
@@ -63065,7 +63196,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines listGroupPipelines --help
+ source: atlas api dataLakePipelines listPipelines --help
- label: Go
lang: go
source: |
@@ -63150,7 +63281,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines createGroupPipeline --help
+ source: atlas api dataLakePipelines createPipeline --help
- label: Go
lang: go
source: |
@@ -63233,7 +63364,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines deleteGroupPipeline --help
+ source: atlas api dataLakePipelines deletePipeline --help
- label: Go
lang: go
source: |
@@ -63318,7 +63449,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines getGroupPipeline --help
+ source: atlas api dataLakePipelines getPipeline --help
- label: Go
lang: go
source: |
@@ -63409,7 +63540,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines updateGroupPipeline --help
+ source: atlas api dataLakePipelines updatePipeline --help
- label: Go
lang: go
source: |
@@ -63504,7 +63635,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines getGroupPipelineAvailableSchedules --help
+ source: atlas api dataLakePipelines getAvailablePipelineSchedules --help
- label: Go
lang: go
source: |
@@ -63600,7 +63731,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines getGroupPipelineAvailableSnapshots --help
+ source: atlas api dataLakePipelines getAvailablePipelineSnapshots --help
- label: Go
lang: go
source: |
@@ -63684,7 +63815,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines pauseGroupPipeline --help
+ source: atlas api dataLakePipelines pausePipeline --help
- label: Go
lang: go
source: |
@@ -63774,7 +63905,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines resumeGroupPipeline --help
+ source: atlas api dataLakePipelines resumePipeline --help
- label: Go
lang: go
source: |
@@ -63875,7 +64006,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines listGroupPipelineRuns --help
+ source: atlas api dataLakePipelines listPipelineRuns --help
- label: Go
lang: go
source: |
@@ -63967,7 +64098,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines deleteGroupPipelineRun --help
+ source: atlas api dataLakePipelines deletePipelineRun --help
- label: Go
lang: go
source: |
@@ -64060,7 +64191,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines getGroupPipelineRun --help
+ source: atlas api dataLakePipelines getPipelineRun --help
- label: Go
lang: go
source: |
@@ -64151,7 +64282,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataLakePipelines triggerGroupPipeline --help
+ source: atlas api dataLakePipelines triggerPipeline --help
- label: Go
lang: go
source: |
@@ -64254,7 +64385,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices listGroupPrivateEndpointEndpointService --help
+ source: atlas api privateEndpointServices listPrivateEndpointService --help
- label: Go
lang: go
source: |
@@ -64347,7 +64478,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices deleteGroupPrivateEndpointEndpointService --help
+ source: atlas api privateEndpointServices deletePrivateEndpointService --help
- label: Go
lang: go
source: |
@@ -64443,7 +64574,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices getGroupPrivateEndpointEndpointService --help
+ source: atlas api privateEndpointServices getPrivateEndpointService --help
- label: Go
lang: go
source: |
@@ -64549,7 +64680,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices createGroupPrivateEndpointEndpointServiceEndpoint --help
+ source: atlas api privateEndpointServices createPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -64653,7 +64784,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices deleteGroupPrivateEndpointEndpointServiceEndpoint --help
+ source: atlas api privateEndpointServices deletePrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -64756,7 +64887,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices getGroupPrivateEndpointEndpointServiceEndpoint --help
+ source: atlas api privateEndpointServices getPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -64841,7 +64972,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices createGroupPrivateEndpointEndpointService --help
+ source: atlas api privateEndpointServices createPrivateEndpointService --help
- label: Go
lang: go
source: |
@@ -64918,7 +65049,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices getGroupPrivateEndpointRegionalMode --help
+ source: atlas api privateEndpointServices getRegionalEndpointMode --help
- label: Go
lang: go
source: |
@@ -65002,7 +65133,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api privateEndpointServices toggleGroupPrivateEndpointRegionalMode --help
+ source: atlas api privateEndpointServices toggleRegionalEndpointMode --help
- label: Go
lang: go
source: |
@@ -65101,7 +65232,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessPrivateEndpoints listGroupPrivateEndpointServerlessInstanceEndpoint --help
+ source: atlas api serverlessPrivateEndpoints listServerlessPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -65196,7 +65327,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessPrivateEndpoints createGroupPrivateEndpointServerlessInstanceEndpoint --help
+ source: atlas api serverlessPrivateEndpoints createServerlessPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -65289,7 +65420,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessPrivateEndpoints deleteGroupPrivateEndpointServerlessInstanceEndpoint --help
+ source: atlas api serverlessPrivateEndpoints deleteServerlessPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -65381,7 +65512,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessPrivateEndpoints getGroupPrivateEndpointServerlessInstanceEndpoint --help
+ source: atlas api serverlessPrivateEndpoints getServerlessPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -65478,7 +65609,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessPrivateEndpoints updateGroupPrivateEndpointServerlessInstanceEndpoint --help
+ source: atlas api serverlessPrivateEndpoints updateServerlessPrivateEndpoint --help
- label: Go
lang: go
source: |
@@ -65561,7 +65692,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api networkPeering verifyGroupPrivateIpMode --help
+ source: atlas api networkPeering verifyPrivateIpMode --help
- label: Go
lang: go
source: |
@@ -65649,7 +65780,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api networkPeering disableGroupPrivateIpModePeering --help
+ source: atlas api networkPeering disablePeering --help
- label: Go
lang: go
source: |
@@ -65734,7 +65865,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation listGroupPrivateNetworkSettingEndpointIds --help
+ source: atlas api dataFederation listPrivateEndpointIds --help
- label: Go
lang: go
source: |
@@ -65834,7 +65965,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation createGroupPrivateNetworkSettingEndpointId --help
+ source: atlas api dataFederation createPrivateEndpointId --help
- label: Go
lang: go
source: |
@@ -65916,7 +66047,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation deleteGroupPrivateNetworkSettingEndpointId --help
+ source: atlas api dataFederation deletePrivateEndpointId --help
- label: Go
lang: go
source: |
@@ -65997,7 +66128,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api dataFederation getGroupPrivateNetworkSettingEndpointId --help
+ source: atlas api dataFederation getPrivateEndpointId --help
- label: Go
lang: go
source: |
@@ -66268,7 +66399,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics listGroupProcessCollStatMeasurements --help
+ source: atlas api collectionLevelMetrics listProcessMeasurements --help
- label: Go
lang: go
source: |
@@ -66344,7 +66475,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api collectionLevelMetrics getGroupProcessCollStatNamespaces --help
+ source: atlas api collectionLevelMetrics getProcessNamespaces --help
- label: Go
lang: go
source: |
@@ -66434,7 +66565,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs listGroupProcessDatabases --help
+ source: atlas api monitoringAndLogs listDatabases --help
- label: Go
lang: go
source: |
@@ -66523,7 +66654,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs getGroupProcessDatabase --help
+ source: atlas api monitoringAndLogs getDatabase --help
- label: Go
lang: go
source: |
@@ -66638,7 +66769,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs getGroupProcessDatabaseMeasurements --help
+ source: atlas api monitoringAndLogs getDatabaseMeasurements --help
- label: Go
lang: go
source: |
@@ -66722,7 +66853,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs listGroupProcessDisks --help
+ source: atlas api monitoringAndLogs listProcessDisks --help
- label: Go
lang: go
source: |
@@ -66810,7 +66941,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs getGroupProcessDisk --help
+ source: atlas api monitoringAndLogs getProcessDisk --help
- label: Go
lang: go
source: |
@@ -66944,7 +67075,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs getGroupProcessDiskMeasurements --help
+ source: atlas api monitoringAndLogs getProcessDiskMeasurements --help
- label: Go
lang: go
source: |
@@ -67191,7 +67322,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api monitoringAndLogs getGroupProcessMeasurements --help
+ source: atlas api monitoringAndLogs getProcessMeasurements --help
- label: Go
lang: go
source: |
@@ -67296,7 +67427,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor listGroupProcessPerformanceAdvisorNamespaces --help
+ source: atlas api performanceAdvisor listPerformanceAdvisorNamespaces --help
- label: Go
lang: go
source: |
@@ -67436,7 +67567,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor listGroupProcessPerformanceAdvisorSlowQueryLogs --help
+ source: atlas api performanceAdvisor listSlowQueryLogs --help
- label: Go
lang: go
source: |
@@ -67565,7 +67696,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor listGroupProcessPerformanceAdvisorSuggestedIndexes --help
+ source: atlas api performanceAdvisor listSuggestedIndexes --help
- label: Go
lang: go
source: |
@@ -67638,7 +67769,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api pushBasedLogExport deleteGroupPushBasedLogExport --help
+ source: atlas api pushBasedLogExport deleteLogExport --help
- label: Go
lang: go
source: |
@@ -67713,7 +67844,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api pushBasedLogExport getGroupPushBasedLogExport --help
+ source: atlas api pushBasedLogExport getLogExport --help
- label: Go
lang: go
source: |
@@ -67796,7 +67927,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api pushBasedLogExport updateGroupPushBasedLogExport --help
+ source: atlas api pushBasedLogExport updateLogExport --help
- label: Go
lang: go
source: |
@@ -67880,7 +68011,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api pushBasedLogExport createGroupPushBasedLogExport --help
+ source: atlas api pushBasedLogExport createLogExport --help
- label: Go
lang: go
source: |
@@ -67967,7 +68098,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters requestGroupSampleDatasetLoad --help
+ source: atlas api clusters requestSampleDatasetLoad --help
- label: Go
lang: go
source: |
@@ -68055,7 +68186,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api clusters getGroupSampleDatasetLoad --help
+ source: atlas api clusters getSampleDatasetLoad --help
- label: Go
lang: go
source: |
@@ -68139,7 +68270,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessInstances listGroupServerlessInstances --help
+ source: atlas api serverlessInstances listServerlessInstances --help
- label: Go
lang: go
source: |
@@ -68233,7 +68364,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessInstances createGroupServerlessInstance --help
+ source: atlas api serverlessInstances createServerlessInstance --help
- label: Go
lang: go
source: |
@@ -68331,7 +68462,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups listGroupServerlessBackupRestoreJobs --help
+ source: atlas api cloudBackups listServerlessRestoreJobs --help
- label: Go
lang: go
source: |
@@ -68427,7 +68558,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups createGroupServerlessBackupRestoreJob --help
+ source: atlas api cloudBackups createServerlessRestoreJob --help
- label: Go
lang: go
source: |
@@ -68528,7 +68659,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupServerlessBackupRestoreJob --help
+ source: atlas api cloudBackups getServerlessRestoreJob --help
- label: Go
lang: go
source: |
@@ -68619,7 +68750,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups listGroupServerlessBackupSnapshots --help
+ source: atlas api cloudBackups listServerlessBackupSnapshots --help
- label: Go
lang: go
source: |
@@ -68716,7 +68847,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudBackups getGroupServerlessBackupSnapshot --help
+ source: atlas api cloudBackups getServerlessBackupSnapshot --help
- label: Go
lang: go
source: |
@@ -68801,7 +68932,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor getGroupServerlessPerformanceAdvisorAutoIndexing --help
+ source: atlas api performanceAdvisor getServerlessAutoIndexing --help
- label: Go
lang: go
source: |
@@ -68891,7 +69022,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api performanceAdvisor setGroupServerlessPerformanceAdvisorAutoIndexing --help
+ source: atlas api performanceAdvisor setServerlessAutoIndexing --help
- label: Go
lang: go
source: |
@@ -68988,7 +69119,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessInstances deleteGroupServerlessInstance --help
+ source: atlas api serverlessInstances deleteServerlessInstance --help
- label: Go
lang: go
source: |
@@ -69082,7 +69213,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessInstances getGroupServerlessInstance --help
+ source: atlas api serverlessInstances getServerlessInstance --help
- label: Go
lang: go
source: |
@@ -69181,7 +69312,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serverlessInstances updateGroupServerlessInstance --help
+ source: atlas api serverlessInstances updateServerlessInstance --help
- label: Go
lang: go
source: |
@@ -69683,7 +69814,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts listGroupServiceAccountAccessList --help
+ source: atlas api serviceAccounts listAccessList --help
- label: Go
lang: go
source: |
@@ -69781,7 +69912,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts createGroupServiceAccountAccessList --help
+ source: atlas api serviceAccounts createAccessList --help
- label: Go
lang: go
source: |
@@ -69874,7 +70005,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts deleteGroupServiceAccountAccessListEntry --help
+ source: atlas api serviceAccounts deleteGroupAccessEntry --help
- label: Go
lang: go
source: |
@@ -69967,7 +70098,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts createGroupServiceAccountSecret --help
+ source: atlas api serviceAccounts createGroupSecret --help
- label: Go
lang: go
source: |
@@ -70056,7 +70187,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts deleteGroupServiceAccountSecret --help
+ source: atlas api serviceAccounts deleteGroupSecret --help
- label: Go
lang: go
source: |
@@ -70349,7 +70480,7 @@ paths:
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/updateGroupSettings
/api/atlas/v2/groups/{groupId}/streams:
get:
- description: Returns all stream instances for the specified project.
+ description: Returns all stream workspaces for the specified project.
operationId: listGroupStreamWorkspaces
parameters:
- $ref: '#/components/parameters/groupId'
@@ -70373,13 +70504,13 @@ paths:
$ref: '#/components/responses/notFound'
"500":
$ref: '#/components/responses/internalServerError'
- summary: Return All Stream Instances in One Project
+ summary: Return All Stream Workspaces in One Project
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams listGroupStreamWorkspaces --help
+ source: atlas api streams listStreamWorkspaces --help
- label: Go
lang: go
source: |
@@ -70428,7 +70559,7 @@ paths:
verb: listWorkspaces
x-xgen-operation-id-override: listStreamWorkspaces
post:
- description: Creates one stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
+ description: Creates one stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
operationId: createGroupStreamWorkspace
parameters:
- $ref: '#/components/parameters/envelope'
@@ -70439,7 +70570,7 @@ paths:
application/vnd.atlas.2023-02-01+json:
schema:
$ref: '#/components/schemas/StreamsTenant'
- description: Details to create one streams instance in the specified project.
+ description: Details to create one streams workspace in the specified project.
required: true
responses:
"200":
@@ -70459,13 +70590,13 @@ paths:
$ref: '#/components/responses/notFound'
"500":
$ref: '#/components/responses/internalServerError'
- summary: Create One Stream Instance
+ summary: Create One Stream Workspace
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams createGroupStreamWorkspace --help
+ source: atlas api streams createStreamWorkspace --help
- label: Go
lang: go
source: |
@@ -70519,13 +70650,13 @@ paths:
x-xgen-operation-id-override: createStreamWorkspace
/api/atlas/v2/groups/{groupId}/streams/{tenantName}:
delete:
- description: Delete one stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
+ description: Delete one stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
operationId: deleteGroupStreamWorkspace
parameters:
- $ref: '#/components/parameters/envelope'
- $ref: '#/components/parameters/pretty'
- $ref: '#/components/parameters/groupId'
- - description: Human-readable label that identifies the stream instance to delete.
+ - description: Label that identifies the stream workspace to delete.
in: path
name: tenantName
required: true
@@ -70545,13 +70676,13 @@ paths:
$ref: '#/components/responses/notFound'
"500":
$ref: '#/components/responses/internalServerError'
- summary: Delete One Stream Instance
+ summary: Delete One Stream Workspace
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams deleteGroupStreamWorkspace --help
+ source: atlas api streams deleteStreamWorkspace --help
- label: Go
lang: go
source: |
@@ -70600,18 +70731,18 @@ paths:
verb: deleteWorkspace
x-xgen-operation-id-override: deleteStreamWorkspace
get:
- description: Returns the details of one stream instance within the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role.
+ description: Returns the details of one stream workspace within the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role.
operationId: getGroupStreamWorkspace
parameters:
- $ref: '#/components/parameters/envelope'
- $ref: '#/components/parameters/groupId'
- - description: Human-readable label that identifies the stream instance to return.
+ - description: Label that identifies the stream workspace to return.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Flag to indicate whether connections information should be included in the stream instance.
+ - description: Flag to indicate whether connections information should be included in the stream workspace.
in: query
name: includeConnections
schema:
@@ -70636,13 +70767,13 @@ paths:
$ref: '#/components/responses/notFound'
"500":
$ref: '#/components/responses/internalServerError'
- summary: Return One Stream Instance
+ summary: Return One Stream Workspace
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams getGroupStreamWorkspace --help
+ source: atlas api streams getStreamWorkspace --help
- label: Go
lang: go
source: |
@@ -70691,13 +70822,13 @@ paths:
verb: getWorkspace
x-xgen-operation-id-override: getStreamWorkspace
patch:
- description: Update one stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
+ description: Update one stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
operationId: updateGroupStreamWorkspace
parameters:
- $ref: '#/components/parameters/envelope'
- $ref: '#/components/parameters/pretty'
- $ref: '#/components/parameters/groupId'
- - description: Human-readable label that identifies the stream instance to update.
+ - description: Label that identifies the stream workspace to update.
in: path
name: tenantName
required: true
@@ -70708,7 +70839,7 @@ paths:
application/vnd.atlas.2023-02-01+json:
schema:
$ref: '#/components/schemas/StreamsDataProcessRegion'
- description: Details of the new data process region to update in the streams instance.
+ description: Details of the new data process region to update in the streams workspace.
required: true
responses:
"200":
@@ -70728,13 +70859,13 @@ paths:
$ref: '#/components/responses/notFound'
"500":
$ref: '#/components/responses/internalServerError'
- summary: Update One Stream Instance
+ summary: Update One Stream Workspace
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams updateGroupStreamWorkspace --help
+ source: atlas api streams updateStreamWorkspace --help
- label: Go
lang: go
source: |
@@ -70788,7 +70919,7 @@ paths:
x-xgen-operation-id-override: updateStreamWorkspace
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs:
get:
- description: 'Downloads the audit logs for the specified Atlas Streams Processing instance. By default, logs cover periods of 30 days. To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".'
+ description: 'Downloads the audit logs for the specified Atlas Streams Processing workspace. By default, logs cover periods of 30 days. To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".'
operationId: downloadGroupStreamAuditLogs
parameters:
- $ref: '#/components/parameters/envelope'
@@ -70809,7 +70940,7 @@ paths:
format: int64
pattern: "1199145600"
type: integer
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
@@ -70837,13 +70968,13 @@ paths:
$ref: '#/components/responses/conflict'
"500":
$ref: '#/components/responses/internalServerError'
- summary: Download Audit Logs for One Atlas Stream Processing Instance
+ summary: Download Audit Logs for One Atlas Stream Processing Workspace
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams downloadGroupStreamAuditLogs --help
+ source: atlas api streams downloadAuditLogs --help
- label: Go
lang: go
source: |
@@ -70893,7 +71024,7 @@ paths:
x-xgen-operation-id-override: downloadAuditLogs
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections:
get:
- description: Returns all connections of the stream instance for the specified project.To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role.
+ description: Returns all connections of the stream workspace for the specified project.To use this resource, the requesting Service Account or API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role.
operationId: listGroupStreamConnections
parameters:
- $ref: '#/components/parameters/groupId'
@@ -70901,7 +71032,7 @@ paths:
- $ref: '#/components/parameters/itemsPerPage'
- $ref: '#/components/parameters/pageNum'
- $ref: '#/components/parameters/pretty'
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
@@ -70923,13 +71054,13 @@ paths:
$ref: '#/components/responses/notFound'
"500":
$ref: '#/components/responses/internalServerError'
- summary: Return All Connections of the Stream Instances
+ summary: Return All Connections of the Stream Workspaces
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams listGroupStreamConnections --help
+ source: atlas api streams listStreamConnections --help
- label: Go
lang: go
source: |
@@ -70975,13 +71106,13 @@ paths:
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/listGroupStreamConnections
x-xgen-operation-id-override: listStreamConnections
post:
- description: Creates one connection for a stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Owner or Project Stream Processing Owner role.
+ description: Creates one connection for a stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Owner or Project Stream Processing Owner role.
operationId: createGroupStreamConnection
parameters:
- $ref: '#/components/parameters/envelope'
- $ref: '#/components/parameters/pretty'
- $ref: '#/components/parameters/groupId'
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
@@ -70992,7 +71123,7 @@ paths:
application/vnd.atlas.2023-02-01+json:
schema:
$ref: '#/components/schemas/StreamsConnection'
- description: Details to create one connection for a streams instance in the specified project.
+ description: Details to create one connection for a streams workspace in the specified project.
required: true
responses:
"200":
@@ -71020,7 +71151,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams createGroupStreamConnection --help
+ source: atlas api streams createStreamConnection --help
- label: Go
lang: go
source: |
@@ -71071,19 +71202,19 @@ paths:
x-xgen-operation-id-override: createStreamConnection
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}:
delete:
- description: Delete one connection of the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Delete one connection of the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: deleteGroupStreamConnection
parameters:
- $ref: '#/components/parameters/envelope'
- $ref: '#/components/parameters/pretty'
- $ref: '#/components/parameters/groupId'
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream connection.
+ - description: Label that identifies the stream connection.
in: path
name: connectionName
required: true
@@ -71111,7 +71242,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams deleteGroupStreamConnection --help
+ source: atlas api streams deleteStreamConnection --help
- label: Go
lang: go
source: |
@@ -71157,18 +71288,18 @@ paths:
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/deleteGroupStreamConnection
x-xgen-operation-id-override: deleteStreamConnection
get:
- description: Returns the details of one stream connection within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Read Only role.
+ description: Returns the details of one stream connection within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Read Only role.
operationId: getGroupStreamConnection
parameters:
- $ref: '#/components/parameters/envelope'
- $ref: '#/components/parameters/groupId'
- - description: Human-readable label that identifies the stream instance to return.
+ - description: Label that identifies the stream workspace to return.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream connection to return.
+ - description: Label that identifies the stream connection to return.
in: path
name: connectionName
required: true
@@ -71198,7 +71329,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams getGroupStreamConnection --help
+ source: atlas api streams getStreamConnection --help
- label: Go
lang: go
source: |
@@ -71244,19 +71375,19 @@ paths:
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/getGroupStreamConnection
x-xgen-operation-id-override: getStreamConnection
patch:
- description: Update one connection for the specified stream instance in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Update one connection for the specified stream workspace in the specified project. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: updateGroupStreamConnection
parameters:
- $ref: '#/components/parameters/envelope'
- $ref: '#/components/parameters/pretty'
- $ref: '#/components/parameters/groupId'
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream connection.
+ - description: Label that identifies the stream connection.
in: path
name: connectionName
required: true
@@ -71267,7 +71398,7 @@ paths:
application/vnd.atlas.2023-02-01+json:
schema:
$ref: '#/components/schemas/StreamsConnection'
- description: Details to update one connection for a streams instance in the specified project.
+ description: Details to update one connection for a streams workspace in the specified project.
required: true
responses:
"200":
@@ -71295,7 +71426,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams updateGroupStreamConnection --help
+ source: atlas api streams updateStreamConnection --help
- label: Go
lang: go
source: |
@@ -71346,13 +71477,13 @@ paths:
x-xgen-operation-id-override: updateStreamConnection
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor:
post:
- description: Create one Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Create one Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: createGroupStreamProcessor
parameters:
- $ref: '#/components/parameters/envelope'
- $ref: '#/components/parameters/pretty'
- $ref: '#/components/parameters/groupId'
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
@@ -71391,7 +71522,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams createGroupStreamProcessor --help
+ source: atlas api streams createStreamProcessor --help
- label: Go
lang: go
source: |
@@ -71440,19 +71571,19 @@ paths:
x-xgen-operation-id-override: createStreamProcessor
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:
delete:
- description: Delete a Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Delete a Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: deleteGroupStreamProcessor
parameters:
- $ref: '#/components/parameters/envelope'
- $ref: '#/components/parameters/pretty'
- $ref: '#/components/parameters/groupId'
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream processor.
+ - description: Label that identifies the stream processor.
in: path
name: processorName
required: true
@@ -71478,7 +71609,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams deleteGroupStreamProcessor --help
+ source: atlas api streams deleteStreamProcessor --help
- label: Go
lang: go
source: |
@@ -71522,19 +71653,19 @@ paths:
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/deleteGroupStreamProcessor
x-xgen-operation-id-override: deleteStreamProcessor
get:
- description: Get one Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Get one Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: getGroupStreamProcessor
parameters:
- $ref: '#/components/parameters/envelope'
- $ref: '#/components/parameters/pretty'
- $ref: '#/components/parameters/groupId'
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream processor.
+ - description: Label that identifies the stream processor.
in: path
name: processorName
required: true
@@ -71566,7 +71697,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams getGroupStreamProcessor --help
+ source: atlas api streams getStreamProcessor --help
- label: Go
lang: go
source: |
@@ -71610,19 +71741,19 @@ paths:
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Streams/operation/getGroupStreamProcessor
x-xgen-operation-id-override: getStreamProcessor
patch:
- description: Modify one existing Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Modify one existing Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: updateGroupStreamProcessor
parameters:
- $ref: '#/components/parameters/envelope'
- $ref: '#/components/parameters/pretty'
- $ref: '#/components/parameters/groupId'
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream processor.
+ - description: Label that identifies the stream processor.
in: path
name: processorName
required: true
@@ -71659,7 +71790,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams updateGroupStreamProcessor --help
+ source: atlas api streams updateStreamProcessor --help
- label: Go
lang: go
source: |
@@ -71708,19 +71839,19 @@ paths:
x-xgen-operation-id-override: updateStreamProcessor
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start:
post:
- description: Start a Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Start a Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: startGroupStreamProcessor
parameters:
- $ref: '#/components/parameters/envelope'
- $ref: '#/components/parameters/pretty'
- $ref: '#/components/parameters/groupId'
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream processor.
+ - description: Label that identifies the stream processor.
in: path
name: processorName
required: true
@@ -71746,7 +71877,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams startGroupStreamProcessor --help
+ source: atlas api streams startStreamProcessor --help
- label: Go
lang: go
source: |
@@ -71795,19 +71926,19 @@ paths:
x-xgen-operation-id-override: startStreamProcessor
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:startWith:
post:
- description: Start a Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Start a Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: startGroupStreamProcessorWith
parameters:
- $ref: '#/components/parameters/envelope'
- $ref: '#/components/parameters/pretty'
- $ref: '#/components/parameters/groupId'
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream processor.
+ - description: Label that identifies the stream processor.
in: path
name: processorName
required: true
@@ -71840,7 +71971,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams startGroupStreamProcessorWith --help
+ source: atlas api streams startStreamProcessorWith --help
- label: Go
lang: go
source: |
@@ -71889,19 +72020,19 @@ paths:
x-xgen-operation-id-override: startStreamProcessorWith
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop:
post:
- description: Stop a Stream Processor within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Stop a Stream Processor within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: stopGroupStreamProcessor
parameters:
- $ref: '#/components/parameters/envelope'
- $ref: '#/components/parameters/pretty'
- $ref: '#/components/parameters/groupId'
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
schema:
type: string
- - description: Human-readable label that identifies the stream processor.
+ - description: Label that identifies the stream processor.
in: path
name: processorName
required: true
@@ -71927,7 +72058,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams stopGroupStreamProcessor --help
+ source: atlas api streams stopStreamProcessor --help
- label: Go
lang: go
source: |
@@ -71976,7 +72107,7 @@ paths:
x-xgen-operation-id-override: stopStreamProcessor
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors:
get:
- description: Returns all Stream Processors within the specified stream instance. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
+ description: Returns all Stream Processors within the specified stream workspace. To use this resource, the requesting Service Account or API Key must have the Project Owner role or Project Stream Processing Owner role.
operationId: getGroupStreamProcessors
parameters:
- $ref: '#/components/parameters/envelope'
@@ -71985,7 +72116,7 @@ paths:
- $ref: '#/components/parameters/itemsPerPage'
- $ref: '#/components/parameters/pageNum'
- $ref: '#/components/parameters/includeCount'
- - description: Human-readable label that identifies the stream instance.
+ - description: Label that identifies the stream workspace.
in: path
name: tenantName
required: true
@@ -72012,13 +72143,13 @@ paths:
$ref: '#/components/responses/notFound'
"500":
$ref: '#/components/responses/internalServerError'
- summary: Return All Stream Processors in One Stream Instance
+ summary: Return All Stream Processors in One Stream Workspace
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams getGroupStreamProcessors --help
+ source: atlas api streams getStreamProcessors --help
- label: Go
lang: go
source: |
@@ -72102,7 +72233,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams getGroupStreamAccountDetails --help
+ source: atlas api streams getAccountDetails --help
- label: Go
lang: go
source: |
@@ -72178,7 +72309,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams listGroupStreamActiveVpcPeeringConnections --help
+ source: atlas api streams listActivePeeringConnections --help
- label: Go
lang: go
source: |
@@ -72253,7 +72384,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams listGroupStreamPrivateLinkConnections --help
+ source: atlas api streams listPrivateLinkConnections --help
- label: Go
lang: go
source: |
@@ -72338,7 +72469,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams createGroupStreamPrivateLinkConnection --help
+ source: atlas api streams createPrivateLinkConnection --help
- label: Go
lang: go
source: |
@@ -72421,7 +72552,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams deleteGroupStreamPrivateLinkConnection --help
+ source: atlas api streams deletePrivateLinkConnection --help
- label: Go
lang: go
source: |
@@ -72500,7 +72631,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams getGroupStreamPrivateLinkConnection --help
+ source: atlas api streams getPrivateLinkConnection --help
- label: Go
lang: go
source: |
@@ -72581,7 +72712,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams listGroupStreamVpcPeeringConnections --help
+ source: atlas api streams listVpcPeeringConnections --help
- label: Go
lang: go
source: |
@@ -72657,7 +72788,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams deleteGroupStreamVpcPeeringConnection --help
+ source: atlas api streams deleteVpcPeeringConnection --help
- label: Go
lang: go
source: |
@@ -72740,7 +72871,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams acceptGroupStreamVpcPeeringConnection --help
+ source: atlas api streams acceptVpcPeeringConnection --help
- label: Go
lang: go
source: |
@@ -72820,7 +72951,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams rejectGroupStreamVpcPeeringConnection --help
+ source: atlas api streams rejectVpcPeeringConnection --help
- label: Go
lang: go
source: |
@@ -72869,7 +73000,7 @@ paths:
x-xgen-operation-id-override: rejectVpcPeeringConnection
/api/atlas/v2/groups/{groupId}/streams:withSampleConnections:
post:
- description: Creates one stream instance in the specified project with sample connections. To use this resource the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
+ description: Creates one stream workspace in the specified project with sample connections. To use this resource the requesting Service Account or API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role.
operationId: withGroupStreamSampleConnections
parameters:
- $ref: '#/components/parameters/envelope'
@@ -72880,7 +73011,7 @@ paths:
application/vnd.atlas.2024-08-05+json:
schema:
$ref: '#/components/schemas/TenantWithSampleConnections'
- description: Details to create one streams instance in the specified project.
+ description: Details to create one streams workspace in the specified project.
required: true
responses:
"200":
@@ -72900,13 +73031,13 @@ paths:
$ref: '#/components/responses/notFound'
"500":
$ref: '#/components/responses/internalServerError'
- summary: Create One Stream Instance with Sample Connections
+ summary: Create One Stream Workspace with Sample Connections
tags:
- Streams
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api streams withGroupStreamSampleConnections --help
+ source: atlas api streams withStreamSampleConnections --help
- label: Go
lang: go
source: |
@@ -73417,7 +73548,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api ldapConfiguration getGroupUserSecurity --help
+ source: atlas api ldapConfiguration getUserSecurity --help
- label: Go
lang: go
source: |
@@ -73501,7 +73632,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api ldapConfiguration updateGroupUserSecurity --help
+ source: atlas api ldapConfiguration updateUserSecurity --help
- label: Go
lang: go
source: |
@@ -73580,7 +73711,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api x509Authentication disableGroupUserSecurityCustomerX509 --help
+ source: atlas api x509Authentication disableSecurityCustomerX509 --help
- label: Go
lang: go
source: |
@@ -73656,7 +73787,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api ldapConfiguration deleteGroupUserSecurityLdapUserToDnMapping --help
+ source: atlas api ldapConfiguration deleteLdapUserMapping --help
- label: Go
lang: go
source: |
@@ -73738,7 +73869,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api ldapConfiguration verifyGroupUserSecurityLdap --help
+ source: atlas api ldapConfiguration verifyUserSecurityLdap --help
- label: Go
lang: go
source: |
@@ -73824,7 +73955,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api ldapConfiguration getGroupUserSecurityLdapVerify --help
+ source: atlas api ldapConfiguration getUserSecurityVerify --help
- label: Go
lang: go
source: |
@@ -74333,7 +74464,7 @@ paths:
--header "Content-Type: application/json" \
-X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \
-d '{ }'
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/updateGroupUserRoles
/api/atlas/v2/groups/{groupId}/users/{userId}:addRole:
post:
@@ -75579,7 +75710,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api programmaticApiKeys listOrgApiKeyAccessListEntries --help
+ source: atlas api programmaticApiKeys listOrgAccessEntries --help
- label: Go
lang: go
source: |
@@ -75677,7 +75808,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api programmaticApiKeys createOrgApiKeyAccessListEntry --help
+ source: atlas api programmaticApiKeys createOrgAccessEntry --help
- label: Go
lang: go
source: |
@@ -75775,7 +75906,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api programmaticApiKeys deleteOrgApiKeyAccessListEntry --help
+ source: atlas api programmaticApiKeys deleteAccessEntry --help
- label: Go
lang: go
source: |
@@ -75868,7 +75999,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api programmaticApiKeys getOrgApiKeyAccessListEntry --help
+ source: atlas api programmaticApiKeys getOrgAccessEntry --help
- label: Go
lang: go
source: |
@@ -75952,7 +76083,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api invoices createOrgBillingCostExplorerUsageProcess --help
+ source: atlas api invoices createCostExplorerProcess --help
- label: Go
lang: go
source: |
@@ -76058,7 +76189,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api invoices getOrgBillingCostExplorerUsage --help
+ source: atlas api invoices getCostExplorerUsage --help
- label: Go
lang: go
source: |
@@ -76344,7 +76475,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api federatedAuthentication getOrgFederationSettings --help
+ source: atlas api federatedAuthentication getFederationSettings --help
- label: Go
lang: go
source: |
@@ -76574,7 +76705,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true"
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Organizations/operation/listOrgInvites
patch:
deprecated: true
@@ -76666,7 +76797,7 @@ paths:
--header "Content-Type: application/json" \
-X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \
-d '{ }'
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Organizations/operation/updateOrgInvites
post:
deprecated: true
@@ -76758,7 +76889,7 @@ paths:
--header "Content-Type: application/json" \
-X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \
-d '{ }'
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Organizations/operation/createOrgInvite
/api/atlas/v2/orgs/{orgId}/invites/{invitationId}:
delete:
@@ -76844,7 +76975,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}"
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Organizations/operation/deleteOrgInvite
get:
deprecated: true
@@ -76933,7 +77064,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true"
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Organizations/operation/getOrgInvite
patch:
deprecated: true
@@ -77032,7 +77163,7 @@ paths:
--header "Content-Type: application/json" \
-X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \
-d '{ }'
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Organizations/operation/updateOrgInviteById
x-xgen-method-verb-override:
customMethod: false
@@ -77130,7 +77261,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api invoices listOrgInvoices --help
+ source: atlas api invoices listInvoices --help
- label: Go
lang: go
source: |
@@ -77225,7 +77356,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api invoices getOrgInvoice --help
+ source: atlas api invoices getInvoice --help
- label: Go
lang: go
source: |
@@ -77314,7 +77445,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api invoices getOrgInvoiceCsv --help
+ source: atlas api invoices getInvoiceCsv --help
- label: Go
lang: go
source: |
@@ -77404,7 +77535,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api invoices searchOrgInvoiceLineItems --help
+ source: atlas api invoices searchInvoiceLineItems --help
- label: Go
lang: go
source: |
@@ -77477,7 +77608,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api invoices listOrgInvoicePending --help
+ source: atlas api invoices listInvoicePending --help
- label: Go
lang: go
source: |
@@ -77556,7 +77687,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudMigrationService listOrgLiveMigrationAvailableProjects --help
+ source: atlas api cloudMigrationService listAvailableProjects --help
- label: Go
lang: go
source: |
@@ -77628,7 +77759,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudMigrationService deleteOrgLiveMigrationLinkTokens --help
+ source: atlas api cloudMigrationService deleteLinkTokens --help
- label: Go
lang: go
source: |
@@ -77709,7 +77840,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api cloudMigrationService createOrgLiveMigrationLinkToken --help
+ source: atlas api cloudMigrationService createLinkToken --help
- label: Go
lang: go
source: |
@@ -77798,7 +77929,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api resourcePolicies getOrgNonCompliantResources --help
+ source: atlas api resourcePolicies getNonCompliantResources --help
- label: Go
lang: go
source: |
@@ -78343,7 +78474,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api resourcePolicies validateOrgResourcePolicies --help
+ source: atlas api resourcePolicies validateResourcePolicies --help
- label: Go
lang: go
source: |
@@ -78840,7 +78971,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts listOrgServiceAccountAccessList --help
+ source: atlas api serviceAccounts listOrgAccessList --help
- label: Go
lang: go
source: |
@@ -78938,7 +79069,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts createOrgServiceAccountAccessList --help
+ source: atlas api serviceAccounts createOrgAccessList --help
- label: Go
lang: go
source: |
@@ -79031,7 +79162,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts deleteOrgServiceAccountAccessListEntry --help
+ source: atlas api serviceAccounts deleteOrgAccessEntry --help
- label: Go
lang: go
source: |
@@ -79120,7 +79251,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts getOrgServiceAccountGroups --help
+ source: atlas api serviceAccounts getServiceAccountGroups --help
- label: Go
lang: go
source: |
@@ -79210,7 +79341,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts createOrgServiceAccountSecret --help
+ source: atlas api serviceAccounts createOrgSecret --help
- label: Go
lang: go
source: |
@@ -79299,7 +79430,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api serviceAccounts deleteOrgServiceAccountSecret --help
+ source: atlas api serviceAccounts deleteOrgSecret --help
- label: Go
lang: go
source: |
@@ -80004,7 +80135,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api mongoDbCloudUsers listOrgTeamUsers --help
+ source: atlas api mongoDbCloudUsers listTeamUsers --help
- label: Go
lang: go
source: |
@@ -80103,7 +80234,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api teams addOrgTeamUsers --help
+ source: atlas api teams addTeamUsers --help
- label: Go
lang: go
source: |
@@ -80148,7 +80279,7 @@ paths:
--header "Content-Type: application/json" \
-X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \
-d '{ }'
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Teams/operation/addOrgTeamUsers
x-xgen-method-verb-override:
customMethod: "True"
@@ -80205,7 +80336,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api teams removeOrgTeamUserFromTeam --help
+ source: atlas api teams removeUserFromTeam --help
- label: Go
lang: go
source: |
@@ -80246,7 +80377,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}"
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Teams/operation/removeOrgTeamUserFromTeam
x-xgen-method-verb-override:
customMethod: "True"
@@ -80489,7 +80620,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api teams getOrgTeamByName --help
+ source: atlas api teams getTeamByName --help
- label: Go
lang: go
source: |
@@ -81084,7 +81215,7 @@ paths:
--header "Content-Type: application/json" \
-X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \
-d '{ }'
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Organizations/operation/updateOrgUserRoles
/api/atlas/v2/orgs/{orgId}/users/{userId}:addRole:
post:
@@ -81142,7 +81273,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api mongoDbCloudUsers addOrgUserRole --help
+ source: atlas api mongoDbCloudUsers addOrgRole --help
- label: Go
lang: go
source: |
@@ -81243,7 +81374,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api mongoDbCloudUsers removeOrgUserRole --help
+ source: atlas api mongoDbCloudUsers removeOrgRole --help
- label: Go
lang: go
source: |
@@ -81317,7 +81448,7 @@ paths:
x-codeSamples:
- label: Atlas CLI
lang: cURL
- source: atlas api root listControlPlaneIpAddresses --help
+ source: atlas api root listControlPlaneAddresses --help
- label: Go
lang: go
source: |
@@ -81447,7 +81578,7 @@ paths:
--header "Content-Type: application/json" \
-X POST "https://cloud.mongodb.com/api/atlas/v2/users" \
-d '{ }'
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/MongoDB-Cloud-Users/operation/createUser
/api/atlas/v2/users/{userId}:
get:
@@ -81532,6 +81663,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/MongoDB-Cloud-Users/operation/getUser
/api/atlas/v2/users/byName/{userName}:
get:
@@ -81614,7 +81746,7 @@ paths:
--digest --include \
--header "Accept: application/vnd.atlas.2025-03-12+json" \
-X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true"
- x-sunset: "2026-07-31"
+ x-sunset: "2026-09-15"
x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/MongoDB-Cloud-Users/operation/getUserByName
security:
- ServiceAccounts: []
@@ -81727,7 +81859,7 @@ tags:
name: Shared-Tier Restore Jobs
- description: Returns and requests to download shared-tier database deployment snapshots.
name: Shared-Tier Snapshots
- - description: Returns, adds, edits, and removes Streams Instances. This resource requires your project ID.
+ - description: Returns, adds, edits, and removes Streams Workspaces. This resource requires your project ID.
name: Streams
- description: Returns, adds, edits, or removes teams.
name: Teams
diff --git a/test/example_client_test.go b/test/example_client_test.go
index 8ca34b1c..b4ebc398 100644
--- a/test/example_client_test.go
+++ b/test/example_client_test.go
@@ -3,7 +3,7 @@ package test
import (
"fmt"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func ExampleNewClient() {
diff --git a/test/utils_test.go b/test/utils_test.go
index 4a96ecf0..c1161497 100644
--- a/test/utils_test.go
+++ b/test/utils_test.go
@@ -4,7 +4,7 @@ import (
"testing"
"time"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
type testCase[T comparable] struct {
diff --git a/tools/config/go-templates/api_doc.mustache b/tools/config/go-templates/api_doc.mustache
index a899554f..e9a1df96 100644
--- a/tools/config/go-templates/api_doc.mustache
+++ b/tools/config/go-templates/api_doc.mustache
@@ -29,7 +29,7 @@ import (
"fmt"
"os"
- "go.mongodb.org/atlas-sdk/v20250312008/admin"
+ "go.mongodb.org/atlas-sdk/v20250312009/admin"
)
func main() {
diff --git a/tools/config/go-templates/atlas_client.mustache b/tools/config/go-templates/atlas_client.mustache
index 9902c0c3..11d641fe 100644
--- a/tools/config/go-templates/atlas_client.mustache
+++ b/tools/config/go-templates/atlas_client.mustache
@@ -1,4 +1,4 @@
-{{! X-XGEN-CUSTOM }}package {{packageName}} // import "go.mongodb.org/atlas-sdk/v20250312008/admin"
+{{! X-XGEN-CUSTOM }}package {{packageName}} // import "go.mongodb.org/atlas-sdk/v20250312009/admin"
import (
"errors"
@@ -6,9 +6,9 @@ import (
"strings"
"github.com/mongodb-forks/digest"
- "go.mongodb.org/atlas-sdk/v20250312008/auth"
- "go.mongodb.org/atlas-sdk/v20250312008/auth/clientcredentials"
- "go.mongodb.org/atlas-sdk/v20250312008/internal/core"
+ "go.mongodb.org/atlas-sdk/v20250312009/auth"
+ "go.mongodb.org/atlas-sdk/v20250312009/auth/clientcredentials"
+ "go.mongodb.org/atlas-sdk/v20250312009/internal/core"
)
const (
diff --git a/tools/releaser/breaking_changes/v20231115003.md b/tools/releaser/breaking_changes/v20231115003.md
index 791a2065..be90462f 100644
--- a/tools/releaser/breaking_changes/v20231115003.md
+++ b/tools/releaser/breaking_changes/v20231115003.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
## Breaking changes
diff --git a/tools/releaser/breaking_changes/v20231115004.md b/tools/releaser/breaking_changes/v20231115004.md
index e997b142..5dd19d3d 100644
--- a/tools/releaser/breaking_changes/v20231115004.md
+++ b/tools/releaser/breaking_changes/v20231115004.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- ListIdentityProvidersApiRequest.Execute: changed from func() ([]FederationIdentityProvider, *net/http.Response, error) to func() (*PaginatedFederationIdentityProvider, \*net/http.Response, error)
diff --git a/tools/releaser/breaking_changes/v20231115005.md b/tools/releaser/breaking_changes/v20231115005.md
index 9cc4189b..02cd4030 100644
--- a/tools/releaser/breaking_changes/v20231115005.md
+++ b/tools/releaser/breaking_changes/v20231115005.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- DataProcessRegion: changed from DataProcessRegion to DataProcessRegion
diff --git a/tools/releaser/breaking_changes/v20231115006.md b/tools/releaser/breaking_changes/v20231115006.md
index 34b00ef0..a2ba03c4 100644
--- a/tools/releaser/breaking_changes/v20231115006.md
+++ b/tools/releaser/breaking_changes/v20231115006.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- GroupMaintenanceWindow.HourOfDay: changed from int to \*int
diff --git a/tools/releaser/breaking_changes/v20231115007.md b/tools/releaser/breaking_changes/v20231115007.md
index 584442c1..047b4e8d 100644
--- a/tools/releaser/breaking_changes/v20231115007.md
+++ b/tools/releaser/breaking_changes/v20231115007.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (*TeamsApiService).RenameTeam: changed from func(context.Context, string, string, *Team) RenameTeamApiRequest to func(context.Context, string, string, \*TeamUpdate) RenameTeamApiRequest
diff --git a/tools/releaser/breaking_changes/v20231115008.md b/tools/releaser/breaking_changes/v20231115008.md
index 6fa27458..9fc78c67 100644
--- a/tools/releaser/breaking_changes/v20231115008.md
+++ b/tools/releaser/breaking_changes/v20231115008.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (\*ApiSearchDeploymentRequest).HasSpecs: removed
diff --git a/tools/releaser/breaking_changes/v20231115009.md b/tools/releaser/breaking_changes/v20231115009.md
index c1d49ef6..a75665db 100644
--- a/tools/releaser/breaking_changes/v20231115009.md
+++ b/tools/releaser/breaking_changes/v20231115009.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (\*FederationIdentityProvider).GetAudienceClaim: removed
diff --git a/tools/releaser/breaking_changes/v20231115010.md b/tools/releaser/breaking_changes/v20231115010.md
index 56de3b6b..9db0daf4 100644
--- a/tools/releaser/breaking_changes/v20231115010.md
+++ b/tools/releaser/breaking_changes/v20231115010.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (*PushBasedLogExportApiService).CreatePushBasedLogConfiguration: changed from func(context.Context, string, *PushBasedLogExportProject) CreatePushBasedLogConfigurationApiRequest to func(context.Context, string, \*CreatePushBasedLogExportProjectRequest) CreatePushBasedLogConfigurationApiRequest
diff --git a/tools/releaser/breaking_changes/v20231115011.md b/tools/releaser/breaking_changes/v20231115011.md
index 8514a6e1..b4b37392 100644
--- a/tools/releaser/breaking_changes/v20231115011.md
+++ b/tools/releaser/breaking_changes/v20231115011.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (\*GroupAlertsConfig).GetMatchers: changed from func() []map[string]interface{} to func() []StreamsMatcher
diff --git a/tools/releaser/breaking_changes/v20231115012.md b/tools/releaser/breaking_changes/v20231115012.md
index 6e5a956d..90f55b0f 100644
--- a/tools/releaser/breaking_changes/v20231115012.md
+++ b/tools/releaser/breaking_changes/v20231115012.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- ConnectedOrgConfig.IdentityProviderId: changed from string to \*string
diff --git a/tools/releaser/breaking_changes/v20231115013.md b/tools/releaser/breaking_changes/v20231115013.md
index e2d32ea6..f4089b7d 100644
--- a/tools/releaser/breaking_changes/v20231115013.md
+++ b/tools/releaser/breaking_changes/v20231115013.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (*FederatedAuthenticationApiService).ListConnectedOrgConfigsExecute: changed from func(ListConnectedOrgConfigsApiRequest) ([]ConnectedOrgConfig, *net/http.Response, error) to func(ListConnectedOrgConfigsApiRequest) (*PaginatedConnectedOrgConfigs, *net/http.Response, error)
diff --git a/tools/releaser/breaking_changes/v20231115014.md b/tools/releaser/breaking_changes/v20231115014.md
index 53fcc80c..e1f638cc 100644
--- a/tools/releaser/breaking_changes/v20231115014.md
+++ b/tools/releaser/breaking_changes/v20231115014.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (\*BillingPayment).GetUnitPrice: changed from func() float64 to func() string
diff --git a/tools/releaser/breaking_changes/v20240530001.md b/tools/releaser/breaking_changes/v20240530001.md
index e8377031..a9b977cb 100644
--- a/tools/releaser/breaking_changes/v20240530001.md
+++ b/tools/releaser/breaking_changes/v20240530001.md
@@ -2,23 +2,23 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/mockadmin
+go.mongodb.org/atlas-sdk/v20250312009/mockadmin
Incompatible changes:
-- (*CloudBackupsApi).CreateExportBucket: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotAWSExportBucket) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateExportBucketApiRequest to func(context.Context, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateExportBucketApiRequest
-- (*CloudBackupsApi).CreateExportBucketExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateExportBucketApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotAWSExportBucket, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateExportBucketApiRequest) (*invalid type, \*net/http.Response, error)
-- (*CloudBackupsApi).GetExportBucketExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetExportBucketApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotAWSExportBucket, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetExportBucketApiRequest) (*invalid type, \*net/http.Response, error)
-- (*CloudBackupsApi).ListExportBucketsExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListExportBucketsApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedBackupSnapshotExportBucket, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListExportBucketsApiRequest) (*invalid type, \*net/http.Response, error)
-- (*CloudBackupsApi_CreateExportBucketExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotAWSExportBucket, *net/http.Response, error) *CloudBackupsApi_CreateExportBucketExecute_Call to func(*invalid type, *net/http.Response, error) \*CloudBackupsApi_CreateExportBucketExecute_Call
-- (*CloudBackupsApi_CreateExportBucketExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateExportBucketApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotAWSExportBucket, *net/http.Response, error)) *CloudBackupsApi_CreateExportBucketExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateExportBucketApiRequest) (*invalid type, *net/http.Response, error)) \*CloudBackupsApi_CreateExportBucketExecute_Call
-- (*CloudBackupsApi_CreateExportBucket_Call).Run: changed from func(func(ctx context.Context, groupId string, diskBackupSnapshotAWSExportBucket *go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotAWSExportBucket)) *CloudBackupsApi_CreateExportBucket_Call to func(func(ctx context.Context, groupId string, diskBackupSnapshotAWSExportBucket *invalid type)) \*CloudBackupsApi_CreateExportBucket_Call
-- (*CloudBackupsApi_CreateExportBucket_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotAWSExportBucket) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateExportBucketApiRequest) *CloudBackupsApi_CreateExportBucket_Call to func(func(context.Context, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateExportBucketApiRequest) \*CloudBackupsApi_CreateExportBucket_Call
-- (*CloudBackupsApi_GetExportBucketExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotAWSExportBucket, *net/http.Response, error) *CloudBackupsApi_GetExportBucketExecute_Call to func(*invalid type, *net/http.Response, error) \*CloudBackupsApi_GetExportBucketExecute_Call
-- (*CloudBackupsApi_GetExportBucketExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetExportBucketApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotAWSExportBucket, *net/http.Response, error)) *CloudBackupsApi_GetExportBucketExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetExportBucketApiRequest) (*invalid type, *net/http.Response, error)) \*CloudBackupsApi_GetExportBucketExecute_Call
-- (*CloudBackupsApi_ListExportBucketsExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedBackupSnapshotExportBucket, *net/http.Response, error) *CloudBackupsApi_ListExportBucketsExecute_Call to func(*invalid type, *net/http.Response, error) \*CloudBackupsApi_ListExportBucketsExecute_Call
-- (*CloudBackupsApi_ListExportBucketsExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListExportBucketsApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedBackupSnapshotExportBucket, *net/http.Response, error)) *CloudBackupsApi_ListExportBucketsExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListExportBucketsApiRequest) (*invalid type, *net/http.Response, error)) \*CloudBackupsApi_ListExportBucketsExecute_Call
+- (*CloudBackupsApi).CreateExportBucket: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotAWSExportBucket) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateExportBucketApiRequest to func(context.Context, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateExportBucketApiRequest
+- (*CloudBackupsApi).CreateExportBucketExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateExportBucketApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotAWSExportBucket, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateExportBucketApiRequest) (*invalid type, \*net/http.Response, error)
+- (*CloudBackupsApi).GetExportBucketExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetExportBucketApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotAWSExportBucket, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetExportBucketApiRequest) (*invalid type, \*net/http.Response, error)
+- (*CloudBackupsApi).ListExportBucketsExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListExportBucketsApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedBackupSnapshotExportBucket, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListExportBucketsApiRequest) (*invalid type, \*net/http.Response, error)
+- (*CloudBackupsApi_CreateExportBucketExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotAWSExportBucket, *net/http.Response, error) *CloudBackupsApi_CreateExportBucketExecute_Call to func(*invalid type, *net/http.Response, error) \*CloudBackupsApi_CreateExportBucketExecute_Call
+- (*CloudBackupsApi_CreateExportBucketExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateExportBucketApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotAWSExportBucket, *net/http.Response, error)) *CloudBackupsApi_CreateExportBucketExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateExportBucketApiRequest) (*invalid type, *net/http.Response, error)) \*CloudBackupsApi_CreateExportBucketExecute_Call
+- (*CloudBackupsApi_CreateExportBucket_Call).Run: changed from func(func(ctx context.Context, groupId string, diskBackupSnapshotAWSExportBucket *go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotAWSExportBucket)) *CloudBackupsApi_CreateExportBucket_Call to func(func(ctx context.Context, groupId string, diskBackupSnapshotAWSExportBucket *invalid type)) \*CloudBackupsApi_CreateExportBucket_Call
+- (*CloudBackupsApi_CreateExportBucket_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotAWSExportBucket) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateExportBucketApiRequest) *CloudBackupsApi_CreateExportBucket_Call to func(func(context.Context, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateExportBucketApiRequest) \*CloudBackupsApi_CreateExportBucket_Call
+- (*CloudBackupsApi_GetExportBucketExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotAWSExportBucket, *net/http.Response, error) *CloudBackupsApi_GetExportBucketExecute_Call to func(*invalid type, *net/http.Response, error) \*CloudBackupsApi_GetExportBucketExecute_Call
+- (*CloudBackupsApi_GetExportBucketExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetExportBucketApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotAWSExportBucket, *net/http.Response, error)) *CloudBackupsApi_GetExportBucketExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetExportBucketApiRequest) (*invalid type, *net/http.Response, error)) \*CloudBackupsApi_GetExportBucketExecute_Call
+- (*CloudBackupsApi_ListExportBucketsExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedBackupSnapshotExportBucket, *net/http.Response, error) *CloudBackupsApi_ListExportBucketsExecute_Call to func(*invalid type, *net/http.Response, error) \*CloudBackupsApi_ListExportBucketsExecute_Call
+- (*CloudBackupsApi_ListExportBucketsExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListExportBucketsApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedBackupSnapshotExportBucket, *net/http.Response, error)) *CloudBackupsApi_ListExportBucketsExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListExportBucketsApiRequest) (*invalid type, *net/http.Response, error)) \*CloudBackupsApi_ListExportBucketsExecute_Call
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (*AlertsApiService).AcknowledgeAlert: changed from func(context.Context, string, string, *AlertViewForNdsGroup) AcknowledgeAlertApiRequest to func(context.Context, string, string, \*AcknowledgeAlert) AcknowledgeAlertApiRequest
diff --git a/tools/releaser/breaking_changes/v20240530002.md b/tools/releaser/breaking_changes/v20240530002.md
index 86b10ddc..dc372bd4 100644
--- a/tools/releaser/breaking_changes/v20240530002.md
+++ b/tools/releaser/breaking_changes/v20240530002.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (\*DiskBackupExportJob).GetComponents: changed from func() []DiskBackupBaseRestoreMember to func() []DiskBackupExportMember
@@ -33,21 +33,21 @@ Incompatible changes:
- NewLiveMigrationRequestWithDefaults: removed
- ValidateMigrationApiParams.LiveMigrationRequest: removed
-go.mongodb.org/atlas-sdk/v20250312008/mockadmin
+go.mongodb.org/atlas-sdk/v20250312009/mockadmin
Incompatible changes:
-- (*CloudMigrationServiceApi).CreatePushMigration: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.LiveMigrationRequest) go.mongodb.org/atlas-sdk/v20250312008/admin.CreatePushMigrationApiRequest to func(context.Context, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.CreatePushMigrationApiRequest
-- (*CloudMigrationServiceApi).ValidateMigration: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.LiveMigrationRequest) go.mongodb.org/atlas-sdk/v20250312008/admin.ValidateMigrationApiRequest to func(context.Context, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.ValidateMigrationApiRequest
-- (*CloudMigrationServiceApi_CreatePushMigration_Call).Run: changed from func(func(ctx context.Context, groupId string, liveMigrationRequest *go.mongodb.org/atlas-sdk/v20250312008/admin.LiveMigrationRequest)) *CloudMigrationServiceApi_CreatePushMigration_Call to func(func(ctx context.Context, groupId string, liveMigrationRequest *invalid type)) \*CloudMigrationServiceApi_CreatePushMigration_Call
-- (*CloudMigrationServiceApi_CreatePushMigration_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.LiveMigrationRequest) go.mongodb.org/atlas-sdk/v20250312008/admin.CreatePushMigrationApiRequest) *CloudMigrationServiceApi_CreatePushMigration_Call to func(func(context.Context, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.CreatePushMigrationApiRequest) \*CloudMigrationServiceApi_CreatePushMigration_Call
-- (*CloudMigrationServiceApi_ValidateMigration_Call).Run: changed from func(func(ctx context.Context, groupId string, liveMigrationRequest *go.mongodb.org/atlas-sdk/v20250312008/admin.LiveMigrationRequest)) *CloudMigrationServiceApi_ValidateMigration_Call to func(func(ctx context.Context, groupId string, liveMigrationRequest *invalid type)) \*CloudMigrationServiceApi_ValidateMigration_Call
-- (*CloudMigrationServiceApi_ValidateMigration_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.LiveMigrationRequest) go.mongodb.org/atlas-sdk/v20250312008/admin.ValidateMigrationApiRequest) *CloudMigrationServiceApi_ValidateMigration_Call to func(func(context.Context, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.ValidateMigrationApiRequest) \*CloudMigrationServiceApi_ValidateMigration_Call
-- (*CloudProviderAccessApi).AuthorizeCloudProviderAccessRole: changed from func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.CloudProviderAccessAWSIAMRoleUpdateRequest) go.mongodb.org/atlas-sdk/v20250312008/admin.AuthorizeCloudProviderAccessRoleApiRequest to func(context.Context, string, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.AuthorizeCloudProviderAccessRoleApiRequest
-- (*CloudProviderAccessApi).CreateCloudProviderAccessRole: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.CloudProviderAccessAWSIAMRoleRequest) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCloudProviderAccessRoleApiRequest to func(context.Context, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCloudProviderAccessRoleApiRequest
-- (*CloudProviderAccessApi_AuthorizeCloudProviderAccessRole_Call).Run: changed from func(func(ctx context.Context, groupId string, roleId string, cloudProviderAccessAWSIAMRoleUpdateRequest *go.mongodb.org/atlas-sdk/v20250312008/admin.CloudProviderAccessAWSIAMRoleUpdateRequest)) *CloudProviderAccessApi_AuthorizeCloudProviderAccessRole_Call to func(func(ctx context.Context, groupId string, roleId string, cloudProviderAccessAWSIAMRoleUpdateRequest *invalid type)) \*CloudProviderAccessApi_AuthorizeCloudProviderAccessRole_Call
-- (*CloudProviderAccessApi_AuthorizeCloudProviderAccessRole_Call).RunAndReturn: changed from func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.CloudProviderAccessAWSIAMRoleUpdateRequest) go.mongodb.org/atlas-sdk/v20250312008/admin.AuthorizeCloudProviderAccessRoleApiRequest) *CloudProviderAccessApi_AuthorizeCloudProviderAccessRole_Call to func(func(context.Context, string, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.AuthorizeCloudProviderAccessRoleApiRequest) \*CloudProviderAccessApi_AuthorizeCloudProviderAccessRole_Call
-- (*CloudProviderAccessApi_CreateCloudProviderAccessRole_Call).Run: changed from func(func(ctx context.Context, groupId string, cloudProviderAccessAWSIAMRoleRequest *go.mongodb.org/atlas-sdk/v20250312008/admin.CloudProviderAccessAWSIAMRoleRequest)) *CloudProviderAccessApi_CreateCloudProviderAccessRole_Call to func(func(ctx context.Context, groupId string, cloudProviderAccessAWSIAMRoleRequest *invalid type)) \*CloudProviderAccessApi_CreateCloudProviderAccessRole_Call
-- (*CloudProviderAccessApi_CreateCloudProviderAccessRole_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.CloudProviderAccessAWSIAMRoleRequest) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCloudProviderAccessRoleApiRequest) *CloudProviderAccessApi_CreateCloudProviderAccessRole_Call to func(func(context.Context, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCloudProviderAccessRoleApiRequest) \*CloudProviderAccessApi_CreateCloudProviderAccessRole_Call
+- (*CloudMigrationServiceApi).CreatePushMigration: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.LiveMigrationRequest) go.mongodb.org/atlas-sdk/v20250312009/admin.CreatePushMigrationApiRequest to func(context.Context, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.CreatePushMigrationApiRequest
+- (*CloudMigrationServiceApi).ValidateMigration: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.LiveMigrationRequest) go.mongodb.org/atlas-sdk/v20250312009/admin.ValidateMigrationApiRequest to func(context.Context, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.ValidateMigrationApiRequest
+- (*CloudMigrationServiceApi_CreatePushMigration_Call).Run: changed from func(func(ctx context.Context, groupId string, liveMigrationRequest *go.mongodb.org/atlas-sdk/v20250312009/admin.LiveMigrationRequest)) *CloudMigrationServiceApi_CreatePushMigration_Call to func(func(ctx context.Context, groupId string, liveMigrationRequest *invalid type)) \*CloudMigrationServiceApi_CreatePushMigration_Call
+- (*CloudMigrationServiceApi_CreatePushMigration_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.LiveMigrationRequest) go.mongodb.org/atlas-sdk/v20250312009/admin.CreatePushMigrationApiRequest) *CloudMigrationServiceApi_CreatePushMigration_Call to func(func(context.Context, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.CreatePushMigrationApiRequest) \*CloudMigrationServiceApi_CreatePushMigration_Call
+- (*CloudMigrationServiceApi_ValidateMigration_Call).Run: changed from func(func(ctx context.Context, groupId string, liveMigrationRequest *go.mongodb.org/atlas-sdk/v20250312009/admin.LiveMigrationRequest)) *CloudMigrationServiceApi_ValidateMigration_Call to func(func(ctx context.Context, groupId string, liveMigrationRequest *invalid type)) \*CloudMigrationServiceApi_ValidateMigration_Call
+- (*CloudMigrationServiceApi_ValidateMigration_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.LiveMigrationRequest) go.mongodb.org/atlas-sdk/v20250312009/admin.ValidateMigrationApiRequest) *CloudMigrationServiceApi_ValidateMigration_Call to func(func(context.Context, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.ValidateMigrationApiRequest) \*CloudMigrationServiceApi_ValidateMigration_Call
+- (*CloudProviderAccessApi).AuthorizeCloudProviderAccessRole: changed from func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.CloudProviderAccessAWSIAMRoleUpdateRequest) go.mongodb.org/atlas-sdk/v20250312009/admin.AuthorizeCloudProviderAccessRoleApiRequest to func(context.Context, string, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.AuthorizeCloudProviderAccessRoleApiRequest
+- (*CloudProviderAccessApi).CreateCloudProviderAccessRole: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.CloudProviderAccessAWSIAMRoleRequest) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCloudProviderAccessRoleApiRequest to func(context.Context, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCloudProviderAccessRoleApiRequest
+- (*CloudProviderAccessApi_AuthorizeCloudProviderAccessRole_Call).Run: changed from func(func(ctx context.Context, groupId string, roleId string, cloudProviderAccessAWSIAMRoleUpdateRequest *go.mongodb.org/atlas-sdk/v20250312009/admin.CloudProviderAccessAWSIAMRoleUpdateRequest)) *CloudProviderAccessApi_AuthorizeCloudProviderAccessRole_Call to func(func(ctx context.Context, groupId string, roleId string, cloudProviderAccessAWSIAMRoleUpdateRequest *invalid type)) \*CloudProviderAccessApi_AuthorizeCloudProviderAccessRole_Call
+- (*CloudProviderAccessApi_AuthorizeCloudProviderAccessRole_Call).RunAndReturn: changed from func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.CloudProviderAccessAWSIAMRoleUpdateRequest) go.mongodb.org/atlas-sdk/v20250312009/admin.AuthorizeCloudProviderAccessRoleApiRequest) *CloudProviderAccessApi_AuthorizeCloudProviderAccessRole_Call to func(func(context.Context, string, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.AuthorizeCloudProviderAccessRoleApiRequest) \*CloudProviderAccessApi_AuthorizeCloudProviderAccessRole_Call
+- (*CloudProviderAccessApi_CreateCloudProviderAccessRole_Call).Run: changed from func(func(ctx context.Context, groupId string, cloudProviderAccessAWSIAMRoleRequest *go.mongodb.org/atlas-sdk/v20250312009/admin.CloudProviderAccessAWSIAMRoleRequest)) *CloudProviderAccessApi_CreateCloudProviderAccessRole_Call to func(func(ctx context.Context, groupId string, cloudProviderAccessAWSIAMRoleRequest *invalid type)) \*CloudProviderAccessApi_CreateCloudProviderAccessRole_Call
+- (*CloudProviderAccessApi_CreateCloudProviderAccessRole_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.CloudProviderAccessAWSIAMRoleRequest) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCloudProviderAccessRoleApiRequest) *CloudProviderAccessApi_CreateCloudProviderAccessRole_Call to func(func(context.Context, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCloudProviderAccessRoleApiRequest) \*CloudProviderAccessApi_CreateCloudProviderAccessRole_Call
## API Changelog
diff --git a/tools/releaser/breaking_changes/v20240530003.md b/tools/releaser/breaking_changes/v20240530003.md
index 05a10e7b..65b6a7e0 100644
--- a/tools/releaser/breaking_changes/v20240530003.md
+++ b/tools/releaser/breaking_changes/v20240530003.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (\*BillingInvoice).GetGroupId: removed
diff --git a/tools/releaser/breaking_changes/v20240530004.md b/tools/releaser/breaking_changes/v20240530004.md
index 90166e76..00dc4849 100644
--- a/tools/releaser/breaking_changes/v20240530004.md
+++ b/tools/releaser/breaking_changes/v20240530004.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (\*EventTypeDetails).GetLinks: removed
diff --git a/tools/releaser/breaking_changes/v20240530005.md b/tools/releaser/breaking_changes/v20240530005.md
index bf7dcc9b..dcf25243 100644
--- a/tools/releaser/breaking_changes/v20240530005.md
+++ b/tools/releaser/breaking_changes/v20240530005.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (\*DiskBackupSnapshotExportBucket).HasBucketName: removed
diff --git a/tools/releaser/breaking_changes/v20240805001.md b/tools/releaser/breaking_changes/v20240805001.md
index f3e15fbe..9e033358 100644
--- a/tools/releaser/breaking_changes/v20240805001.md
+++ b/tools/releaser/breaking_changes/v20240805001.md
@@ -2,68 +2,68 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/mockadmin
+go.mongodb.org/atlas-sdk/v20250312009/mockadmin
Incompatible changes:
-- (*CloudBackupsApi).DeleteAllBackupSchedulesExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAllBackupSchedulesApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotSchedule, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAllBackupSchedulesApiRequest) (*invalid type, \*net/http.Response, error)
-- (*CloudBackupsApi).GetBackupScheduleExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetBackupScheduleApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotSchedule, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetBackupScheduleApiRequest) (*invalid type, \*net/http.Response, error)
-- (*CloudBackupsApi).UpdateBackupSchedule: changed from func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotSchedule) go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateBackupScheduleApiRequest to func(context.Context, string, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateBackupScheduleApiRequest
-- (*CloudBackupsApi).UpdateBackupScheduleExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateBackupScheduleApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotSchedule, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateBackupScheduleApiRequest) (*invalid type, \*net/http.Response, error)
-- (*CloudBackupsApi_DeleteAllBackupSchedulesExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotSchedule, *net/http.Response, error) *CloudBackupsApi_DeleteAllBackupSchedulesExecute_Call to func(*invalid type, *net/http.Response, error) \*CloudBackupsApi_DeleteAllBackupSchedulesExecute_Call
-- (*CloudBackupsApi_DeleteAllBackupSchedulesExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAllBackupSchedulesApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotSchedule, *net/http.Response, error)) *CloudBackupsApi_DeleteAllBackupSchedulesExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAllBackupSchedulesApiRequest) (*invalid type, *net/http.Response, error)) \*CloudBackupsApi_DeleteAllBackupSchedulesExecute_Call
-- (*CloudBackupsApi_GetBackupScheduleExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotSchedule, *net/http.Response, error) *CloudBackupsApi_GetBackupScheduleExecute_Call to func(*invalid type, *net/http.Response, error) \*CloudBackupsApi_GetBackupScheduleExecute_Call
-- (*CloudBackupsApi_GetBackupScheduleExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetBackupScheduleApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotSchedule, *net/http.Response, error)) *CloudBackupsApi_GetBackupScheduleExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetBackupScheduleApiRequest) (*invalid type, *net/http.Response, error)) \*CloudBackupsApi_GetBackupScheduleExecute_Call
-- (*CloudBackupsApi_UpdateBackupScheduleExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotSchedule, *net/http.Response, error) *CloudBackupsApi_UpdateBackupScheduleExecute_Call to func(*invalid type, *net/http.Response, error) \*CloudBackupsApi_UpdateBackupScheduleExecute_Call
-- (*CloudBackupsApi_UpdateBackupScheduleExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateBackupScheduleApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotSchedule, *net/http.Response, error)) *CloudBackupsApi_UpdateBackupScheduleExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateBackupScheduleApiRequest) (*invalid type, *net/http.Response, error)) \*CloudBackupsApi_UpdateBackupScheduleExecute_Call
-- (*CloudBackupsApi_UpdateBackupSchedule_Call).Run: changed from func(func(ctx context.Context, groupId string, clusterName string, diskBackupSnapshotSchedule *go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotSchedule)) *CloudBackupsApi_UpdateBackupSchedule_Call to func(func(ctx context.Context, groupId string, clusterName string, diskBackupSnapshotSchedule *invalid type)) \*CloudBackupsApi_UpdateBackupSchedule_Call
-- (*CloudBackupsApi_UpdateBackupSchedule_Call).RunAndReturn: changed from func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.DiskBackupSnapshotSchedule) go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateBackupScheduleApiRequest) *CloudBackupsApi_UpdateBackupSchedule_Call to func(func(context.Context, string, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateBackupScheduleApiRequest) \*CloudBackupsApi_UpdateBackupSchedule_Call
-- (*ClustersApi).CreateCluster: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.AdvancedClusterDescription) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateClusterApiRequest to func(context.Context, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateClusterApiRequest
-- (*ClustersApi).CreateClusterExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateClusterApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AdvancedClusterDescription, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateClusterApiRequest) (*invalid type, \*net/http.Response, error)
-- (*ClustersApi).GetClusterAdvancedConfigurationExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetClusterAdvancedConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ClusterDescriptionProcessArgs, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetClusterAdvancedConfigurationApiRequest) (*invalid type, \*net/http.Response, error)
-- (*ClustersApi).GetClusterExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetClusterApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AdvancedClusterDescription, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetClusterApiRequest) (*invalid type, \*net/http.Response, error)
-- (*ClustersApi).ListClustersExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListClustersApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedAdvancedClusterDescription, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListClustersApiRequest) (*invalid type, \*net/http.Response, error)
-- (*ClustersApi).UpdateCluster: changed from func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.AdvancedClusterDescription) go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateClusterApiRequest to func(context.Context, string, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateClusterApiRequest
-- (*ClustersApi).UpdateClusterAdvancedConfiguration: changed from func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.ClusterDescriptionProcessArgs) go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateClusterAdvancedConfigurationApiRequest to func(context.Context, string, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateClusterAdvancedConfigurationApiRequest
-- (*ClustersApi).UpdateClusterAdvancedConfigurationExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateClusterAdvancedConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ClusterDescriptionProcessArgs, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateClusterAdvancedConfigurationApiRequest) (*invalid type, \*net/http.Response, error)
-- (*ClustersApi).UpdateClusterExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateClusterApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AdvancedClusterDescription, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateClusterApiRequest) (*invalid type, \*net/http.Response, error)
-- (*ClustersApi_CreateClusterExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.AdvancedClusterDescription, *net/http.Response, error) *ClustersApi_CreateClusterExecute_Call to func(*invalid type, *net/http.Response, error) \*ClustersApi_CreateClusterExecute_Call
-- (*ClustersApi_CreateClusterExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateClusterApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AdvancedClusterDescription, *net/http.Response, error)) *ClustersApi_CreateClusterExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateClusterApiRequest) (*invalid type, *net/http.Response, error)) \*ClustersApi_CreateClusterExecute_Call
-- (*ClustersApi_CreateCluster_Call).Run: changed from func(func(ctx context.Context, groupId string, advancedClusterDescription *go.mongodb.org/atlas-sdk/v20250312008/admin.AdvancedClusterDescription)) *ClustersApi_CreateCluster_Call to func(func(ctx context.Context, groupId string, advancedClusterDescription *invalid type)) \*ClustersApi_CreateCluster_Call
-- (*ClustersApi_CreateCluster_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.AdvancedClusterDescription) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateClusterApiRequest) *ClustersApi_CreateCluster_Call to func(func(context.Context, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateClusterApiRequest) \*ClustersApi_CreateCluster_Call
-- (*ClustersApi_GetClusterAdvancedConfigurationExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.ClusterDescriptionProcessArgs, *net/http.Response, error) *ClustersApi_GetClusterAdvancedConfigurationExecute_Call to func(*invalid type, *net/http.Response, error) \*ClustersApi_GetClusterAdvancedConfigurationExecute_Call
-- (*ClustersApi_GetClusterAdvancedConfigurationExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetClusterAdvancedConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ClusterDescriptionProcessArgs, *net/http.Response, error)) *ClustersApi_GetClusterAdvancedConfigurationExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetClusterAdvancedConfigurationApiRequest) (*invalid type, *net/http.Response, error)) \*ClustersApi_GetClusterAdvancedConfigurationExecute_Call
-- (*ClustersApi_GetClusterExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.AdvancedClusterDescription, *net/http.Response, error) *ClustersApi_GetClusterExecute_Call to func(*invalid type, *net/http.Response, error) \*ClustersApi_GetClusterExecute_Call
-- (*ClustersApi_GetClusterExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetClusterApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AdvancedClusterDescription, *net/http.Response, error)) *ClustersApi_GetClusterExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetClusterApiRequest) (*invalid type, *net/http.Response, error)) \*ClustersApi_GetClusterExecute_Call
-- (*ClustersApi_ListClustersExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedAdvancedClusterDescription, *net/http.Response, error) *ClustersApi_ListClustersExecute_Call to func(*invalid type, *net/http.Response, error) \*ClustersApi_ListClustersExecute_Call
-- (*ClustersApi_ListClustersExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListClustersApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedAdvancedClusterDescription, *net/http.Response, error)) *ClustersApi_ListClustersExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListClustersApiRequest) (*invalid type, *net/http.Response, error)) \*ClustersApi_ListClustersExecute_Call
-- (*ClustersApi_UpdateClusterAdvancedConfigurationExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.ClusterDescriptionProcessArgs, *net/http.Response, error) *ClustersApi_UpdateClusterAdvancedConfigurationExecute_Call to func(*invalid type, *net/http.Response, error) \*ClustersApi_UpdateClusterAdvancedConfigurationExecute_Call
-- (*ClustersApi_UpdateClusterAdvancedConfigurationExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateClusterAdvancedConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ClusterDescriptionProcessArgs, *net/http.Response, error)) *ClustersApi_UpdateClusterAdvancedConfigurationExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateClusterAdvancedConfigurationApiRequest) (*invalid type, *net/http.Response, error)) \*ClustersApi_UpdateClusterAdvancedConfigurationExecute_Call
-- (*ClustersApi_UpdateClusterAdvancedConfiguration_Call).Run: changed from func(func(ctx context.Context, groupId string, clusterName string, clusterDescriptionProcessArgs *go.mongodb.org/atlas-sdk/v20250312008/admin.ClusterDescriptionProcessArgs)) *ClustersApi_UpdateClusterAdvancedConfiguration_Call to func(func(ctx context.Context, groupId string, clusterName string, clusterDescriptionProcessArgs *invalid type)) \*ClustersApi_UpdateClusterAdvancedConfiguration_Call
-- (*ClustersApi_UpdateClusterAdvancedConfiguration_Call).RunAndReturn: changed from func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.ClusterDescriptionProcessArgs) go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateClusterAdvancedConfigurationApiRequest) *ClustersApi_UpdateClusterAdvancedConfiguration_Call to func(func(context.Context, string, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateClusterAdvancedConfigurationApiRequest) \*ClustersApi_UpdateClusterAdvancedConfiguration_Call
-- (*ClustersApi_UpdateClusterExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.AdvancedClusterDescription, *net/http.Response, error) *ClustersApi_UpdateClusterExecute_Call to func(*invalid type, *net/http.Response, error) \*ClustersApi_UpdateClusterExecute_Call
-- (*ClustersApi_UpdateClusterExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateClusterApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AdvancedClusterDescription, *net/http.Response, error)) *ClustersApi_UpdateClusterExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateClusterApiRequest) (*invalid type, *net/http.Response, error)) \*ClustersApi_UpdateClusterExecute_Call
-- (*ClustersApi_UpdateCluster_Call).Run: changed from func(func(ctx context.Context, groupId string, clusterName string, advancedClusterDescription *go.mongodb.org/atlas-sdk/v20250312008/admin.AdvancedClusterDescription)) *ClustersApi_UpdateCluster_Call to func(func(ctx context.Context, groupId string, clusterName string, advancedClusterDescription *invalid type)) \*ClustersApi_UpdateCluster_Call
-- (*ClustersApi_UpdateCluster_Call).RunAndReturn: changed from func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.AdvancedClusterDescription) go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateClusterApiRequest) *ClustersApi_UpdateCluster_Call to func(func(context.Context, string, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateClusterApiRequest) \*ClustersApi_UpdateCluster_Call
-- (*GlobalClustersApi).CreateCustomZoneMappingExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCustomZoneMappingApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.GeoSharding, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCustomZoneMappingApiRequest) (*invalid type, \*net/http.Response, error)
-- (*GlobalClustersApi).CreateManagedNamespace: changed from func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.ManagedNamespace) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateManagedNamespaceApiRequest to func(context.Context, string, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateManagedNamespaceApiRequest
-- (*GlobalClustersApi).CreateManagedNamespaceExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateManagedNamespaceApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.GeoSharding, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateManagedNamespaceApiRequest) (*invalid type, \*net/http.Response, error)
-- (*GlobalClustersApi).DeleteAllCustomZoneMappingsExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAllCustomZoneMappingsApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.GeoSharding, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAllCustomZoneMappingsApiRequest) (*invalid type, \*net/http.Response, error)
-- (*GlobalClustersApi).DeleteManagedNamespaceExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteManagedNamespaceApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.GeoSharding, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteManagedNamespaceApiRequest) (*invalid type, \*net/http.Response, error)
-- (*GlobalClustersApi).GetManagedNamespaceExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetManagedNamespaceApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.GeoSharding, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetManagedNamespaceApiRequest) (*invalid type, \*net/http.Response, error)
-- (*GlobalClustersApi_CreateCustomZoneMappingExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.GeoSharding, *net/http.Response, error) *GlobalClustersApi_CreateCustomZoneMappingExecute_Call to func(*invalid type, *net/http.Response, error) \*GlobalClustersApi_CreateCustomZoneMappingExecute_Call
-- (*GlobalClustersApi_CreateCustomZoneMappingExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCustomZoneMappingApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.GeoSharding, *net/http.Response, error)) *GlobalClustersApi_CreateCustomZoneMappingExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCustomZoneMappingApiRequest) (*invalid type, *net/http.Response, error)) \*GlobalClustersApi_CreateCustomZoneMappingExecute_Call
-- (*GlobalClustersApi_CreateManagedNamespaceExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.GeoSharding, *net/http.Response, error) *GlobalClustersApi_CreateManagedNamespaceExecute_Call to func(*invalid type, *net/http.Response, error) \*GlobalClustersApi_CreateManagedNamespaceExecute_Call
-- (*GlobalClustersApi_CreateManagedNamespaceExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateManagedNamespaceApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.GeoSharding, *net/http.Response, error)) *GlobalClustersApi_CreateManagedNamespaceExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateManagedNamespaceApiRequest) (*invalid type, *net/http.Response, error)) \*GlobalClustersApi_CreateManagedNamespaceExecute_Call
-- (*GlobalClustersApi_CreateManagedNamespace_Call).Run: changed from func(func(ctx context.Context, groupId string, clusterName string, managedNamespace *go.mongodb.org/atlas-sdk/v20250312008/admin.ManagedNamespace)) *GlobalClustersApi_CreateManagedNamespace_Call to func(func(ctx context.Context, groupId string, clusterName string, managedNamespace *invalid type)) \*GlobalClustersApi_CreateManagedNamespace_Call
-- (*GlobalClustersApi_CreateManagedNamespace_Call).RunAndReturn: changed from func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.ManagedNamespace) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateManagedNamespaceApiRequest) *GlobalClustersApi_CreateManagedNamespace_Call to func(func(context.Context, string, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateManagedNamespaceApiRequest) \*GlobalClustersApi_CreateManagedNamespace_Call
-- (*GlobalClustersApi_DeleteAllCustomZoneMappingsExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.GeoSharding, *net/http.Response, error) *GlobalClustersApi_DeleteAllCustomZoneMappingsExecute_Call to func(*invalid type, *net/http.Response, error) \*GlobalClustersApi_DeleteAllCustomZoneMappingsExecute_Call
-- (*GlobalClustersApi_DeleteAllCustomZoneMappingsExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAllCustomZoneMappingsApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.GeoSharding, *net/http.Response, error)) *GlobalClustersApi_DeleteAllCustomZoneMappingsExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAllCustomZoneMappingsApiRequest) (*invalid type, *net/http.Response, error)) \*GlobalClustersApi_DeleteAllCustomZoneMappingsExecute_Call
-- (*GlobalClustersApi_DeleteManagedNamespaceExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.GeoSharding, *net/http.Response, error) *GlobalClustersApi_DeleteManagedNamespaceExecute_Call to func(*invalid type, *net/http.Response, error) \*GlobalClustersApi_DeleteManagedNamespaceExecute_Call
-- (*GlobalClustersApi_DeleteManagedNamespaceExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteManagedNamespaceApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.GeoSharding, *net/http.Response, error)) *GlobalClustersApi_DeleteManagedNamespaceExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteManagedNamespaceApiRequest) (*invalid type, *net/http.Response, error)) \*GlobalClustersApi_DeleteManagedNamespaceExecute_Call
-- (*GlobalClustersApi_GetManagedNamespaceExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.GeoSharding, *net/http.Response, error) *GlobalClustersApi_GetManagedNamespaceExecute_Call to func(*invalid type, *net/http.Response, error) \*GlobalClustersApi_GetManagedNamespaceExecute_Call
-- (*GlobalClustersApi_GetManagedNamespaceExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetManagedNamespaceApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.GeoSharding, *net/http.Response, error)) *GlobalClustersApi_GetManagedNamespaceExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetManagedNamespaceApiRequest) (*invalid type, *net/http.Response, error)) \*GlobalClustersApi_GetManagedNamespaceExecute_Call
+- (*CloudBackupsApi).DeleteAllBackupSchedulesExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAllBackupSchedulesApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotSchedule, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAllBackupSchedulesApiRequest) (*invalid type, \*net/http.Response, error)
+- (*CloudBackupsApi).GetBackupScheduleExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetBackupScheduleApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotSchedule, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetBackupScheduleApiRequest) (*invalid type, \*net/http.Response, error)
+- (*CloudBackupsApi).UpdateBackupSchedule: changed from func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotSchedule) go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateBackupScheduleApiRequest to func(context.Context, string, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateBackupScheduleApiRequest
+- (*CloudBackupsApi).UpdateBackupScheduleExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateBackupScheduleApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotSchedule, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateBackupScheduleApiRequest) (*invalid type, \*net/http.Response, error)
+- (*CloudBackupsApi_DeleteAllBackupSchedulesExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotSchedule, *net/http.Response, error) *CloudBackupsApi_DeleteAllBackupSchedulesExecute_Call to func(*invalid type, *net/http.Response, error) \*CloudBackupsApi_DeleteAllBackupSchedulesExecute_Call
+- (*CloudBackupsApi_DeleteAllBackupSchedulesExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAllBackupSchedulesApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotSchedule, *net/http.Response, error)) *CloudBackupsApi_DeleteAllBackupSchedulesExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAllBackupSchedulesApiRequest) (*invalid type, *net/http.Response, error)) \*CloudBackupsApi_DeleteAllBackupSchedulesExecute_Call
+- (*CloudBackupsApi_GetBackupScheduleExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotSchedule, *net/http.Response, error) *CloudBackupsApi_GetBackupScheduleExecute_Call to func(*invalid type, *net/http.Response, error) \*CloudBackupsApi_GetBackupScheduleExecute_Call
+- (*CloudBackupsApi_GetBackupScheduleExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetBackupScheduleApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotSchedule, *net/http.Response, error)) *CloudBackupsApi_GetBackupScheduleExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetBackupScheduleApiRequest) (*invalid type, *net/http.Response, error)) \*CloudBackupsApi_GetBackupScheduleExecute_Call
+- (*CloudBackupsApi_UpdateBackupScheduleExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotSchedule, *net/http.Response, error) *CloudBackupsApi_UpdateBackupScheduleExecute_Call to func(*invalid type, *net/http.Response, error) \*CloudBackupsApi_UpdateBackupScheduleExecute_Call
+- (*CloudBackupsApi_UpdateBackupScheduleExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateBackupScheduleApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotSchedule, *net/http.Response, error)) *CloudBackupsApi_UpdateBackupScheduleExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateBackupScheduleApiRequest) (*invalid type, *net/http.Response, error)) \*CloudBackupsApi_UpdateBackupScheduleExecute_Call
+- (*CloudBackupsApi_UpdateBackupSchedule_Call).Run: changed from func(func(ctx context.Context, groupId string, clusterName string, diskBackupSnapshotSchedule *go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotSchedule)) *CloudBackupsApi_UpdateBackupSchedule_Call to func(func(ctx context.Context, groupId string, clusterName string, diskBackupSnapshotSchedule *invalid type)) \*CloudBackupsApi_UpdateBackupSchedule_Call
+- (*CloudBackupsApi_UpdateBackupSchedule_Call).RunAndReturn: changed from func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.DiskBackupSnapshotSchedule) go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateBackupScheduleApiRequest) *CloudBackupsApi_UpdateBackupSchedule_Call to func(func(context.Context, string, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateBackupScheduleApiRequest) \*CloudBackupsApi_UpdateBackupSchedule_Call
+- (*ClustersApi).CreateCluster: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.AdvancedClusterDescription) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateClusterApiRequest to func(context.Context, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateClusterApiRequest
+- (*ClustersApi).CreateClusterExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateClusterApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AdvancedClusterDescription, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateClusterApiRequest) (*invalid type, \*net/http.Response, error)
+- (*ClustersApi).GetClusterAdvancedConfigurationExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetClusterAdvancedConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ClusterDescriptionProcessArgs, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetClusterAdvancedConfigurationApiRequest) (*invalid type, \*net/http.Response, error)
+- (*ClustersApi).GetClusterExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetClusterApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AdvancedClusterDescription, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetClusterApiRequest) (*invalid type, \*net/http.Response, error)
+- (*ClustersApi).ListClustersExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListClustersApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedAdvancedClusterDescription, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListClustersApiRequest) (*invalid type, \*net/http.Response, error)
+- (*ClustersApi).UpdateCluster: changed from func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.AdvancedClusterDescription) go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateClusterApiRequest to func(context.Context, string, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateClusterApiRequest
+- (*ClustersApi).UpdateClusterAdvancedConfiguration: changed from func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.ClusterDescriptionProcessArgs) go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateClusterAdvancedConfigurationApiRequest to func(context.Context, string, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateClusterAdvancedConfigurationApiRequest
+- (*ClustersApi).UpdateClusterAdvancedConfigurationExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateClusterAdvancedConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ClusterDescriptionProcessArgs, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateClusterAdvancedConfigurationApiRequest) (*invalid type, \*net/http.Response, error)
+- (*ClustersApi).UpdateClusterExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateClusterApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AdvancedClusterDescription, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateClusterApiRequest) (*invalid type, \*net/http.Response, error)
+- (*ClustersApi_CreateClusterExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.AdvancedClusterDescription, *net/http.Response, error) *ClustersApi_CreateClusterExecute_Call to func(*invalid type, *net/http.Response, error) \*ClustersApi_CreateClusterExecute_Call
+- (*ClustersApi_CreateClusterExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateClusterApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AdvancedClusterDescription, *net/http.Response, error)) *ClustersApi_CreateClusterExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateClusterApiRequest) (*invalid type, *net/http.Response, error)) \*ClustersApi_CreateClusterExecute_Call
+- (*ClustersApi_CreateCluster_Call).Run: changed from func(func(ctx context.Context, groupId string, advancedClusterDescription *go.mongodb.org/atlas-sdk/v20250312009/admin.AdvancedClusterDescription)) *ClustersApi_CreateCluster_Call to func(func(ctx context.Context, groupId string, advancedClusterDescription *invalid type)) \*ClustersApi_CreateCluster_Call
+- (*ClustersApi_CreateCluster_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.AdvancedClusterDescription) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateClusterApiRequest) *ClustersApi_CreateCluster_Call to func(func(context.Context, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateClusterApiRequest) \*ClustersApi_CreateCluster_Call
+- (*ClustersApi_GetClusterAdvancedConfigurationExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.ClusterDescriptionProcessArgs, *net/http.Response, error) *ClustersApi_GetClusterAdvancedConfigurationExecute_Call to func(*invalid type, *net/http.Response, error) \*ClustersApi_GetClusterAdvancedConfigurationExecute_Call
+- (*ClustersApi_GetClusterAdvancedConfigurationExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetClusterAdvancedConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ClusterDescriptionProcessArgs, *net/http.Response, error)) *ClustersApi_GetClusterAdvancedConfigurationExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetClusterAdvancedConfigurationApiRequest) (*invalid type, *net/http.Response, error)) \*ClustersApi_GetClusterAdvancedConfigurationExecute_Call
+- (*ClustersApi_GetClusterExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.AdvancedClusterDescription, *net/http.Response, error) *ClustersApi_GetClusterExecute_Call to func(*invalid type, *net/http.Response, error) \*ClustersApi_GetClusterExecute_Call
+- (*ClustersApi_GetClusterExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetClusterApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AdvancedClusterDescription, *net/http.Response, error)) *ClustersApi_GetClusterExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetClusterApiRequest) (*invalid type, *net/http.Response, error)) \*ClustersApi_GetClusterExecute_Call
+- (*ClustersApi_ListClustersExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedAdvancedClusterDescription, *net/http.Response, error) *ClustersApi_ListClustersExecute_Call to func(*invalid type, *net/http.Response, error) \*ClustersApi_ListClustersExecute_Call
+- (*ClustersApi_ListClustersExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListClustersApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedAdvancedClusterDescription, *net/http.Response, error)) *ClustersApi_ListClustersExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListClustersApiRequest) (*invalid type, *net/http.Response, error)) \*ClustersApi_ListClustersExecute_Call
+- (*ClustersApi_UpdateClusterAdvancedConfigurationExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.ClusterDescriptionProcessArgs, *net/http.Response, error) *ClustersApi_UpdateClusterAdvancedConfigurationExecute_Call to func(*invalid type, *net/http.Response, error) \*ClustersApi_UpdateClusterAdvancedConfigurationExecute_Call
+- (*ClustersApi_UpdateClusterAdvancedConfigurationExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateClusterAdvancedConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ClusterDescriptionProcessArgs, *net/http.Response, error)) *ClustersApi_UpdateClusterAdvancedConfigurationExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateClusterAdvancedConfigurationApiRequest) (*invalid type, *net/http.Response, error)) \*ClustersApi_UpdateClusterAdvancedConfigurationExecute_Call
+- (*ClustersApi_UpdateClusterAdvancedConfiguration_Call).Run: changed from func(func(ctx context.Context, groupId string, clusterName string, clusterDescriptionProcessArgs *go.mongodb.org/atlas-sdk/v20250312009/admin.ClusterDescriptionProcessArgs)) *ClustersApi_UpdateClusterAdvancedConfiguration_Call to func(func(ctx context.Context, groupId string, clusterName string, clusterDescriptionProcessArgs *invalid type)) \*ClustersApi_UpdateClusterAdvancedConfiguration_Call
+- (*ClustersApi_UpdateClusterAdvancedConfiguration_Call).RunAndReturn: changed from func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.ClusterDescriptionProcessArgs) go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateClusterAdvancedConfigurationApiRequest) *ClustersApi_UpdateClusterAdvancedConfiguration_Call to func(func(context.Context, string, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateClusterAdvancedConfigurationApiRequest) \*ClustersApi_UpdateClusterAdvancedConfiguration_Call
+- (*ClustersApi_UpdateClusterExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.AdvancedClusterDescription, *net/http.Response, error) *ClustersApi_UpdateClusterExecute_Call to func(*invalid type, *net/http.Response, error) \*ClustersApi_UpdateClusterExecute_Call
+- (*ClustersApi_UpdateClusterExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateClusterApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AdvancedClusterDescription, *net/http.Response, error)) *ClustersApi_UpdateClusterExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateClusterApiRequest) (*invalid type, *net/http.Response, error)) \*ClustersApi_UpdateClusterExecute_Call
+- (*ClustersApi_UpdateCluster_Call).Run: changed from func(func(ctx context.Context, groupId string, clusterName string, advancedClusterDescription *go.mongodb.org/atlas-sdk/v20250312009/admin.AdvancedClusterDescription)) *ClustersApi_UpdateCluster_Call to func(func(ctx context.Context, groupId string, clusterName string, advancedClusterDescription *invalid type)) \*ClustersApi_UpdateCluster_Call
+- (*ClustersApi_UpdateCluster_Call).RunAndReturn: changed from func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.AdvancedClusterDescription) go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateClusterApiRequest) *ClustersApi_UpdateCluster_Call to func(func(context.Context, string, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateClusterApiRequest) \*ClustersApi_UpdateCluster_Call
+- (*GlobalClustersApi).CreateCustomZoneMappingExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCustomZoneMappingApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.GeoSharding, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCustomZoneMappingApiRequest) (*invalid type, \*net/http.Response, error)
+- (*GlobalClustersApi).CreateManagedNamespace: changed from func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.ManagedNamespace) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateManagedNamespaceApiRequest to func(context.Context, string, string, \*invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateManagedNamespaceApiRequest
+- (*GlobalClustersApi).CreateManagedNamespaceExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateManagedNamespaceApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.GeoSharding, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateManagedNamespaceApiRequest) (*invalid type, \*net/http.Response, error)
+- (*GlobalClustersApi).DeleteAllCustomZoneMappingsExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAllCustomZoneMappingsApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.GeoSharding, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAllCustomZoneMappingsApiRequest) (*invalid type, \*net/http.Response, error)
+- (*GlobalClustersApi).DeleteManagedNamespaceExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteManagedNamespaceApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.GeoSharding, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteManagedNamespaceApiRequest) (*invalid type, \*net/http.Response, error)
+- (*GlobalClustersApi).GetManagedNamespaceExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetManagedNamespaceApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.GeoSharding, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetManagedNamespaceApiRequest) (*invalid type, \*net/http.Response, error)
+- (*GlobalClustersApi_CreateCustomZoneMappingExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.GeoSharding, *net/http.Response, error) *GlobalClustersApi_CreateCustomZoneMappingExecute_Call to func(*invalid type, *net/http.Response, error) \*GlobalClustersApi_CreateCustomZoneMappingExecute_Call
+- (*GlobalClustersApi_CreateCustomZoneMappingExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCustomZoneMappingApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.GeoSharding, *net/http.Response, error)) *GlobalClustersApi_CreateCustomZoneMappingExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCustomZoneMappingApiRequest) (*invalid type, *net/http.Response, error)) \*GlobalClustersApi_CreateCustomZoneMappingExecute_Call
+- (*GlobalClustersApi_CreateManagedNamespaceExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.GeoSharding, *net/http.Response, error) *GlobalClustersApi_CreateManagedNamespaceExecute_Call to func(*invalid type, *net/http.Response, error) \*GlobalClustersApi_CreateManagedNamespaceExecute_Call
+- (*GlobalClustersApi_CreateManagedNamespaceExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateManagedNamespaceApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.GeoSharding, *net/http.Response, error)) *GlobalClustersApi_CreateManagedNamespaceExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateManagedNamespaceApiRequest) (*invalid type, *net/http.Response, error)) \*GlobalClustersApi_CreateManagedNamespaceExecute_Call
+- (*GlobalClustersApi_CreateManagedNamespace_Call).Run: changed from func(func(ctx context.Context, groupId string, clusterName string, managedNamespace *go.mongodb.org/atlas-sdk/v20250312009/admin.ManagedNamespace)) *GlobalClustersApi_CreateManagedNamespace_Call to func(func(ctx context.Context, groupId string, clusterName string, managedNamespace *invalid type)) \*GlobalClustersApi_CreateManagedNamespace_Call
+- (*GlobalClustersApi_CreateManagedNamespace_Call).RunAndReturn: changed from func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.ManagedNamespace) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateManagedNamespaceApiRequest) *GlobalClustersApi_CreateManagedNamespace_Call to func(func(context.Context, string, string, *invalid type) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateManagedNamespaceApiRequest) \*GlobalClustersApi_CreateManagedNamespace_Call
+- (*GlobalClustersApi_DeleteAllCustomZoneMappingsExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.GeoSharding, *net/http.Response, error) *GlobalClustersApi_DeleteAllCustomZoneMappingsExecute_Call to func(*invalid type, *net/http.Response, error) \*GlobalClustersApi_DeleteAllCustomZoneMappingsExecute_Call
+- (*GlobalClustersApi_DeleteAllCustomZoneMappingsExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAllCustomZoneMappingsApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.GeoSharding, *net/http.Response, error)) *GlobalClustersApi_DeleteAllCustomZoneMappingsExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAllCustomZoneMappingsApiRequest) (*invalid type, *net/http.Response, error)) \*GlobalClustersApi_DeleteAllCustomZoneMappingsExecute_Call
+- (*GlobalClustersApi_DeleteManagedNamespaceExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.GeoSharding, *net/http.Response, error) *GlobalClustersApi_DeleteManagedNamespaceExecute_Call to func(*invalid type, *net/http.Response, error) \*GlobalClustersApi_DeleteManagedNamespaceExecute_Call
+- (*GlobalClustersApi_DeleteManagedNamespaceExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteManagedNamespaceApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.GeoSharding, *net/http.Response, error)) *GlobalClustersApi_DeleteManagedNamespaceExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteManagedNamespaceApiRequest) (*invalid type, *net/http.Response, error)) \*GlobalClustersApi_DeleteManagedNamespaceExecute_Call
+- (*GlobalClustersApi_GetManagedNamespaceExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.GeoSharding, *net/http.Response, error) *GlobalClustersApi_GetManagedNamespaceExecute_Call to func(*invalid type, *net/http.Response, error) \*GlobalClustersApi_GetManagedNamespaceExecute_Call
+- (*GlobalClustersApi_GetManagedNamespaceExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetManagedNamespaceApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.GeoSharding, *net/http.Response, error)) *GlobalClustersApi_GetManagedNamespaceExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetManagedNamespaceApiRequest) (*invalid type, *net/http.Response, error)) \*GlobalClustersApi_GetManagedNamespaceExecute_Call
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (\*AdvancedClusterDescription).GetDiskSizeGB: removed
diff --git a/tools/releaser/breaking_changes/v20240805002.md b/tools/releaser/breaking_changes/v20240805002.md
index 3c006b94..a9f6ec07 100644
--- a/tools/releaser/breaking_changes/v20240805002.md
+++ b/tools/releaser/breaking_changes/v20240805002.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- InvoicesApi.QueryLineItemsFromSingleInvoice: added
diff --git a/tools/releaser/breaking_changes/v20240805003.md b/tools/releaser/breaking_changes/v20240805003.md
index 88bb59ba..52c20150 100644
--- a/tools/releaser/breaking_changes/v20240805003.md
+++ b/tools/releaser/breaking_changes/v20240805003.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- EncryptionAtRestUsingCustomerKeyManagementApi.CreateEncryptionAtRestPrivateEndpoint: added
diff --git a/tools/releaser/breaking_changes/v20240805004.md b/tools/releaser/breaking_changes/v20240805004.md
index dc4639e4..f6652d72 100644
--- a/tools/releaser/breaking_changes/v20240805004.md
+++ b/tools/releaser/breaking_changes/v20240805004.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (*CloudProviderAccessApiService).AuthorizeCloudProviderAccessRoleExecute: changed from func(AuthorizeCloudProviderAccessRoleApiRequest) (*CloudProviderAccessRole, *net/http.Response, error) to func(AuthorizeCloudProviderAccessRoleApiRequest) (*CloudProviderAccessRole, \*net/http.Response, error)
diff --git a/tools/releaser/breaking_changes/v20240805005.md b/tools/releaser/breaking_changes/v20240805005.md
index ad59841c..55597907 100644
--- a/tools/releaser/breaking_changes/v20240805005.md
+++ b/tools/releaser/breaking_changes/v20240805005.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (\*ClusterFreeAutoScaling).GetCompute: changed from func() string to func() FreeComputeAutoScalingRules
diff --git a/tools/releaser/breaking_changes/v20241023001.md b/tools/releaser/breaking_changes/v20241023001.md
index ef0edbc4..65976019 100644
--- a/tools/releaser/breaking_changes/v20241023001.md
+++ b/tools/releaser/breaking_changes/v20241023001.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (\*ApiError).HasError: removed
diff --git a/tools/releaser/breaking_changes/v20241113001.md b/tools/releaser/breaking_changes/v20241113001.md
index 4752dd32..4e6dcb2d 100644
--- a/tools/releaser/breaking_changes/v20241113001.md
+++ b/tools/releaser/breaking_changes/v20241113001.md
@@ -2,191 +2,191 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/mockadmin
+go.mongodb.org/atlas-sdk/v20250312009/mockadmin
Incompatible changes:
-- (\*AWSClustersDNSApi).GetAWSCustomDNS: changed from func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312008/admin.GetAWSCustomDNSApiRequest to func(context.Context, string) invalid type
-- (*AWSClustersDNSApi).GetAWSCustomDNSExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetAWSCustomDNSApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AWSCustomDNSEnabled, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AWSCustomDNSEnabled, \*net/http.Response, error)
-- (*AWSClustersDNSApi).GetAWSCustomDNSWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.GetAWSCustomDNSApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.GetAWSCustomDNSApiRequest to func(context.Context, \*invalid type) invalid type
-- (*AWSClustersDNSApi).ToggleAWSCustomDNS: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.AWSCustomDNSEnabled) go.mongodb.org/atlas-sdk/v20250312008/admin.ToggleAWSCustomDNSApiRequest to func(context.Context, string, \*go.mongodb.org/atlas-sdk/v20250312008/admin.AWSCustomDNSEnabled) invalid type
-- (*AWSClustersDNSApi).ToggleAWSCustomDNSExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.ToggleAWSCustomDNSApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AWSCustomDNSEnabled, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AWSCustomDNSEnabled, \*net/http.Response, error)
-- (*AWSClustersDNSApi).ToggleAWSCustomDNSWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.ToggleAWSCustomDNSApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.ToggleAWSCustomDNSApiRequest to func(context.Context, \*invalid type) invalid type
-- (*AWSClustersDNSApi_GetAWSCustomDNSExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.GetAWSCustomDNSApiRequest)) *AWSClustersDNSApi_GetAWSCustomDNSExecute_Call to func(func(r invalid type)) \*AWSClustersDNSApi_GetAWSCustomDNSExecute_Call
-- (*AWSClustersDNSApi_GetAWSCustomDNSExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetAWSCustomDNSApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AWSCustomDNSEnabled, *net/http.Response, error)) *AWSClustersDNSApi_GetAWSCustomDNSExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AWSCustomDNSEnabled, *net/http.Response, error)) \*AWSClustersDNSApi_GetAWSCustomDNSExecute_Call
-- (*AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetAWSCustomDNSApiRequest) *AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call to func(invalid type) \*AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call
-- (*AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.GetAWSCustomDNSApiParams)) *AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call
-- (*AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.GetAWSCustomDNSApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.GetAWSCustomDNSApiRequest) *AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call
-- (*AWSClustersDNSApi_GetAWSCustomDNS_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetAWSCustomDNSApiRequest) *AWSClustersDNSApi_GetAWSCustomDNS_Call to func(invalid type) \*AWSClustersDNSApi_GetAWSCustomDNS_Call
-- (*AWSClustersDNSApi_GetAWSCustomDNS_Call).RunAndReturn: changed from func(func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312008/admin.GetAWSCustomDNSApiRequest) *AWSClustersDNSApi_GetAWSCustomDNS_Call to func(func(context.Context, string) invalid type) \*AWSClustersDNSApi_GetAWSCustomDNS_Call
-- (*AWSClustersDNSApi_ToggleAWSCustomDNSExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.ToggleAWSCustomDNSApiRequest)) *AWSClustersDNSApi_ToggleAWSCustomDNSExecute_Call to func(func(r invalid type)) \*AWSClustersDNSApi_ToggleAWSCustomDNSExecute_Call
-- (*AWSClustersDNSApi_ToggleAWSCustomDNSExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.ToggleAWSCustomDNSApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AWSCustomDNSEnabled, *net/http.Response, error)) *AWSClustersDNSApi_ToggleAWSCustomDNSExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AWSCustomDNSEnabled, *net/http.Response, error)) \*AWSClustersDNSApi_ToggleAWSCustomDNSExecute_Call
-- (*AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.ToggleAWSCustomDNSApiRequest) *AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call to func(invalid type) \*AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call
-- (*AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.ToggleAWSCustomDNSApiParams)) *AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call
-- (*AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.ToggleAWSCustomDNSApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.ToggleAWSCustomDNSApiRequest) *AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call
-- (*AWSClustersDNSApi_ToggleAWSCustomDNS_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.ToggleAWSCustomDNSApiRequest) *AWSClustersDNSApi_ToggleAWSCustomDNS_Call to func(invalid type) \*AWSClustersDNSApi_ToggleAWSCustomDNS_Call
-- (*AWSClustersDNSApi_ToggleAWSCustomDNS_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.AWSCustomDNSEnabled) go.mongodb.org/atlas-sdk/v20250312008/admin.ToggleAWSCustomDNSApiRequest) *AWSClustersDNSApi_ToggleAWSCustomDNS_Call to func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.AWSCustomDNSEnabled) invalid type) \*AWSClustersDNSApi_ToggleAWSCustomDNS_Call
-- (*ClustersApi).GrantMongoDBEmployeeAccess: changed from func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.EmployeeAccessGrant) go.mongodb.org/atlas-sdk/v20250312008/admin.GrantMongoDBEmployeeAccessApiRequest to func(context.Context, string, string, \*go.mongodb.org/atlas-sdk/v20250312008/admin.EmployeeAccessGrant) invalid type
-- (*ClustersApi).GrantMongoDBEmployeeAccessExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GrantMongoDBEmployeeAccessApiRequest) (any, *net/http.Response, error) to func(invalid type) (any, \*net/http.Response, error)
-- (*ClustersApi).GrantMongoDBEmployeeAccessWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.GrantMongoDBEmployeeAccessApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.GrantMongoDBEmployeeAccessApiRequest to func(context.Context, \*invalid type) invalid type
-- (\*ClustersApi).RevokeMongoDBEmployeeAccess: changed from func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312008/admin.RevokeMongoDBEmployeeAccessApiRequest to func(context.Context, string, string) invalid type
-- (*ClustersApi).RevokeMongoDBEmployeeAccessExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.RevokeMongoDBEmployeeAccessApiRequest) (any, *net/http.Response, error) to func(invalid type) (any, \*net/http.Response, error)
-- (*ClustersApi).RevokeMongoDBEmployeeAccessWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.RevokeMongoDBEmployeeAccessApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.RevokeMongoDBEmployeeAccessApiRequest to func(context.Context, \*invalid type) invalid type
-- (*ClustersApi_GrantMongoDBEmployeeAccessExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.GrantMongoDBEmployeeAccessApiRequest)) *ClustersApi_GrantMongoDBEmployeeAccessExecute_Call to func(func(r invalid type)) \*ClustersApi_GrantMongoDBEmployeeAccessExecute_Call
-- (*ClustersApi_GrantMongoDBEmployeeAccessExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GrantMongoDBEmployeeAccessApiRequest) (any, *net/http.Response, error)) *ClustersApi_GrantMongoDBEmployeeAccessExecute_Call to func(func(invalid type) (any, *net/http.Response, error)) \*ClustersApi_GrantMongoDBEmployeeAccessExecute_Call
-- (*ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GrantMongoDBEmployeeAccessApiRequest) *ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call to func(invalid type) \*ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call
-- (*ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.GrantMongoDBEmployeeAccessApiParams)) *ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call
-- (*ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.GrantMongoDBEmployeeAccessApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.GrantMongoDBEmployeeAccessApiRequest) *ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call
-- (*ClustersApi_GrantMongoDBEmployeeAccess_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GrantMongoDBEmployeeAccessApiRequest) *ClustersApi_GrantMongoDBEmployeeAccess_Call to func(invalid type) \*ClustersApi_GrantMongoDBEmployeeAccess_Call
-- (*ClustersApi_GrantMongoDBEmployeeAccess_Call).RunAndReturn: changed from func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.EmployeeAccessGrant) go.mongodb.org/atlas-sdk/v20250312008/admin.GrantMongoDBEmployeeAccessApiRequest) *ClustersApi_GrantMongoDBEmployeeAccess_Call to func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.EmployeeAccessGrant) invalid type) \*ClustersApi_GrantMongoDBEmployeeAccess_Call
-- (*ClustersApi_RevokeMongoDBEmployeeAccessExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.RevokeMongoDBEmployeeAccessApiRequest)) *ClustersApi_RevokeMongoDBEmployeeAccessExecute_Call to func(func(r invalid type)) \*ClustersApi_RevokeMongoDBEmployeeAccessExecute_Call
-- (*ClustersApi_RevokeMongoDBEmployeeAccessExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.RevokeMongoDBEmployeeAccessApiRequest) (any, *net/http.Response, error)) *ClustersApi_RevokeMongoDBEmployeeAccessExecute_Call to func(func(invalid type) (any, *net/http.Response, error)) \*ClustersApi_RevokeMongoDBEmployeeAccessExecute_Call
-- (*ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.RevokeMongoDBEmployeeAccessApiRequest) *ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call to func(invalid type) \*ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call
-- (*ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.RevokeMongoDBEmployeeAccessApiParams)) *ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call
-- (*ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.RevokeMongoDBEmployeeAccessApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.RevokeMongoDBEmployeeAccessApiRequest) *ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call
-- (*ClustersApi_RevokeMongoDBEmployeeAccess_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.RevokeMongoDBEmployeeAccessApiRequest) *ClustersApi_RevokeMongoDBEmployeeAccess_Call to func(invalid type) \*ClustersApi_RevokeMongoDBEmployeeAccess_Call
-- (*ClustersApi_RevokeMongoDBEmployeeAccess_Call).RunAndReturn: changed from func(func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312008/admin.RevokeMongoDBEmployeeAccessApiRequest) *ClustersApi_RevokeMongoDBEmployeeAccess_Call to func(func(context.Context, string, string) invalid type) \*ClustersApi_RevokeMongoDBEmployeeAccess_Call
-- (\*InvoicesApi).CreateCostExplorerQueryProcess1: changed from func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCostExplorerQueryProcess1ApiRequest to func(context.Context, string, string) invalid type
-- (*InvoicesApi).CreateCostExplorerQueryProcess1Execute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCostExplorerQueryProcess1ApiRequest) (any, *net/http.Response, error) to func(invalid type) (any, \*net/http.Response, error)
-- (*InvoicesApi).CreateCostExplorerQueryProcess1WithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCostExplorerQueryProcess1ApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCostExplorerQueryProcess1ApiRequest to func(context.Context, \*invalid type) invalid type
-- (\*InvoicesApi).DownloadInvoiceCSV: changed from func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312008/admin.DownloadInvoiceCSVApiRequest to func(context.Context, string, string) invalid type
-- (*InvoicesApi).DownloadInvoiceCSVExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.DownloadInvoiceCSVApiRequest) (string, *net/http.Response, error) to func(invalid type) (string, \*net/http.Response, error)
-- (*InvoicesApi).DownloadInvoiceCSVWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.DownloadInvoiceCSVApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.DownloadInvoiceCSVApiRequest to func(context.Context, \*invalid type) invalid type
-- (*InvoicesApi_CreateCostExplorerQueryProcess1Execute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCostExplorerQueryProcess1ApiRequest)) *InvoicesApi_CreateCostExplorerQueryProcess1Execute_Call to func(func(r invalid type)) \*InvoicesApi_CreateCostExplorerQueryProcess1Execute_Call
-- (*InvoicesApi_CreateCostExplorerQueryProcess1Execute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCostExplorerQueryProcess1ApiRequest) (any, *net/http.Response, error)) *InvoicesApi_CreateCostExplorerQueryProcess1Execute_Call to func(func(invalid type) (any, *net/http.Response, error)) \*InvoicesApi_CreateCostExplorerQueryProcess1Execute_Call
-- (*InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCostExplorerQueryProcess1ApiRequest) *InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call to func(invalid type) \*InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call
-- (*InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCostExplorerQueryProcess1ApiParams)) *InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call to func(func(ctx context.Context, args *invalid type)) \*InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call
-- (*InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCostExplorerQueryProcess1ApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCostExplorerQueryProcess1ApiRequest) *InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call to func(func(context.Context, *invalid type) invalid type) \*InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call
-- (*InvoicesApi_CreateCostExplorerQueryProcess1_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCostExplorerQueryProcess1ApiRequest) *InvoicesApi_CreateCostExplorerQueryProcess1_Call to func(invalid type) \*InvoicesApi_CreateCostExplorerQueryProcess1_Call
-- (*InvoicesApi_CreateCostExplorerQueryProcess1_Call).RunAndReturn: changed from func(func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateCostExplorerQueryProcess1ApiRequest) *InvoicesApi_CreateCostExplorerQueryProcess1_Call to func(func(context.Context, string, string) invalid type) \*InvoicesApi_CreateCostExplorerQueryProcess1_Call
-- (*InvoicesApi_DownloadInvoiceCSVExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.DownloadInvoiceCSVApiRequest)) *InvoicesApi_DownloadInvoiceCSVExecute_Call to func(func(r invalid type)) \*InvoicesApi_DownloadInvoiceCSVExecute_Call
-- (*InvoicesApi_DownloadInvoiceCSVExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.DownloadInvoiceCSVApiRequest) (string, *net/http.Response, error)) *InvoicesApi_DownloadInvoiceCSVExecute_Call to func(func(invalid type) (string, *net/http.Response, error)) \*InvoicesApi_DownloadInvoiceCSVExecute_Call
-- (*InvoicesApi_DownloadInvoiceCSVWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.DownloadInvoiceCSVApiRequest) *InvoicesApi_DownloadInvoiceCSVWithParams_Call to func(invalid type) \*InvoicesApi_DownloadInvoiceCSVWithParams_Call
-- (*InvoicesApi_DownloadInvoiceCSVWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.DownloadInvoiceCSVApiParams)) *InvoicesApi_DownloadInvoiceCSVWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*InvoicesApi_DownloadInvoiceCSVWithParams_Call
-- (*InvoicesApi_DownloadInvoiceCSVWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.DownloadInvoiceCSVApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.DownloadInvoiceCSVApiRequest) *InvoicesApi_DownloadInvoiceCSVWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*InvoicesApi_DownloadInvoiceCSVWithParams_Call
-- (*InvoicesApi_DownloadInvoiceCSV_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.DownloadInvoiceCSVApiRequest) *InvoicesApi_DownloadInvoiceCSV_Call to func(invalid type) \*InvoicesApi_DownloadInvoiceCSV_Call
-- (*InvoicesApi_DownloadInvoiceCSV_Call).RunAndReturn: changed from func(func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312008/admin.DownloadInvoiceCSVApiRequest) *InvoicesApi_DownloadInvoiceCSV_Call to func(func(context.Context, string, string) invalid type) \*InvoicesApi_DownloadInvoiceCSV_Call
-- (\*LDAPConfigurationApi).DeleteLDAPConfiguration: changed from func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteLDAPConfigurationApiRequest to func(context.Context, string) invalid type
-- (*LDAPConfigurationApi).DeleteLDAPConfigurationExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteLDAPConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.UserSecurity, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.UserSecurity, \*net/http.Response, error)
-- (*LDAPConfigurationApi).DeleteLDAPConfigurationWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteLDAPConfigurationApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteLDAPConfigurationApiRequest to func(context.Context, \*invalid type) invalid type
-- (\*LDAPConfigurationApi).GetLDAPConfiguration: changed from func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationApiRequest to func(context.Context, string) invalid type
-- (*LDAPConfigurationApi).GetLDAPConfigurationExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.UserSecurity, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.UserSecurity, \*net/http.Response, error)
-- (\*LDAPConfigurationApi).GetLDAPConfigurationStatus: changed from func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationStatusApiRequest to func(context.Context, string, string) invalid type
-- (*LDAPConfigurationApi).GetLDAPConfigurationStatusExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationStatusApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.LDAPVerifyConnectivityJobRequest, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.LDAPVerifyConnectivityJobRequest, \*net/http.Response, error)
-- (*LDAPConfigurationApi).GetLDAPConfigurationStatusWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationStatusApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationStatusApiRequest to func(context.Context, \*invalid type) invalid type
-- (*LDAPConfigurationApi).GetLDAPConfigurationWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationApiRequest to func(context.Context, \*invalid type) invalid type
-- (*LDAPConfigurationApi).SaveLDAPConfiguration: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.UserSecurity) go.mongodb.org/atlas-sdk/v20250312008/admin.SaveLDAPConfigurationApiRequest to func(context.Context, string, \*go.mongodb.org/atlas-sdk/v20250312008/admin.UserSecurity) invalid type
-- (*LDAPConfigurationApi).SaveLDAPConfigurationExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.SaveLDAPConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.UserSecurity, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.UserSecurity, \*net/http.Response, error)
-- (*LDAPConfigurationApi).SaveLDAPConfigurationWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.SaveLDAPConfigurationApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.SaveLDAPConfigurationApiRequest to func(context.Context, \*invalid type) invalid type
-- (*LDAPConfigurationApi).VerifyLDAPConfiguration: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.LDAPVerifyConnectivityJobRequestParams) go.mongodb.org/atlas-sdk/v20250312008/admin.VerifyLDAPConfigurationApiRequest to func(context.Context, string, \*go.mongodb.org/atlas-sdk/v20250312008/admin.LDAPVerifyConnectivityJobRequestParams) invalid type
-- (*LDAPConfigurationApi).VerifyLDAPConfigurationExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.VerifyLDAPConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.LDAPVerifyConnectivityJobRequest, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.LDAPVerifyConnectivityJobRequest, \*net/http.Response, error)
-- (*LDAPConfigurationApi).VerifyLDAPConfigurationWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.VerifyLDAPConfigurationApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.VerifyLDAPConfigurationApiRequest to func(context.Context, \*invalid type) invalid type
-- (*LDAPConfigurationApi_DeleteLDAPConfigurationExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteLDAPConfigurationApiRequest)) *LDAPConfigurationApi_DeleteLDAPConfigurationExecute_Call to func(func(r invalid type)) \*LDAPConfigurationApi_DeleteLDAPConfigurationExecute_Call
-- (*LDAPConfigurationApi_DeleteLDAPConfigurationExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteLDAPConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.UserSecurity, *net/http.Response, error)) *LDAPConfigurationApi_DeleteLDAPConfigurationExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.UserSecurity, *net/http.Response, error)) \*LDAPConfigurationApi_DeleteLDAPConfigurationExecute_Call
-- (*LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteLDAPConfigurationApiRequest) *LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call to func(invalid type) \*LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call
-- (*LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteLDAPConfigurationApiParams)) *LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call
-- (*LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteLDAPConfigurationApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteLDAPConfigurationApiRequest) *LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call
-- (*LDAPConfigurationApi_DeleteLDAPConfiguration_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteLDAPConfigurationApiRequest) *LDAPConfigurationApi_DeleteLDAPConfiguration_Call to func(invalid type) \*LDAPConfigurationApi_DeleteLDAPConfiguration_Call
-- (*LDAPConfigurationApi_DeleteLDAPConfiguration_Call).RunAndReturn: changed from func(func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteLDAPConfigurationApiRequest) *LDAPConfigurationApi_DeleteLDAPConfiguration_Call to func(func(context.Context, string) invalid type) \*LDAPConfigurationApi_DeleteLDAPConfiguration_Call
-- (*LDAPConfigurationApi_GetLDAPConfigurationExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationApiRequest)) *LDAPConfigurationApi_GetLDAPConfigurationExecute_Call to func(func(r invalid type)) \*LDAPConfigurationApi_GetLDAPConfigurationExecute_Call
-- (*LDAPConfigurationApi_GetLDAPConfigurationExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.UserSecurity, *net/http.Response, error)) *LDAPConfigurationApi_GetLDAPConfigurationExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.UserSecurity, *net/http.Response, error)) \*LDAPConfigurationApi_GetLDAPConfigurationExecute_Call
-- (*LDAPConfigurationApi_GetLDAPConfigurationStatusExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationStatusApiRequest)) *LDAPConfigurationApi_GetLDAPConfigurationStatusExecute_Call to func(func(r invalid type)) \*LDAPConfigurationApi_GetLDAPConfigurationStatusExecute_Call
-- (*LDAPConfigurationApi_GetLDAPConfigurationStatusExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationStatusApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.LDAPVerifyConnectivityJobRequest, *net/http.Response, error)) *LDAPConfigurationApi_GetLDAPConfigurationStatusExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.LDAPVerifyConnectivityJobRequest, *net/http.Response, error)) \*LDAPConfigurationApi_GetLDAPConfigurationStatusExecute_Call
-- (*LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationStatusApiRequest) *LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call to func(invalid type) \*LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call
-- (*LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationStatusApiParams)) *LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call
-- (*LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationStatusApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationStatusApiRequest) *LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call
-- (*LDAPConfigurationApi_GetLDAPConfigurationStatus_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationStatusApiRequest) *LDAPConfigurationApi_GetLDAPConfigurationStatus_Call to func(invalid type) \*LDAPConfigurationApi_GetLDAPConfigurationStatus_Call
-- (*LDAPConfigurationApi_GetLDAPConfigurationStatus_Call).RunAndReturn: changed from func(func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationStatusApiRequest) *LDAPConfigurationApi_GetLDAPConfigurationStatus_Call to func(func(context.Context, string, string) invalid type) \*LDAPConfigurationApi_GetLDAPConfigurationStatus_Call
-- (*LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationApiRequest) *LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call to func(invalid type) \*LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call
-- (*LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationApiParams)) *LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call
-- (*LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationApiRequest) *LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call
-- (*LDAPConfigurationApi_GetLDAPConfiguration_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationApiRequest) *LDAPConfigurationApi_GetLDAPConfiguration_Call to func(invalid type) \*LDAPConfigurationApi_GetLDAPConfiguration_Call
-- (*LDAPConfigurationApi_GetLDAPConfiguration_Call).RunAndReturn: changed from func(func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312008/admin.GetLDAPConfigurationApiRequest) *LDAPConfigurationApi_GetLDAPConfiguration_Call to func(func(context.Context, string) invalid type) \*LDAPConfigurationApi_GetLDAPConfiguration_Call
-- (*LDAPConfigurationApi_SaveLDAPConfigurationExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.SaveLDAPConfigurationApiRequest)) *LDAPConfigurationApi_SaveLDAPConfigurationExecute_Call to func(func(r invalid type)) \*LDAPConfigurationApi_SaveLDAPConfigurationExecute_Call
-- (*LDAPConfigurationApi_SaveLDAPConfigurationExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.SaveLDAPConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.UserSecurity, *net/http.Response, error)) *LDAPConfigurationApi_SaveLDAPConfigurationExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.UserSecurity, *net/http.Response, error)) \*LDAPConfigurationApi_SaveLDAPConfigurationExecute_Call
-- (*LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.SaveLDAPConfigurationApiRequest) *LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call to func(invalid type) \*LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call
-- (*LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.SaveLDAPConfigurationApiParams)) *LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call
-- (*LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.SaveLDAPConfigurationApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.SaveLDAPConfigurationApiRequest) *LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call
-- (*LDAPConfigurationApi_SaveLDAPConfiguration_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.SaveLDAPConfigurationApiRequest) *LDAPConfigurationApi_SaveLDAPConfiguration_Call to func(invalid type) \*LDAPConfigurationApi_SaveLDAPConfiguration_Call
-- (*LDAPConfigurationApi_SaveLDAPConfiguration_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.UserSecurity) go.mongodb.org/atlas-sdk/v20250312008/admin.SaveLDAPConfigurationApiRequest) *LDAPConfigurationApi_SaveLDAPConfiguration_Call to func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.UserSecurity) invalid type) \*LDAPConfigurationApi_SaveLDAPConfiguration_Call
-- (*LDAPConfigurationApi_VerifyLDAPConfigurationExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.VerifyLDAPConfigurationApiRequest)) *LDAPConfigurationApi_VerifyLDAPConfigurationExecute_Call to func(func(r invalid type)) \*LDAPConfigurationApi_VerifyLDAPConfigurationExecute_Call
-- (*LDAPConfigurationApi_VerifyLDAPConfigurationExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.VerifyLDAPConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.LDAPVerifyConnectivityJobRequest, *net/http.Response, error)) *LDAPConfigurationApi_VerifyLDAPConfigurationExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.LDAPVerifyConnectivityJobRequest, *net/http.Response, error)) \*LDAPConfigurationApi_VerifyLDAPConfigurationExecute_Call
-- (*LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.VerifyLDAPConfigurationApiRequest) *LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call to func(invalid type) \*LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call
-- (*LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.VerifyLDAPConfigurationApiParams)) *LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call
-- (*LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.VerifyLDAPConfigurationApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.VerifyLDAPConfigurationApiRequest) *LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call
-- (*LDAPConfigurationApi_VerifyLDAPConfiguration_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.VerifyLDAPConfigurationApiRequest) *LDAPConfigurationApi_VerifyLDAPConfiguration_Call to func(invalid type) \*LDAPConfigurationApi_VerifyLDAPConfiguration_Call
-- (*LDAPConfigurationApi_VerifyLDAPConfiguration_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.LDAPVerifyConnectivityJobRequestParams) go.mongodb.org/atlas-sdk/v20250312008/admin.VerifyLDAPConfigurationApiRequest) *LDAPConfigurationApi_VerifyLDAPConfiguration_Call to func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.LDAPVerifyConnectivityJobRequestParams) invalid type) \*LDAPConfigurationApi_VerifyLDAPConfiguration_Call
-- (\*ProjectsApi).GetProjectLTSVersions: changed from func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312008/admin.GetProjectLTSVersionsApiRequest to func(context.Context, string) invalid type
-- (*ProjectsApi).GetProjectLTSVersionsExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetProjectLTSVersionsApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedAvailableVersion, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedAvailableVersion, \*net/http.Response, error)
-- (*ProjectsApi).GetProjectLTSVersionsWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.GetProjectLTSVersionsApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.GetProjectLTSVersionsApiRequest to func(context.Context, \*invalid type) invalid type
-- (\*ProjectsApi).ReturnAllIPAddresses: changed from func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllIPAddressesApiRequest to func(context.Context, string) invalid type
-- (*ProjectsApi).ReturnAllIPAddressesExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllIPAddressesApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.GroupIPAddresses, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.GroupIPAddresses, \*net/http.Response, error)
-- (*ProjectsApi).ReturnAllIPAddressesWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllIPAddressesApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllIPAddressesApiRequest to func(context.Context, \*invalid type) invalid type
-- (*ProjectsApi_GetProjectLTSVersionsExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.GetProjectLTSVersionsApiRequest)) *ProjectsApi_GetProjectLTSVersionsExecute_Call to func(func(r invalid type)) \*ProjectsApi_GetProjectLTSVersionsExecute_Call
-- (*ProjectsApi_GetProjectLTSVersionsExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetProjectLTSVersionsApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedAvailableVersion, *net/http.Response, error)) *ProjectsApi_GetProjectLTSVersionsExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedAvailableVersion, *net/http.Response, error)) \*ProjectsApi_GetProjectLTSVersionsExecute_Call
-- (*ProjectsApi_GetProjectLTSVersionsWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetProjectLTSVersionsApiRequest) *ProjectsApi_GetProjectLTSVersionsWithParams_Call to func(invalid type) \*ProjectsApi_GetProjectLTSVersionsWithParams_Call
-- (*ProjectsApi_GetProjectLTSVersionsWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.GetProjectLTSVersionsApiParams)) *ProjectsApi_GetProjectLTSVersionsWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ProjectsApi_GetProjectLTSVersionsWithParams_Call
-- (*ProjectsApi_GetProjectLTSVersionsWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.GetProjectLTSVersionsApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.GetProjectLTSVersionsApiRequest) *ProjectsApi_GetProjectLTSVersionsWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ProjectsApi_GetProjectLTSVersionsWithParams_Call
-- (*ProjectsApi_GetProjectLTSVersions_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetProjectLTSVersionsApiRequest) *ProjectsApi_GetProjectLTSVersions_Call to func(invalid type) \*ProjectsApi_GetProjectLTSVersions_Call
-- (*ProjectsApi_GetProjectLTSVersions_Call).RunAndReturn: changed from func(func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312008/admin.GetProjectLTSVersionsApiRequest) *ProjectsApi_GetProjectLTSVersions_Call to func(func(context.Context, string) invalid type) \*ProjectsApi_GetProjectLTSVersions_Call
-- (*ProjectsApi_ReturnAllIPAddressesExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllIPAddressesApiRequest)) *ProjectsApi_ReturnAllIPAddressesExecute_Call to func(func(r invalid type)) \*ProjectsApi_ReturnAllIPAddressesExecute_Call
-- (*ProjectsApi_ReturnAllIPAddressesExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllIPAddressesApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.GroupIPAddresses, *net/http.Response, error)) *ProjectsApi_ReturnAllIPAddressesExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.GroupIPAddresses, *net/http.Response, error)) \*ProjectsApi_ReturnAllIPAddressesExecute_Call
-- (*ProjectsApi_ReturnAllIPAddressesWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllIPAddressesApiRequest) *ProjectsApi_ReturnAllIPAddressesWithParams_Call to func(invalid type) \*ProjectsApi_ReturnAllIPAddressesWithParams_Call
-- (*ProjectsApi_ReturnAllIPAddressesWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllIPAddressesApiParams)) *ProjectsApi_ReturnAllIPAddressesWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ProjectsApi_ReturnAllIPAddressesWithParams_Call
-- (*ProjectsApi_ReturnAllIPAddressesWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllIPAddressesApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllIPAddressesApiRequest) *ProjectsApi_ReturnAllIPAddressesWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ProjectsApi_ReturnAllIPAddressesWithParams_Call
-- (*ProjectsApi_ReturnAllIPAddresses_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllIPAddressesApiRequest) *ProjectsApi_ReturnAllIPAddresses_Call to func(invalid type) \*ProjectsApi_ReturnAllIPAddresses_Call
-- (*ProjectsApi_ReturnAllIPAddresses_Call).RunAndReturn: changed from func(func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllIPAddressesApiRequest) *ProjectsApi_ReturnAllIPAddresses_Call to func(func(context.Context, string) invalid type) \*ProjectsApi_ReturnAllIPAddresses_Call
-- (\*RootApi).ReturnAllControlPlaneIPAddresses: changed from func(context.Context) go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllControlPlaneIPAddressesApiRequest to func(context.Context) invalid type
-- (*RootApi).ReturnAllControlPlaneIPAddressesExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllControlPlaneIPAddressesApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ControlPlaneIPAddresses, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ControlPlaneIPAddresses, \*net/http.Response, error)
-- (*RootApi).ReturnAllControlPlaneIPAddressesWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllControlPlaneIPAddressesApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllControlPlaneIPAddressesApiRequest to func(context.Context, \*invalid type) invalid type
-- (*RootApi_ReturnAllControlPlaneIPAddressesExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllControlPlaneIPAddressesApiRequest)) *RootApi_ReturnAllControlPlaneIPAddressesExecute_Call to func(func(r invalid type)) \*RootApi_ReturnAllControlPlaneIPAddressesExecute_Call
-- (*RootApi_ReturnAllControlPlaneIPAddressesExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllControlPlaneIPAddressesApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ControlPlaneIPAddresses, *net/http.Response, error)) *RootApi_ReturnAllControlPlaneIPAddressesExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ControlPlaneIPAddresses, *net/http.Response, error)) \*RootApi_ReturnAllControlPlaneIPAddressesExecute_Call
-- (*RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllControlPlaneIPAddressesApiRequest) *RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call to func(invalid type) \*RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call
-- (*RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllControlPlaneIPAddressesApiParams)) *RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call
-- (*RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllControlPlaneIPAddressesApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllControlPlaneIPAddressesApiRequest) *RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call
-- (*RootApi_ReturnAllControlPlaneIPAddresses_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllControlPlaneIPAddressesApiRequest) *RootApi_ReturnAllControlPlaneIPAddresses_Call to func(invalid type) \*RootApi_ReturnAllControlPlaneIPAddresses_Call
-- (*RootApi_ReturnAllControlPlaneIPAddresses_Call).RunAndReturn: changed from func(func(context.Context) go.mongodb.org/atlas-sdk/v20250312008/admin.ReturnAllControlPlaneIPAddressesApiRequest) *RootApi_ReturnAllControlPlaneIPAddresses_Call to func(func(context.Context) invalid type) \*RootApi_ReturnAllControlPlaneIPAddresses_Call
-- (*StreamsApi).AcceptVPCPeeringConnection: changed from func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.VPCPeeringActionChallenge) go.mongodb.org/atlas-sdk/v20250312008/admin.AcceptVPCPeeringConnectionApiRequest to func(context.Context, string, string, \*go.mongodb.org/atlas-sdk/v20250312008/admin.VPCPeeringActionChallenge) invalid type
-- (*StreamsApi).AcceptVPCPeeringConnectionExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.AcceptVPCPeeringConnectionApiRequest) (any, *net/http.Response, error) to func(invalid type) (any, \*net/http.Response, error)
-- (*StreamsApi).AcceptVPCPeeringConnectionWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.AcceptVPCPeeringConnectionApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.AcceptVPCPeeringConnectionApiRequest to func(context.Context, \*invalid type) invalid type
-- (\*StreamsApi).DeleteVPCPeeringConnection: changed from func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteVPCPeeringConnectionApiRequest to func(context.Context, string, string) invalid type
-- (*StreamsApi).DeleteVPCPeeringConnectionExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteVPCPeeringConnectionApiRequest) (any, *net/http.Response, error) to func(invalid type) (any, \*net/http.Response, error)
-- (*StreamsApi).DeleteVPCPeeringConnectionWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteVPCPeeringConnectionApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteVPCPeeringConnectionApiRequest to func(context.Context, \*invalid type) invalid type
-- (\*StreamsApi).GetVPCPeeringConnections: changed from func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312008/admin.GetVPCPeeringConnectionsApiRequest to func(context.Context, string) invalid type
-- (*StreamsApi).GetVPCPeeringConnectionsExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetVPCPeeringConnectionsApiRequest) (*net/http.Response, error) to func(invalid type) (\*net/http.Response, error)
-- (*StreamsApi).GetVPCPeeringConnectionsWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.GetVPCPeeringConnectionsApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.GetVPCPeeringConnectionsApiRequest to func(context.Context, \*invalid type) invalid type
-- (\*StreamsApi).RejectVPCPeeringConnection: changed from func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312008/admin.RejectVPCPeeringConnectionApiRequest to func(context.Context, string, string) invalid type
-- (*StreamsApi).RejectVPCPeeringConnectionExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.RejectVPCPeeringConnectionApiRequest) (any, *net/http.Response, error) to func(invalid type) (any, \*net/http.Response, error)
-- (*StreamsApi).RejectVPCPeeringConnectionWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.RejectVPCPeeringConnectionApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.RejectVPCPeeringConnectionApiRequest to func(context.Context, \*invalid type) invalid type
-- (*StreamsApi_AcceptVPCPeeringConnectionExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.AcceptVPCPeeringConnectionApiRequest)) *StreamsApi_AcceptVPCPeeringConnectionExecute_Call to func(func(r invalid type)) \*StreamsApi_AcceptVPCPeeringConnectionExecute_Call
-- (*StreamsApi_AcceptVPCPeeringConnectionExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.AcceptVPCPeeringConnectionApiRequest) (any, *net/http.Response, error)) *StreamsApi_AcceptVPCPeeringConnectionExecute_Call to func(func(invalid type) (any, *net/http.Response, error)) \*StreamsApi_AcceptVPCPeeringConnectionExecute_Call
-- (*StreamsApi_AcceptVPCPeeringConnectionWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.AcceptVPCPeeringConnectionApiRequest) *StreamsApi_AcceptVPCPeeringConnectionWithParams_Call to func(invalid type) \*StreamsApi_AcceptVPCPeeringConnectionWithParams_Call
-- (*StreamsApi_AcceptVPCPeeringConnectionWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.AcceptVPCPeeringConnectionApiParams)) *StreamsApi_AcceptVPCPeeringConnectionWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*StreamsApi_AcceptVPCPeeringConnectionWithParams_Call
-- (*StreamsApi_AcceptVPCPeeringConnectionWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.AcceptVPCPeeringConnectionApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.AcceptVPCPeeringConnectionApiRequest) *StreamsApi_AcceptVPCPeeringConnectionWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*StreamsApi_AcceptVPCPeeringConnectionWithParams_Call
-- (*StreamsApi_AcceptVPCPeeringConnection_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.AcceptVPCPeeringConnectionApiRequest) *StreamsApi_AcceptVPCPeeringConnection_Call to func(invalid type) \*StreamsApi_AcceptVPCPeeringConnection_Call
-- (*StreamsApi_AcceptVPCPeeringConnection_Call).RunAndReturn: changed from func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.VPCPeeringActionChallenge) go.mongodb.org/atlas-sdk/v20250312008/admin.AcceptVPCPeeringConnectionApiRequest) *StreamsApi_AcceptVPCPeeringConnection_Call to func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.VPCPeeringActionChallenge) invalid type) \*StreamsApi_AcceptVPCPeeringConnection_Call
-- (*StreamsApi_DeleteVPCPeeringConnectionExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteVPCPeeringConnectionApiRequest)) *StreamsApi_DeleteVPCPeeringConnectionExecute_Call to func(func(r invalid type)) \*StreamsApi_DeleteVPCPeeringConnectionExecute_Call
-- (*StreamsApi_DeleteVPCPeeringConnectionExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteVPCPeeringConnectionApiRequest) (any, *net/http.Response, error)) *StreamsApi_DeleteVPCPeeringConnectionExecute_Call to func(func(invalid type) (any, *net/http.Response, error)) \*StreamsApi_DeleteVPCPeeringConnectionExecute_Call
-- (*StreamsApi_DeleteVPCPeeringConnectionWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteVPCPeeringConnectionApiRequest) *StreamsApi_DeleteVPCPeeringConnectionWithParams_Call to func(invalid type) \*StreamsApi_DeleteVPCPeeringConnectionWithParams_Call
-- (*StreamsApi_DeleteVPCPeeringConnectionWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteVPCPeeringConnectionApiParams)) *StreamsApi_DeleteVPCPeeringConnectionWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*StreamsApi_DeleteVPCPeeringConnectionWithParams_Call
-- (*StreamsApi_DeleteVPCPeeringConnectionWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteVPCPeeringConnectionApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteVPCPeeringConnectionApiRequest) *StreamsApi_DeleteVPCPeeringConnectionWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*StreamsApi_DeleteVPCPeeringConnectionWithParams_Call
-- (*StreamsApi_DeleteVPCPeeringConnection_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteVPCPeeringConnectionApiRequest) *StreamsApi_DeleteVPCPeeringConnection_Call to func(invalid type) \*StreamsApi_DeleteVPCPeeringConnection_Call
-- (*StreamsApi_DeleteVPCPeeringConnection_Call).RunAndReturn: changed from func(func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteVPCPeeringConnectionApiRequest) *StreamsApi_DeleteVPCPeeringConnection_Call to func(func(context.Context, string, string) invalid type) \*StreamsApi_DeleteVPCPeeringConnection_Call
-- (*StreamsApi_GetVPCPeeringConnectionsExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.GetVPCPeeringConnectionsApiRequest)) *StreamsApi_GetVPCPeeringConnectionsExecute_Call to func(func(r invalid type)) \*StreamsApi_GetVPCPeeringConnectionsExecute_Call
-- (*StreamsApi_GetVPCPeeringConnectionsExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetVPCPeeringConnectionsApiRequest) (*net/http.Response, error)) *StreamsApi_GetVPCPeeringConnectionsExecute_Call to func(func(invalid type) (*net/http.Response, error)) \*StreamsApi_GetVPCPeeringConnectionsExecute_Call
-- (*StreamsApi_GetVPCPeeringConnectionsWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetVPCPeeringConnectionsApiRequest) *StreamsApi_GetVPCPeeringConnectionsWithParams_Call to func(invalid type) \*StreamsApi_GetVPCPeeringConnectionsWithParams_Call
-- (*StreamsApi_GetVPCPeeringConnectionsWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.GetVPCPeeringConnectionsApiParams)) *StreamsApi_GetVPCPeeringConnectionsWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*StreamsApi_GetVPCPeeringConnectionsWithParams_Call
-- (*StreamsApi_GetVPCPeeringConnectionsWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.GetVPCPeeringConnectionsApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.GetVPCPeeringConnectionsApiRequest) *StreamsApi_GetVPCPeeringConnectionsWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*StreamsApi_GetVPCPeeringConnectionsWithParams_Call
-- (*StreamsApi_GetVPCPeeringConnections_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetVPCPeeringConnectionsApiRequest) *StreamsApi_GetVPCPeeringConnections_Call to func(invalid type) \*StreamsApi_GetVPCPeeringConnections_Call
-- (*StreamsApi_GetVPCPeeringConnections_Call).RunAndReturn: changed from func(func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312008/admin.GetVPCPeeringConnectionsApiRequest) *StreamsApi_GetVPCPeeringConnections_Call to func(func(context.Context, string) invalid type) \*StreamsApi_GetVPCPeeringConnections_Call
-- (*StreamsApi_RejectVPCPeeringConnectionExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.RejectVPCPeeringConnectionApiRequest)) *StreamsApi_RejectVPCPeeringConnectionExecute_Call to func(func(r invalid type)) \*StreamsApi_RejectVPCPeeringConnectionExecute_Call
-- (*StreamsApi_RejectVPCPeeringConnectionExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.RejectVPCPeeringConnectionApiRequest) (any, *net/http.Response, error)) *StreamsApi_RejectVPCPeeringConnectionExecute_Call to func(func(invalid type) (any, *net/http.Response, error)) \*StreamsApi_RejectVPCPeeringConnectionExecute_Call
-- (*StreamsApi_RejectVPCPeeringConnectionWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.RejectVPCPeeringConnectionApiRequest) *StreamsApi_RejectVPCPeeringConnectionWithParams_Call to func(invalid type) \*StreamsApi_RejectVPCPeeringConnectionWithParams_Call
-- (*StreamsApi_RejectVPCPeeringConnectionWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.RejectVPCPeeringConnectionApiParams)) *StreamsApi_RejectVPCPeeringConnectionWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*StreamsApi_RejectVPCPeeringConnectionWithParams_Call
-- (*StreamsApi_RejectVPCPeeringConnectionWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.RejectVPCPeeringConnectionApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.RejectVPCPeeringConnectionApiRequest) *StreamsApi_RejectVPCPeeringConnectionWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*StreamsApi_RejectVPCPeeringConnectionWithParams_Call
-- (*StreamsApi_RejectVPCPeeringConnection_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.RejectVPCPeeringConnectionApiRequest) *StreamsApi_RejectVPCPeeringConnection_Call to func(invalid type) \*StreamsApi_RejectVPCPeeringConnection_Call
-- (*StreamsApi_RejectVPCPeeringConnection_Call).RunAndReturn: changed from func(func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312008/admin.RejectVPCPeeringConnectionApiRequest) *StreamsApi_RejectVPCPeeringConnection_Call to func(func(context.Context, string, string) invalid type) \*StreamsApi_RejectVPCPeeringConnection_Call
+- (\*AWSClustersDNSApi).GetAWSCustomDNS: changed from func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312009/admin.GetAWSCustomDNSApiRequest to func(context.Context, string) invalid type
+- (*AWSClustersDNSApi).GetAWSCustomDNSExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetAWSCustomDNSApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AWSCustomDNSEnabled, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AWSCustomDNSEnabled, \*net/http.Response, error)
+- (*AWSClustersDNSApi).GetAWSCustomDNSWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.GetAWSCustomDNSApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.GetAWSCustomDNSApiRequest to func(context.Context, \*invalid type) invalid type
+- (*AWSClustersDNSApi).ToggleAWSCustomDNS: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.AWSCustomDNSEnabled) go.mongodb.org/atlas-sdk/v20250312009/admin.ToggleAWSCustomDNSApiRequest to func(context.Context, string, \*go.mongodb.org/atlas-sdk/v20250312009/admin.AWSCustomDNSEnabled) invalid type
+- (*AWSClustersDNSApi).ToggleAWSCustomDNSExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.ToggleAWSCustomDNSApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AWSCustomDNSEnabled, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AWSCustomDNSEnabled, \*net/http.Response, error)
+- (*AWSClustersDNSApi).ToggleAWSCustomDNSWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.ToggleAWSCustomDNSApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.ToggleAWSCustomDNSApiRequest to func(context.Context, \*invalid type) invalid type
+- (*AWSClustersDNSApi_GetAWSCustomDNSExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.GetAWSCustomDNSApiRequest)) *AWSClustersDNSApi_GetAWSCustomDNSExecute_Call to func(func(r invalid type)) \*AWSClustersDNSApi_GetAWSCustomDNSExecute_Call
+- (*AWSClustersDNSApi_GetAWSCustomDNSExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetAWSCustomDNSApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AWSCustomDNSEnabled, *net/http.Response, error)) *AWSClustersDNSApi_GetAWSCustomDNSExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AWSCustomDNSEnabled, *net/http.Response, error)) \*AWSClustersDNSApi_GetAWSCustomDNSExecute_Call
+- (*AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetAWSCustomDNSApiRequest) *AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call to func(invalid type) \*AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call
+- (*AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.GetAWSCustomDNSApiParams)) *AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call
+- (*AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.GetAWSCustomDNSApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.GetAWSCustomDNSApiRequest) *AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*AWSClustersDNSApi_GetAWSCustomDNSWithParams_Call
+- (*AWSClustersDNSApi_GetAWSCustomDNS_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetAWSCustomDNSApiRequest) *AWSClustersDNSApi_GetAWSCustomDNS_Call to func(invalid type) \*AWSClustersDNSApi_GetAWSCustomDNS_Call
+- (*AWSClustersDNSApi_GetAWSCustomDNS_Call).RunAndReturn: changed from func(func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312009/admin.GetAWSCustomDNSApiRequest) *AWSClustersDNSApi_GetAWSCustomDNS_Call to func(func(context.Context, string) invalid type) \*AWSClustersDNSApi_GetAWSCustomDNS_Call
+- (*AWSClustersDNSApi_ToggleAWSCustomDNSExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.ToggleAWSCustomDNSApiRequest)) *AWSClustersDNSApi_ToggleAWSCustomDNSExecute_Call to func(func(r invalid type)) \*AWSClustersDNSApi_ToggleAWSCustomDNSExecute_Call
+- (*AWSClustersDNSApi_ToggleAWSCustomDNSExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.ToggleAWSCustomDNSApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AWSCustomDNSEnabled, *net/http.Response, error)) *AWSClustersDNSApi_ToggleAWSCustomDNSExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AWSCustomDNSEnabled, *net/http.Response, error)) \*AWSClustersDNSApi_ToggleAWSCustomDNSExecute_Call
+- (*AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.ToggleAWSCustomDNSApiRequest) *AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call to func(invalid type) \*AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call
+- (*AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.ToggleAWSCustomDNSApiParams)) *AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call
+- (*AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.ToggleAWSCustomDNSApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.ToggleAWSCustomDNSApiRequest) *AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*AWSClustersDNSApi_ToggleAWSCustomDNSWithParams_Call
+- (*AWSClustersDNSApi_ToggleAWSCustomDNS_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.ToggleAWSCustomDNSApiRequest) *AWSClustersDNSApi_ToggleAWSCustomDNS_Call to func(invalid type) \*AWSClustersDNSApi_ToggleAWSCustomDNS_Call
+- (*AWSClustersDNSApi_ToggleAWSCustomDNS_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.AWSCustomDNSEnabled) go.mongodb.org/atlas-sdk/v20250312009/admin.ToggleAWSCustomDNSApiRequest) *AWSClustersDNSApi_ToggleAWSCustomDNS_Call to func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.AWSCustomDNSEnabled) invalid type) \*AWSClustersDNSApi_ToggleAWSCustomDNS_Call
+- (*ClustersApi).GrantMongoDBEmployeeAccess: changed from func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.EmployeeAccessGrant) go.mongodb.org/atlas-sdk/v20250312009/admin.GrantMongoDBEmployeeAccessApiRequest to func(context.Context, string, string, \*go.mongodb.org/atlas-sdk/v20250312009/admin.EmployeeAccessGrant) invalid type
+- (*ClustersApi).GrantMongoDBEmployeeAccessExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GrantMongoDBEmployeeAccessApiRequest) (any, *net/http.Response, error) to func(invalid type) (any, \*net/http.Response, error)
+- (*ClustersApi).GrantMongoDBEmployeeAccessWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.GrantMongoDBEmployeeAccessApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.GrantMongoDBEmployeeAccessApiRequest to func(context.Context, \*invalid type) invalid type
+- (\*ClustersApi).RevokeMongoDBEmployeeAccess: changed from func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312009/admin.RevokeMongoDBEmployeeAccessApiRequest to func(context.Context, string, string) invalid type
+- (*ClustersApi).RevokeMongoDBEmployeeAccessExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.RevokeMongoDBEmployeeAccessApiRequest) (any, *net/http.Response, error) to func(invalid type) (any, \*net/http.Response, error)
+- (*ClustersApi).RevokeMongoDBEmployeeAccessWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.RevokeMongoDBEmployeeAccessApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.RevokeMongoDBEmployeeAccessApiRequest to func(context.Context, \*invalid type) invalid type
+- (*ClustersApi_GrantMongoDBEmployeeAccessExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.GrantMongoDBEmployeeAccessApiRequest)) *ClustersApi_GrantMongoDBEmployeeAccessExecute_Call to func(func(r invalid type)) \*ClustersApi_GrantMongoDBEmployeeAccessExecute_Call
+- (*ClustersApi_GrantMongoDBEmployeeAccessExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GrantMongoDBEmployeeAccessApiRequest) (any, *net/http.Response, error)) *ClustersApi_GrantMongoDBEmployeeAccessExecute_Call to func(func(invalid type) (any, *net/http.Response, error)) \*ClustersApi_GrantMongoDBEmployeeAccessExecute_Call
+- (*ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GrantMongoDBEmployeeAccessApiRequest) *ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call to func(invalid type) \*ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call
+- (*ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.GrantMongoDBEmployeeAccessApiParams)) *ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call
+- (*ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.GrantMongoDBEmployeeAccessApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.GrantMongoDBEmployeeAccessApiRequest) *ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ClustersApi_GrantMongoDBEmployeeAccessWithParams_Call
+- (*ClustersApi_GrantMongoDBEmployeeAccess_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GrantMongoDBEmployeeAccessApiRequest) *ClustersApi_GrantMongoDBEmployeeAccess_Call to func(invalid type) \*ClustersApi_GrantMongoDBEmployeeAccess_Call
+- (*ClustersApi_GrantMongoDBEmployeeAccess_Call).RunAndReturn: changed from func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.EmployeeAccessGrant) go.mongodb.org/atlas-sdk/v20250312009/admin.GrantMongoDBEmployeeAccessApiRequest) *ClustersApi_GrantMongoDBEmployeeAccess_Call to func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.EmployeeAccessGrant) invalid type) \*ClustersApi_GrantMongoDBEmployeeAccess_Call
+- (*ClustersApi_RevokeMongoDBEmployeeAccessExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.RevokeMongoDBEmployeeAccessApiRequest)) *ClustersApi_RevokeMongoDBEmployeeAccessExecute_Call to func(func(r invalid type)) \*ClustersApi_RevokeMongoDBEmployeeAccessExecute_Call
+- (*ClustersApi_RevokeMongoDBEmployeeAccessExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.RevokeMongoDBEmployeeAccessApiRequest) (any, *net/http.Response, error)) *ClustersApi_RevokeMongoDBEmployeeAccessExecute_Call to func(func(invalid type) (any, *net/http.Response, error)) \*ClustersApi_RevokeMongoDBEmployeeAccessExecute_Call
+- (*ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.RevokeMongoDBEmployeeAccessApiRequest) *ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call to func(invalid type) \*ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call
+- (*ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.RevokeMongoDBEmployeeAccessApiParams)) *ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call
+- (*ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.RevokeMongoDBEmployeeAccessApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.RevokeMongoDBEmployeeAccessApiRequest) *ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ClustersApi_RevokeMongoDBEmployeeAccessWithParams_Call
+- (*ClustersApi_RevokeMongoDBEmployeeAccess_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.RevokeMongoDBEmployeeAccessApiRequest) *ClustersApi_RevokeMongoDBEmployeeAccess_Call to func(invalid type) \*ClustersApi_RevokeMongoDBEmployeeAccess_Call
+- (*ClustersApi_RevokeMongoDBEmployeeAccess_Call).RunAndReturn: changed from func(func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312009/admin.RevokeMongoDBEmployeeAccessApiRequest) *ClustersApi_RevokeMongoDBEmployeeAccess_Call to func(func(context.Context, string, string) invalid type) \*ClustersApi_RevokeMongoDBEmployeeAccess_Call
+- (\*InvoicesApi).CreateCostExplorerQueryProcess1: changed from func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCostExplorerQueryProcess1ApiRequest to func(context.Context, string, string) invalid type
+- (*InvoicesApi).CreateCostExplorerQueryProcess1Execute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCostExplorerQueryProcess1ApiRequest) (any, *net/http.Response, error) to func(invalid type) (any, \*net/http.Response, error)
+- (*InvoicesApi).CreateCostExplorerQueryProcess1WithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCostExplorerQueryProcess1ApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCostExplorerQueryProcess1ApiRequest to func(context.Context, \*invalid type) invalid type
+- (\*InvoicesApi).DownloadInvoiceCSV: changed from func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312009/admin.DownloadInvoiceCSVApiRequest to func(context.Context, string, string) invalid type
+- (*InvoicesApi).DownloadInvoiceCSVExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.DownloadInvoiceCSVApiRequest) (string, *net/http.Response, error) to func(invalid type) (string, \*net/http.Response, error)
+- (*InvoicesApi).DownloadInvoiceCSVWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.DownloadInvoiceCSVApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.DownloadInvoiceCSVApiRequest to func(context.Context, \*invalid type) invalid type
+- (*InvoicesApi_CreateCostExplorerQueryProcess1Execute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCostExplorerQueryProcess1ApiRequest)) *InvoicesApi_CreateCostExplorerQueryProcess1Execute_Call to func(func(r invalid type)) \*InvoicesApi_CreateCostExplorerQueryProcess1Execute_Call
+- (*InvoicesApi_CreateCostExplorerQueryProcess1Execute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCostExplorerQueryProcess1ApiRequest) (any, *net/http.Response, error)) *InvoicesApi_CreateCostExplorerQueryProcess1Execute_Call to func(func(invalid type) (any, *net/http.Response, error)) \*InvoicesApi_CreateCostExplorerQueryProcess1Execute_Call
+- (*InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCostExplorerQueryProcess1ApiRequest) *InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call to func(invalid type) \*InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call
+- (*InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCostExplorerQueryProcess1ApiParams)) *InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call to func(func(ctx context.Context, args *invalid type)) \*InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call
+- (*InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCostExplorerQueryProcess1ApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCostExplorerQueryProcess1ApiRequest) *InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call to func(func(context.Context, *invalid type) invalid type) \*InvoicesApi_CreateCostExplorerQueryProcess1WithParams_Call
+- (*InvoicesApi_CreateCostExplorerQueryProcess1_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCostExplorerQueryProcess1ApiRequest) *InvoicesApi_CreateCostExplorerQueryProcess1_Call to func(invalid type) \*InvoicesApi_CreateCostExplorerQueryProcess1_Call
+- (*InvoicesApi_CreateCostExplorerQueryProcess1_Call).RunAndReturn: changed from func(func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateCostExplorerQueryProcess1ApiRequest) *InvoicesApi_CreateCostExplorerQueryProcess1_Call to func(func(context.Context, string, string) invalid type) \*InvoicesApi_CreateCostExplorerQueryProcess1_Call
+- (*InvoicesApi_DownloadInvoiceCSVExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.DownloadInvoiceCSVApiRequest)) *InvoicesApi_DownloadInvoiceCSVExecute_Call to func(func(r invalid type)) \*InvoicesApi_DownloadInvoiceCSVExecute_Call
+- (*InvoicesApi_DownloadInvoiceCSVExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.DownloadInvoiceCSVApiRequest) (string, *net/http.Response, error)) *InvoicesApi_DownloadInvoiceCSVExecute_Call to func(func(invalid type) (string, *net/http.Response, error)) \*InvoicesApi_DownloadInvoiceCSVExecute_Call
+- (*InvoicesApi_DownloadInvoiceCSVWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.DownloadInvoiceCSVApiRequest) *InvoicesApi_DownloadInvoiceCSVWithParams_Call to func(invalid type) \*InvoicesApi_DownloadInvoiceCSVWithParams_Call
+- (*InvoicesApi_DownloadInvoiceCSVWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.DownloadInvoiceCSVApiParams)) *InvoicesApi_DownloadInvoiceCSVWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*InvoicesApi_DownloadInvoiceCSVWithParams_Call
+- (*InvoicesApi_DownloadInvoiceCSVWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.DownloadInvoiceCSVApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.DownloadInvoiceCSVApiRequest) *InvoicesApi_DownloadInvoiceCSVWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*InvoicesApi_DownloadInvoiceCSVWithParams_Call
+- (*InvoicesApi_DownloadInvoiceCSV_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.DownloadInvoiceCSVApiRequest) *InvoicesApi_DownloadInvoiceCSV_Call to func(invalid type) \*InvoicesApi_DownloadInvoiceCSV_Call
+- (*InvoicesApi_DownloadInvoiceCSV_Call).RunAndReturn: changed from func(func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312009/admin.DownloadInvoiceCSVApiRequest) *InvoicesApi_DownloadInvoiceCSV_Call to func(func(context.Context, string, string) invalid type) \*InvoicesApi_DownloadInvoiceCSV_Call
+- (\*LDAPConfigurationApi).DeleteLDAPConfiguration: changed from func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteLDAPConfigurationApiRequest to func(context.Context, string) invalid type
+- (*LDAPConfigurationApi).DeleteLDAPConfigurationExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteLDAPConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.UserSecurity, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.UserSecurity, \*net/http.Response, error)
+- (*LDAPConfigurationApi).DeleteLDAPConfigurationWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteLDAPConfigurationApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteLDAPConfigurationApiRequest to func(context.Context, \*invalid type) invalid type
+- (\*LDAPConfigurationApi).GetLDAPConfiguration: changed from func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationApiRequest to func(context.Context, string) invalid type
+- (*LDAPConfigurationApi).GetLDAPConfigurationExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.UserSecurity, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.UserSecurity, \*net/http.Response, error)
+- (\*LDAPConfigurationApi).GetLDAPConfigurationStatus: changed from func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationStatusApiRequest to func(context.Context, string, string) invalid type
+- (*LDAPConfigurationApi).GetLDAPConfigurationStatusExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationStatusApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.LDAPVerifyConnectivityJobRequest, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.LDAPVerifyConnectivityJobRequest, \*net/http.Response, error)
+- (*LDAPConfigurationApi).GetLDAPConfigurationStatusWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationStatusApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationStatusApiRequest to func(context.Context, \*invalid type) invalid type
+- (*LDAPConfigurationApi).GetLDAPConfigurationWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationApiRequest to func(context.Context, \*invalid type) invalid type
+- (*LDAPConfigurationApi).SaveLDAPConfiguration: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.UserSecurity) go.mongodb.org/atlas-sdk/v20250312009/admin.SaveLDAPConfigurationApiRequest to func(context.Context, string, \*go.mongodb.org/atlas-sdk/v20250312009/admin.UserSecurity) invalid type
+- (*LDAPConfigurationApi).SaveLDAPConfigurationExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.SaveLDAPConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.UserSecurity, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.UserSecurity, \*net/http.Response, error)
+- (*LDAPConfigurationApi).SaveLDAPConfigurationWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.SaveLDAPConfigurationApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.SaveLDAPConfigurationApiRequest to func(context.Context, \*invalid type) invalid type
+- (*LDAPConfigurationApi).VerifyLDAPConfiguration: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.LDAPVerifyConnectivityJobRequestParams) go.mongodb.org/atlas-sdk/v20250312009/admin.VerifyLDAPConfigurationApiRequest to func(context.Context, string, \*go.mongodb.org/atlas-sdk/v20250312009/admin.LDAPVerifyConnectivityJobRequestParams) invalid type
+- (*LDAPConfigurationApi).VerifyLDAPConfigurationExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.VerifyLDAPConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.LDAPVerifyConnectivityJobRequest, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.LDAPVerifyConnectivityJobRequest, \*net/http.Response, error)
+- (*LDAPConfigurationApi).VerifyLDAPConfigurationWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.VerifyLDAPConfigurationApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.VerifyLDAPConfigurationApiRequest to func(context.Context, \*invalid type) invalid type
+- (*LDAPConfigurationApi_DeleteLDAPConfigurationExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteLDAPConfigurationApiRequest)) *LDAPConfigurationApi_DeleteLDAPConfigurationExecute_Call to func(func(r invalid type)) \*LDAPConfigurationApi_DeleteLDAPConfigurationExecute_Call
+- (*LDAPConfigurationApi_DeleteLDAPConfigurationExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteLDAPConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.UserSecurity, *net/http.Response, error)) *LDAPConfigurationApi_DeleteLDAPConfigurationExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.UserSecurity, *net/http.Response, error)) \*LDAPConfigurationApi_DeleteLDAPConfigurationExecute_Call
+- (*LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteLDAPConfigurationApiRequest) *LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call to func(invalid type) \*LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call
+- (*LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteLDAPConfigurationApiParams)) *LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call
+- (*LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteLDAPConfigurationApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteLDAPConfigurationApiRequest) *LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*LDAPConfigurationApi_DeleteLDAPConfigurationWithParams_Call
+- (*LDAPConfigurationApi_DeleteLDAPConfiguration_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteLDAPConfigurationApiRequest) *LDAPConfigurationApi_DeleteLDAPConfiguration_Call to func(invalid type) \*LDAPConfigurationApi_DeleteLDAPConfiguration_Call
+- (*LDAPConfigurationApi_DeleteLDAPConfiguration_Call).RunAndReturn: changed from func(func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteLDAPConfigurationApiRequest) *LDAPConfigurationApi_DeleteLDAPConfiguration_Call to func(func(context.Context, string) invalid type) \*LDAPConfigurationApi_DeleteLDAPConfiguration_Call
+- (*LDAPConfigurationApi_GetLDAPConfigurationExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationApiRequest)) *LDAPConfigurationApi_GetLDAPConfigurationExecute_Call to func(func(r invalid type)) \*LDAPConfigurationApi_GetLDAPConfigurationExecute_Call
+- (*LDAPConfigurationApi_GetLDAPConfigurationExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.UserSecurity, *net/http.Response, error)) *LDAPConfigurationApi_GetLDAPConfigurationExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.UserSecurity, *net/http.Response, error)) \*LDAPConfigurationApi_GetLDAPConfigurationExecute_Call
+- (*LDAPConfigurationApi_GetLDAPConfigurationStatusExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationStatusApiRequest)) *LDAPConfigurationApi_GetLDAPConfigurationStatusExecute_Call to func(func(r invalid type)) \*LDAPConfigurationApi_GetLDAPConfigurationStatusExecute_Call
+- (*LDAPConfigurationApi_GetLDAPConfigurationStatusExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationStatusApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.LDAPVerifyConnectivityJobRequest, *net/http.Response, error)) *LDAPConfigurationApi_GetLDAPConfigurationStatusExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.LDAPVerifyConnectivityJobRequest, *net/http.Response, error)) \*LDAPConfigurationApi_GetLDAPConfigurationStatusExecute_Call
+- (*LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationStatusApiRequest) *LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call to func(invalid type) \*LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call
+- (*LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationStatusApiParams)) *LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call
+- (*LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationStatusApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationStatusApiRequest) *LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*LDAPConfigurationApi_GetLDAPConfigurationStatusWithParams_Call
+- (*LDAPConfigurationApi_GetLDAPConfigurationStatus_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationStatusApiRequest) *LDAPConfigurationApi_GetLDAPConfigurationStatus_Call to func(invalid type) \*LDAPConfigurationApi_GetLDAPConfigurationStatus_Call
+- (*LDAPConfigurationApi_GetLDAPConfigurationStatus_Call).RunAndReturn: changed from func(func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationStatusApiRequest) *LDAPConfigurationApi_GetLDAPConfigurationStatus_Call to func(func(context.Context, string, string) invalid type) \*LDAPConfigurationApi_GetLDAPConfigurationStatus_Call
+- (*LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationApiRequest) *LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call to func(invalid type) \*LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call
+- (*LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationApiParams)) *LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call
+- (*LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationApiRequest) *LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*LDAPConfigurationApi_GetLDAPConfigurationWithParams_Call
+- (*LDAPConfigurationApi_GetLDAPConfiguration_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationApiRequest) *LDAPConfigurationApi_GetLDAPConfiguration_Call to func(invalid type) \*LDAPConfigurationApi_GetLDAPConfiguration_Call
+- (*LDAPConfigurationApi_GetLDAPConfiguration_Call).RunAndReturn: changed from func(func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312009/admin.GetLDAPConfigurationApiRequest) *LDAPConfigurationApi_GetLDAPConfiguration_Call to func(func(context.Context, string) invalid type) \*LDAPConfigurationApi_GetLDAPConfiguration_Call
+- (*LDAPConfigurationApi_SaveLDAPConfigurationExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.SaveLDAPConfigurationApiRequest)) *LDAPConfigurationApi_SaveLDAPConfigurationExecute_Call to func(func(r invalid type)) \*LDAPConfigurationApi_SaveLDAPConfigurationExecute_Call
+- (*LDAPConfigurationApi_SaveLDAPConfigurationExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.SaveLDAPConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.UserSecurity, *net/http.Response, error)) *LDAPConfigurationApi_SaveLDAPConfigurationExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.UserSecurity, *net/http.Response, error)) \*LDAPConfigurationApi_SaveLDAPConfigurationExecute_Call
+- (*LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.SaveLDAPConfigurationApiRequest) *LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call to func(invalid type) \*LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call
+- (*LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.SaveLDAPConfigurationApiParams)) *LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call
+- (*LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.SaveLDAPConfigurationApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.SaveLDAPConfigurationApiRequest) *LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*LDAPConfigurationApi_SaveLDAPConfigurationWithParams_Call
+- (*LDAPConfigurationApi_SaveLDAPConfiguration_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.SaveLDAPConfigurationApiRequest) *LDAPConfigurationApi_SaveLDAPConfiguration_Call to func(invalid type) \*LDAPConfigurationApi_SaveLDAPConfiguration_Call
+- (*LDAPConfigurationApi_SaveLDAPConfiguration_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.UserSecurity) go.mongodb.org/atlas-sdk/v20250312009/admin.SaveLDAPConfigurationApiRequest) *LDAPConfigurationApi_SaveLDAPConfiguration_Call to func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.UserSecurity) invalid type) \*LDAPConfigurationApi_SaveLDAPConfiguration_Call
+- (*LDAPConfigurationApi_VerifyLDAPConfigurationExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.VerifyLDAPConfigurationApiRequest)) *LDAPConfigurationApi_VerifyLDAPConfigurationExecute_Call to func(func(r invalid type)) \*LDAPConfigurationApi_VerifyLDAPConfigurationExecute_Call
+- (*LDAPConfigurationApi_VerifyLDAPConfigurationExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.VerifyLDAPConfigurationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.LDAPVerifyConnectivityJobRequest, *net/http.Response, error)) *LDAPConfigurationApi_VerifyLDAPConfigurationExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.LDAPVerifyConnectivityJobRequest, *net/http.Response, error)) \*LDAPConfigurationApi_VerifyLDAPConfigurationExecute_Call
+- (*LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.VerifyLDAPConfigurationApiRequest) *LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call to func(invalid type) \*LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call
+- (*LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.VerifyLDAPConfigurationApiParams)) *LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call
+- (*LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.VerifyLDAPConfigurationApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.VerifyLDAPConfigurationApiRequest) *LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*LDAPConfigurationApi_VerifyLDAPConfigurationWithParams_Call
+- (*LDAPConfigurationApi_VerifyLDAPConfiguration_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.VerifyLDAPConfigurationApiRequest) *LDAPConfigurationApi_VerifyLDAPConfiguration_Call to func(invalid type) \*LDAPConfigurationApi_VerifyLDAPConfiguration_Call
+- (*LDAPConfigurationApi_VerifyLDAPConfiguration_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.LDAPVerifyConnectivityJobRequestParams) go.mongodb.org/atlas-sdk/v20250312009/admin.VerifyLDAPConfigurationApiRequest) *LDAPConfigurationApi_VerifyLDAPConfiguration_Call to func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.LDAPVerifyConnectivityJobRequestParams) invalid type) \*LDAPConfigurationApi_VerifyLDAPConfiguration_Call
+- (\*ProjectsApi).GetProjectLTSVersions: changed from func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312009/admin.GetProjectLTSVersionsApiRequest to func(context.Context, string) invalid type
+- (*ProjectsApi).GetProjectLTSVersionsExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetProjectLTSVersionsApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedAvailableVersion, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedAvailableVersion, \*net/http.Response, error)
+- (*ProjectsApi).GetProjectLTSVersionsWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.GetProjectLTSVersionsApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.GetProjectLTSVersionsApiRequest to func(context.Context, \*invalid type) invalid type
+- (\*ProjectsApi).ReturnAllIPAddresses: changed from func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllIPAddressesApiRequest to func(context.Context, string) invalid type
+- (*ProjectsApi).ReturnAllIPAddressesExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllIPAddressesApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.GroupIPAddresses, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.GroupIPAddresses, \*net/http.Response, error)
+- (*ProjectsApi).ReturnAllIPAddressesWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllIPAddressesApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllIPAddressesApiRequest to func(context.Context, \*invalid type) invalid type
+- (*ProjectsApi_GetProjectLTSVersionsExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.GetProjectLTSVersionsApiRequest)) *ProjectsApi_GetProjectLTSVersionsExecute_Call to func(func(r invalid type)) \*ProjectsApi_GetProjectLTSVersionsExecute_Call
+- (*ProjectsApi_GetProjectLTSVersionsExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetProjectLTSVersionsApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedAvailableVersion, *net/http.Response, error)) *ProjectsApi_GetProjectLTSVersionsExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedAvailableVersion, *net/http.Response, error)) \*ProjectsApi_GetProjectLTSVersionsExecute_Call
+- (*ProjectsApi_GetProjectLTSVersionsWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetProjectLTSVersionsApiRequest) *ProjectsApi_GetProjectLTSVersionsWithParams_Call to func(invalid type) \*ProjectsApi_GetProjectLTSVersionsWithParams_Call
+- (*ProjectsApi_GetProjectLTSVersionsWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.GetProjectLTSVersionsApiParams)) *ProjectsApi_GetProjectLTSVersionsWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ProjectsApi_GetProjectLTSVersionsWithParams_Call
+- (*ProjectsApi_GetProjectLTSVersionsWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.GetProjectLTSVersionsApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.GetProjectLTSVersionsApiRequest) *ProjectsApi_GetProjectLTSVersionsWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ProjectsApi_GetProjectLTSVersionsWithParams_Call
+- (*ProjectsApi_GetProjectLTSVersions_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetProjectLTSVersionsApiRequest) *ProjectsApi_GetProjectLTSVersions_Call to func(invalid type) \*ProjectsApi_GetProjectLTSVersions_Call
+- (*ProjectsApi_GetProjectLTSVersions_Call).RunAndReturn: changed from func(func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312009/admin.GetProjectLTSVersionsApiRequest) *ProjectsApi_GetProjectLTSVersions_Call to func(func(context.Context, string) invalid type) \*ProjectsApi_GetProjectLTSVersions_Call
+- (*ProjectsApi_ReturnAllIPAddressesExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllIPAddressesApiRequest)) *ProjectsApi_ReturnAllIPAddressesExecute_Call to func(func(r invalid type)) \*ProjectsApi_ReturnAllIPAddressesExecute_Call
+- (*ProjectsApi_ReturnAllIPAddressesExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllIPAddressesApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.GroupIPAddresses, *net/http.Response, error)) *ProjectsApi_ReturnAllIPAddressesExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.GroupIPAddresses, *net/http.Response, error)) \*ProjectsApi_ReturnAllIPAddressesExecute_Call
+- (*ProjectsApi_ReturnAllIPAddressesWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllIPAddressesApiRequest) *ProjectsApi_ReturnAllIPAddressesWithParams_Call to func(invalid type) \*ProjectsApi_ReturnAllIPAddressesWithParams_Call
+- (*ProjectsApi_ReturnAllIPAddressesWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllIPAddressesApiParams)) *ProjectsApi_ReturnAllIPAddressesWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ProjectsApi_ReturnAllIPAddressesWithParams_Call
+- (*ProjectsApi_ReturnAllIPAddressesWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllIPAddressesApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllIPAddressesApiRequest) *ProjectsApi_ReturnAllIPAddressesWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ProjectsApi_ReturnAllIPAddressesWithParams_Call
+- (*ProjectsApi_ReturnAllIPAddresses_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllIPAddressesApiRequest) *ProjectsApi_ReturnAllIPAddresses_Call to func(invalid type) \*ProjectsApi_ReturnAllIPAddresses_Call
+- (*ProjectsApi_ReturnAllIPAddresses_Call).RunAndReturn: changed from func(func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllIPAddressesApiRequest) *ProjectsApi_ReturnAllIPAddresses_Call to func(func(context.Context, string) invalid type) \*ProjectsApi_ReturnAllIPAddresses_Call
+- (\*RootApi).ReturnAllControlPlaneIPAddresses: changed from func(context.Context) go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllControlPlaneIPAddressesApiRequest to func(context.Context) invalid type
+- (*RootApi).ReturnAllControlPlaneIPAddressesExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllControlPlaneIPAddressesApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ControlPlaneIPAddresses, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ControlPlaneIPAddresses, \*net/http.Response, error)
+- (*RootApi).ReturnAllControlPlaneIPAddressesWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllControlPlaneIPAddressesApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllControlPlaneIPAddressesApiRequest to func(context.Context, \*invalid type) invalid type
+- (*RootApi_ReturnAllControlPlaneIPAddressesExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllControlPlaneIPAddressesApiRequest)) *RootApi_ReturnAllControlPlaneIPAddressesExecute_Call to func(func(r invalid type)) \*RootApi_ReturnAllControlPlaneIPAddressesExecute_Call
+- (*RootApi_ReturnAllControlPlaneIPAddressesExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllControlPlaneIPAddressesApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ControlPlaneIPAddresses, *net/http.Response, error)) *RootApi_ReturnAllControlPlaneIPAddressesExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ControlPlaneIPAddresses, *net/http.Response, error)) \*RootApi_ReturnAllControlPlaneIPAddressesExecute_Call
+- (*RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllControlPlaneIPAddressesApiRequest) *RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call to func(invalid type) \*RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call
+- (*RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllControlPlaneIPAddressesApiParams)) *RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call
+- (*RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllControlPlaneIPAddressesApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllControlPlaneIPAddressesApiRequest) *RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*RootApi_ReturnAllControlPlaneIPAddressesWithParams_Call
+- (*RootApi_ReturnAllControlPlaneIPAddresses_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllControlPlaneIPAddressesApiRequest) *RootApi_ReturnAllControlPlaneIPAddresses_Call to func(invalid type) \*RootApi_ReturnAllControlPlaneIPAddresses_Call
+- (*RootApi_ReturnAllControlPlaneIPAddresses_Call).RunAndReturn: changed from func(func(context.Context) go.mongodb.org/atlas-sdk/v20250312009/admin.ReturnAllControlPlaneIPAddressesApiRequest) *RootApi_ReturnAllControlPlaneIPAddresses_Call to func(func(context.Context) invalid type) \*RootApi_ReturnAllControlPlaneIPAddresses_Call
+- (*StreamsApi).AcceptVPCPeeringConnection: changed from func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.VPCPeeringActionChallenge) go.mongodb.org/atlas-sdk/v20250312009/admin.AcceptVPCPeeringConnectionApiRequest to func(context.Context, string, string, \*go.mongodb.org/atlas-sdk/v20250312009/admin.VPCPeeringActionChallenge) invalid type
+- (*StreamsApi).AcceptVPCPeeringConnectionExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.AcceptVPCPeeringConnectionApiRequest) (any, *net/http.Response, error) to func(invalid type) (any, \*net/http.Response, error)
+- (*StreamsApi).AcceptVPCPeeringConnectionWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.AcceptVPCPeeringConnectionApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.AcceptVPCPeeringConnectionApiRequest to func(context.Context, \*invalid type) invalid type
+- (\*StreamsApi).DeleteVPCPeeringConnection: changed from func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteVPCPeeringConnectionApiRequest to func(context.Context, string, string) invalid type
+- (*StreamsApi).DeleteVPCPeeringConnectionExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteVPCPeeringConnectionApiRequest) (any, *net/http.Response, error) to func(invalid type) (any, \*net/http.Response, error)
+- (*StreamsApi).DeleteVPCPeeringConnectionWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteVPCPeeringConnectionApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteVPCPeeringConnectionApiRequest to func(context.Context, \*invalid type) invalid type
+- (\*StreamsApi).GetVPCPeeringConnections: changed from func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312009/admin.GetVPCPeeringConnectionsApiRequest to func(context.Context, string) invalid type
+- (*StreamsApi).GetVPCPeeringConnectionsExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetVPCPeeringConnectionsApiRequest) (*net/http.Response, error) to func(invalid type) (\*net/http.Response, error)
+- (*StreamsApi).GetVPCPeeringConnectionsWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.GetVPCPeeringConnectionsApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.GetVPCPeeringConnectionsApiRequest to func(context.Context, \*invalid type) invalid type
+- (\*StreamsApi).RejectVPCPeeringConnection: changed from func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312009/admin.RejectVPCPeeringConnectionApiRequest to func(context.Context, string, string) invalid type
+- (*StreamsApi).RejectVPCPeeringConnectionExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.RejectVPCPeeringConnectionApiRequest) (any, *net/http.Response, error) to func(invalid type) (any, \*net/http.Response, error)
+- (*StreamsApi).RejectVPCPeeringConnectionWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.RejectVPCPeeringConnectionApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.RejectVPCPeeringConnectionApiRequest to func(context.Context, \*invalid type) invalid type
+- (*StreamsApi_AcceptVPCPeeringConnectionExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.AcceptVPCPeeringConnectionApiRequest)) *StreamsApi_AcceptVPCPeeringConnectionExecute_Call to func(func(r invalid type)) \*StreamsApi_AcceptVPCPeeringConnectionExecute_Call
+- (*StreamsApi_AcceptVPCPeeringConnectionExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.AcceptVPCPeeringConnectionApiRequest) (any, *net/http.Response, error)) *StreamsApi_AcceptVPCPeeringConnectionExecute_Call to func(func(invalid type) (any, *net/http.Response, error)) \*StreamsApi_AcceptVPCPeeringConnectionExecute_Call
+- (*StreamsApi_AcceptVPCPeeringConnectionWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.AcceptVPCPeeringConnectionApiRequest) *StreamsApi_AcceptVPCPeeringConnectionWithParams_Call to func(invalid type) \*StreamsApi_AcceptVPCPeeringConnectionWithParams_Call
+- (*StreamsApi_AcceptVPCPeeringConnectionWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.AcceptVPCPeeringConnectionApiParams)) *StreamsApi_AcceptVPCPeeringConnectionWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*StreamsApi_AcceptVPCPeeringConnectionWithParams_Call
+- (*StreamsApi_AcceptVPCPeeringConnectionWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.AcceptVPCPeeringConnectionApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.AcceptVPCPeeringConnectionApiRequest) *StreamsApi_AcceptVPCPeeringConnectionWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*StreamsApi_AcceptVPCPeeringConnectionWithParams_Call
+- (*StreamsApi_AcceptVPCPeeringConnection_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.AcceptVPCPeeringConnectionApiRequest) *StreamsApi_AcceptVPCPeeringConnection_Call to func(invalid type) \*StreamsApi_AcceptVPCPeeringConnection_Call
+- (*StreamsApi_AcceptVPCPeeringConnection_Call).RunAndReturn: changed from func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.VPCPeeringActionChallenge) go.mongodb.org/atlas-sdk/v20250312009/admin.AcceptVPCPeeringConnectionApiRequest) *StreamsApi_AcceptVPCPeeringConnection_Call to func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.VPCPeeringActionChallenge) invalid type) \*StreamsApi_AcceptVPCPeeringConnection_Call
+- (*StreamsApi_DeleteVPCPeeringConnectionExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteVPCPeeringConnectionApiRequest)) *StreamsApi_DeleteVPCPeeringConnectionExecute_Call to func(func(r invalid type)) \*StreamsApi_DeleteVPCPeeringConnectionExecute_Call
+- (*StreamsApi_DeleteVPCPeeringConnectionExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteVPCPeeringConnectionApiRequest) (any, *net/http.Response, error)) *StreamsApi_DeleteVPCPeeringConnectionExecute_Call to func(func(invalid type) (any, *net/http.Response, error)) \*StreamsApi_DeleteVPCPeeringConnectionExecute_Call
+- (*StreamsApi_DeleteVPCPeeringConnectionWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteVPCPeeringConnectionApiRequest) *StreamsApi_DeleteVPCPeeringConnectionWithParams_Call to func(invalid type) \*StreamsApi_DeleteVPCPeeringConnectionWithParams_Call
+- (*StreamsApi_DeleteVPCPeeringConnectionWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteVPCPeeringConnectionApiParams)) *StreamsApi_DeleteVPCPeeringConnectionWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*StreamsApi_DeleteVPCPeeringConnectionWithParams_Call
+- (*StreamsApi_DeleteVPCPeeringConnectionWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteVPCPeeringConnectionApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteVPCPeeringConnectionApiRequest) *StreamsApi_DeleteVPCPeeringConnectionWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*StreamsApi_DeleteVPCPeeringConnectionWithParams_Call
+- (*StreamsApi_DeleteVPCPeeringConnection_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteVPCPeeringConnectionApiRequest) *StreamsApi_DeleteVPCPeeringConnection_Call to func(invalid type) \*StreamsApi_DeleteVPCPeeringConnection_Call
+- (*StreamsApi_DeleteVPCPeeringConnection_Call).RunAndReturn: changed from func(func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteVPCPeeringConnectionApiRequest) *StreamsApi_DeleteVPCPeeringConnection_Call to func(func(context.Context, string, string) invalid type) \*StreamsApi_DeleteVPCPeeringConnection_Call
+- (*StreamsApi_GetVPCPeeringConnectionsExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.GetVPCPeeringConnectionsApiRequest)) *StreamsApi_GetVPCPeeringConnectionsExecute_Call to func(func(r invalid type)) \*StreamsApi_GetVPCPeeringConnectionsExecute_Call
+- (*StreamsApi_GetVPCPeeringConnectionsExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetVPCPeeringConnectionsApiRequest) (*net/http.Response, error)) *StreamsApi_GetVPCPeeringConnectionsExecute_Call to func(func(invalid type) (*net/http.Response, error)) \*StreamsApi_GetVPCPeeringConnectionsExecute_Call
+- (*StreamsApi_GetVPCPeeringConnectionsWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetVPCPeeringConnectionsApiRequest) *StreamsApi_GetVPCPeeringConnectionsWithParams_Call to func(invalid type) \*StreamsApi_GetVPCPeeringConnectionsWithParams_Call
+- (*StreamsApi_GetVPCPeeringConnectionsWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.GetVPCPeeringConnectionsApiParams)) *StreamsApi_GetVPCPeeringConnectionsWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*StreamsApi_GetVPCPeeringConnectionsWithParams_Call
+- (*StreamsApi_GetVPCPeeringConnectionsWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.GetVPCPeeringConnectionsApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.GetVPCPeeringConnectionsApiRequest) *StreamsApi_GetVPCPeeringConnectionsWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*StreamsApi_GetVPCPeeringConnectionsWithParams_Call
+- (*StreamsApi_GetVPCPeeringConnections_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetVPCPeeringConnectionsApiRequest) *StreamsApi_GetVPCPeeringConnections_Call to func(invalid type) \*StreamsApi_GetVPCPeeringConnections_Call
+- (*StreamsApi_GetVPCPeeringConnections_Call).RunAndReturn: changed from func(func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312009/admin.GetVPCPeeringConnectionsApiRequest) *StreamsApi_GetVPCPeeringConnections_Call to func(func(context.Context, string) invalid type) \*StreamsApi_GetVPCPeeringConnections_Call
+- (*StreamsApi_RejectVPCPeeringConnectionExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.RejectVPCPeeringConnectionApiRequest)) *StreamsApi_RejectVPCPeeringConnectionExecute_Call to func(func(r invalid type)) \*StreamsApi_RejectVPCPeeringConnectionExecute_Call
+- (*StreamsApi_RejectVPCPeeringConnectionExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.RejectVPCPeeringConnectionApiRequest) (any, *net/http.Response, error)) *StreamsApi_RejectVPCPeeringConnectionExecute_Call to func(func(invalid type) (any, *net/http.Response, error)) \*StreamsApi_RejectVPCPeeringConnectionExecute_Call
+- (*StreamsApi_RejectVPCPeeringConnectionWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.RejectVPCPeeringConnectionApiRequest) *StreamsApi_RejectVPCPeeringConnectionWithParams_Call to func(invalid type) \*StreamsApi_RejectVPCPeeringConnectionWithParams_Call
+- (*StreamsApi_RejectVPCPeeringConnectionWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.RejectVPCPeeringConnectionApiParams)) *StreamsApi_RejectVPCPeeringConnectionWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*StreamsApi_RejectVPCPeeringConnectionWithParams_Call
+- (*StreamsApi_RejectVPCPeeringConnectionWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.RejectVPCPeeringConnectionApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.RejectVPCPeeringConnectionApiRequest) *StreamsApi_RejectVPCPeeringConnectionWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*StreamsApi_RejectVPCPeeringConnectionWithParams_Call
+- (*StreamsApi_RejectVPCPeeringConnection_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.RejectVPCPeeringConnectionApiRequest) *StreamsApi_RejectVPCPeeringConnection_Call to func(invalid type) \*StreamsApi_RejectVPCPeeringConnection_Call
+- (*StreamsApi_RejectVPCPeeringConnection_Call).RunAndReturn: changed from func(func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312009/admin.RejectVPCPeeringConnectionApiRequest) *StreamsApi_RejectVPCPeeringConnection_Call to func(func(context.Context, string, string) invalid type) \*StreamsApi_RejectVPCPeeringConnection_Call
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (\*AWSClustersDNSApiService).GetAWSCustomDNS: removed
diff --git a/tools/releaser/breaking_changes/v20241113002.md b/tools/releaser/breaking_changes/v20241113002.md
index a9a679b4..daffb9c6 100644
--- a/tools/releaser/breaking_changes/v20241113002.md
+++ b/tools/releaser/breaking_changes/v20241113002.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (*FlexClustersApiService).UpgradeFlexCluster: changed from func(context.Context, string, *FlexClusterDescription20241113) UpgradeFlexClusterApiRequest to func(context.Context, string, \*AtlasTenantClusterUpgradeRequest20240805) UpgradeFlexClusterApiRequest
diff --git a/tools/releaser/breaking_changes/v20241113003.md b/tools/releaser/breaking_changes/v20241113003.md
index 69802f60..870af871 100644
--- a/tools/releaser/breaking_changes/v20241113003.md
+++ b/tools/releaser/breaking_changes/v20241113003.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (\*OrganizationsApiService).RenameOrganization: removed
@@ -37,19 +37,19 @@ Incompatible changes:
- Team.Usernames: changed from \*[]string to []string
- Team: old is comparable, new is not
-go.mongodb.org/atlas-sdk/v20250312008/mockadmin
+go.mongodb.org/atlas-sdk/v20250312009/mockadmin
Incompatible changes:
-- (*OrganizationsApi).RenameOrganization: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.AtlasOrganization) go.mongodb.org/atlas-sdk/v20250312008/admin.RenameOrganizationApiRequest to func(context.Context, string, \*go.mongodb.org/atlas-sdk/v20250312008/admin.AtlasOrganization) invalid type
-- (*OrganizationsApi).RenameOrganizationExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.RenameOrganizationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AtlasOrganization, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AtlasOrganization, \*net/http.Response, error)
-- (*OrganizationsApi).RenameOrganizationWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.RenameOrganizationApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.RenameOrganizationApiRequest to func(context.Context, \*invalid type) invalid type
-- (*OrganizationsApi_RenameOrganizationExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.RenameOrganizationApiRequest)) *OrganizationsApi_RenameOrganizationExecute_Call to func(func(r invalid type)) \*OrganizationsApi_RenameOrganizationExecute_Call
-- (*OrganizationsApi_RenameOrganizationExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.RenameOrganizationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AtlasOrganization, *net/http.Response, error)) *OrganizationsApi_RenameOrganizationExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AtlasOrganization, *net/http.Response, error)) \*OrganizationsApi_RenameOrganizationExecute_Call
-- (*OrganizationsApi_RenameOrganizationWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.RenameOrganizationApiRequest) *OrganizationsApi_RenameOrganizationWithParams_Call to func(invalid type) \*OrganizationsApi_RenameOrganizationWithParams_Call
-- (*OrganizationsApi_RenameOrganizationWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.RenameOrganizationApiParams)) *OrganizationsApi_RenameOrganizationWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*OrganizationsApi_RenameOrganizationWithParams_Call
-- (*OrganizationsApi_RenameOrganizationWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.RenameOrganizationApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.RenameOrganizationApiRequest) *OrganizationsApi_RenameOrganizationWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*OrganizationsApi_RenameOrganizationWithParams_Call
-- (*OrganizationsApi_RenameOrganization_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.RenameOrganizationApiRequest) *OrganizationsApi_RenameOrganization_Call to func(invalid type) \*OrganizationsApi_RenameOrganization_Call
-- (*OrganizationsApi_RenameOrganization_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.AtlasOrganization) go.mongodb.org/atlas-sdk/v20250312008/admin.RenameOrganizationApiRequest) *OrganizationsApi_RenameOrganization_Call to func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.AtlasOrganization) invalid type) \*OrganizationsApi_RenameOrganization_Call
+- (*OrganizationsApi).RenameOrganization: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.AtlasOrganization) go.mongodb.org/atlas-sdk/v20250312009/admin.RenameOrganizationApiRequest to func(context.Context, string, \*go.mongodb.org/atlas-sdk/v20250312009/admin.AtlasOrganization) invalid type
+- (*OrganizationsApi).RenameOrganizationExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.RenameOrganizationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AtlasOrganization, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AtlasOrganization, \*net/http.Response, error)
+- (*OrganizationsApi).RenameOrganizationWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.RenameOrganizationApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.RenameOrganizationApiRequest to func(context.Context, \*invalid type) invalid type
+- (*OrganizationsApi_RenameOrganizationExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.RenameOrganizationApiRequest)) *OrganizationsApi_RenameOrganizationExecute_Call to func(func(r invalid type)) \*OrganizationsApi_RenameOrganizationExecute_Call
+- (*OrganizationsApi_RenameOrganizationExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.RenameOrganizationApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AtlasOrganization, *net/http.Response, error)) *OrganizationsApi_RenameOrganizationExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AtlasOrganization, *net/http.Response, error)) \*OrganizationsApi_RenameOrganizationExecute_Call
+- (*OrganizationsApi_RenameOrganizationWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.RenameOrganizationApiRequest) *OrganizationsApi_RenameOrganizationWithParams_Call to func(invalid type) \*OrganizationsApi_RenameOrganizationWithParams_Call
+- (*OrganizationsApi_RenameOrganizationWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.RenameOrganizationApiParams)) *OrganizationsApi_RenameOrganizationWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*OrganizationsApi_RenameOrganizationWithParams_Call
+- (*OrganizationsApi_RenameOrganizationWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.RenameOrganizationApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.RenameOrganizationApiRequest) *OrganizationsApi_RenameOrganizationWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*OrganizationsApi_RenameOrganizationWithParams_Call
+- (*OrganizationsApi_RenameOrganization_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.RenameOrganizationApiRequest) *OrganizationsApi_RenameOrganization_Call to func(invalid type) \*OrganizationsApi_RenameOrganization_Call
+- (*OrganizationsApi_RenameOrganization_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.AtlasOrganization) go.mongodb.org/atlas-sdk/v20250312009/admin.RenameOrganizationApiRequest) *OrganizationsApi_RenameOrganization_Call to func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.AtlasOrganization) invalid type) \*OrganizationsApi_RenameOrganization_Call
## API Changelog
diff --git a/tools/releaser/breaking_changes/v20241113004.md b/tools/releaser/breaking_changes/v20241113004.md
index 6a2c7832..861ad53c 100644
--- a/tools/releaser/breaking_changes/v20241113004.md
+++ b/tools/releaser/breaking_changes/v20241113004.md
@@ -2,7 +2,7 @@
## SDK changes
-go.mongodb.org/atlas-sdk/v20250312008/admin
+go.mongodb.org/atlas-sdk/v20250312009/admin
Incompatible changes:
- (\*PrivateNetworkEndpointIdEntry).GetAzureConnectionName: removed
diff --git a/tools/releaser/breaking_changes/v20250219001.md b/tools/releaser/breaking_changes/v20250219001.md
index f29cb69f..c314f38a 100644
--- a/tools/releaser/breaking_changes/v20250219001.md
+++ b/tools/releaser/breaking_changes/v20250219001.md
@@ -105,15 +105,15 @@
### incompatible changes
-- (*OrganizationsApi).ListOrganizationUsersExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListOrganizationUsersApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedAppUser, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListOrganizationUsersApiRequest) (*invalid type, \*net/http.Response, error)
-- (*OrganizationsApi_ListOrganizationUsersExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedAppUser, *net/http.Response, error) *OrganizationsApi_ListOrganizationUsersExecute_Call to func(*invalid type, *net/http.Response, error) \*OrganizationsApi_ListOrganizationUsersExecute_Call
-- (*OrganizationsApi_ListOrganizationUsersExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListOrganizationUsersApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedAppUser, *net/http.Response, error)) *OrganizationsApi_ListOrganizationUsersExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListOrganizationUsersApiRequest) (*invalid type, *net/http.Response, error)) \*OrganizationsApi_ListOrganizationUsersExecute_Call
-- (*ProjectsApi).ListProjectUsersExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListProjectUsersApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedAppUser, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListProjectUsersApiRequest) (*invalid type, \*net/http.Response, error)
-- (*ProjectsApi_ListProjectUsersExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedAppUser, *net/http.Response, error) *ProjectsApi_ListProjectUsersExecute_Call to func(*invalid type, *net/http.Response, error) \*ProjectsApi_ListProjectUsersExecute_Call
-- (*ProjectsApi_ListProjectUsersExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListProjectUsersApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedAppUser, *net/http.Response, error)) *ProjectsApi_ListProjectUsersExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListProjectUsersApiRequest) (*invalid type, *net/http.Response, error)) \*ProjectsApi_ListProjectUsersExecute_Call
-- (*TeamsApi).ListTeamUsersExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListTeamUsersApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedAppUser, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListTeamUsersApiRequest) (*invalid type, \*net/http.Response, error)
-- (*TeamsApi_ListTeamUsersExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedAppUser, *net/http.Response, error) *TeamsApi_ListTeamUsersExecute_Call to func(*invalid type, *net/http.Response, error) \*TeamsApi_ListTeamUsersExecute_Call
-- (*TeamsApi_ListTeamUsersExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListTeamUsersApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.PaginatedAppUser, *net/http.Response, error)) *TeamsApi_ListTeamUsersExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.ListTeamUsersApiRequest) (*invalid type, *net/http.Response, error)) \*TeamsApi_ListTeamUsersExecute_Call
+- (*OrganizationsApi).ListOrganizationUsersExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListOrganizationUsersApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedAppUser, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListOrganizationUsersApiRequest) (*invalid type, \*net/http.Response, error)
+- (*OrganizationsApi_ListOrganizationUsersExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedAppUser, *net/http.Response, error) *OrganizationsApi_ListOrganizationUsersExecute_Call to func(*invalid type, *net/http.Response, error) \*OrganizationsApi_ListOrganizationUsersExecute_Call
+- (*OrganizationsApi_ListOrganizationUsersExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListOrganizationUsersApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedAppUser, *net/http.Response, error)) *OrganizationsApi_ListOrganizationUsersExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListOrganizationUsersApiRequest) (*invalid type, *net/http.Response, error)) \*OrganizationsApi_ListOrganizationUsersExecute_Call
+- (*ProjectsApi).ListProjectUsersExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListProjectUsersApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedAppUser, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListProjectUsersApiRequest) (*invalid type, \*net/http.Response, error)
+- (*ProjectsApi_ListProjectUsersExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedAppUser, *net/http.Response, error) *ProjectsApi_ListProjectUsersExecute_Call to func(*invalid type, *net/http.Response, error) \*ProjectsApi_ListProjectUsersExecute_Call
+- (*ProjectsApi_ListProjectUsersExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListProjectUsersApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedAppUser, *net/http.Response, error)) *ProjectsApi_ListProjectUsersExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListProjectUsersApiRequest) (*invalid type, *net/http.Response, error)) \*ProjectsApi_ListProjectUsersExecute_Call
+- (*TeamsApi).ListTeamUsersExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListTeamUsersApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedAppUser, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListTeamUsersApiRequest) (*invalid type, \*net/http.Response, error)
+- (*TeamsApi_ListTeamUsersExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedAppUser, *net/http.Response, error) *TeamsApi_ListTeamUsersExecute_Call to func(*invalid type, *net/http.Response, error) \*TeamsApi_ListTeamUsersExecute_Call
+- (*TeamsApi_ListTeamUsersExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListTeamUsersApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.PaginatedAppUser, *net/http.Response, error)) *TeamsApi_ListTeamUsersExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.ListTeamUsersApiRequest) (*invalid type, *net/http.Response, error)) \*TeamsApi_ListTeamUsersExecute_Call
## API Changelog
diff --git a/tools/releaser/breaking_changes/v20250312003.md b/tools/releaser/breaking_changes/v20250312003.md
index 8cfba875..03c23bcf 100644
--- a/tools/releaser/breaking_changes/v20250312003.md
+++ b/tools/releaser/breaking_changes/v20250312003.md
@@ -32,9 +32,9 @@
### incompatible changes
-- (*StreamsApi).GetAccountDetailsExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetAccountDetailsApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AWSAccountDetails, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetAccountDetailsApiRequest) (*invalid type, \*net/http.Response, error)
-- (*StreamsApi_GetAccountDetailsExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312008/admin.AWSAccountDetails, *net/http.Response, error) *StreamsApi_GetAccountDetailsExecute_Call to func(*invalid type, *net/http.Response, error) \*StreamsApi_GetAccountDetailsExecute_Call
-- (*StreamsApi_GetAccountDetailsExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetAccountDetailsApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.AWSAccountDetails, *net/http.Response, error)) *StreamsApi_GetAccountDetailsExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetAccountDetailsApiRequest) (*invalid type, *net/http.Response, error)) \*StreamsApi_GetAccountDetailsExecute_Call
+- (*StreamsApi).GetAccountDetailsExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetAccountDetailsApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AWSAccountDetails, *net/http.Response, error) to func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetAccountDetailsApiRequest) (*invalid type, \*net/http.Response, error)
+- (*StreamsApi_GetAccountDetailsExecute_Call).Return: changed from func(*go.mongodb.org/atlas-sdk/v20250312009/admin.AWSAccountDetails, *net/http.Response, error) *StreamsApi_GetAccountDetailsExecute_Call to func(*invalid type, *net/http.Response, error) \*StreamsApi_GetAccountDetailsExecute_Call
+- (*StreamsApi_GetAccountDetailsExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetAccountDetailsApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.AWSAccountDetails, *net/http.Response, error)) *StreamsApi_GetAccountDetailsExecute_Call to func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetAccountDetailsApiRequest) (*invalid type, *net/http.Response, error)) \*StreamsApi_GetAccountDetailsExecute_Call
## API Changelog
diff --git a/tools/releaser/breaking_changes/v20250312005.md b/tools/releaser/breaking_changes/v20250312005.md
index 920b4792..85f32979 100644
--- a/tools/releaser/breaking_changes/v20250312005.md
+++ b/tools/releaser/breaking_changes/v20250312005.md
@@ -65,56 +65,56 @@
### incompatible changes
-- (*ResourcePoliciesApi).CreateAtlasResourcePolicy: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicyCreate) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateAtlasResourcePolicyApiRequest to func(context.Context, string, \*go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicyCreate) invalid type
-- (*ResourcePoliciesApi).CreateAtlasResourcePolicyExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateAtlasResourcePolicyApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicy, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicy, \*net/http.Response, error)
-- (*ResourcePoliciesApi).CreateAtlasResourcePolicyWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.CreateAtlasResourcePolicyApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateAtlasResourcePolicyApiRequest to func(context.Context, \*invalid type) invalid type
-- (\*ResourcePoliciesApi).DeleteAtlasResourcePolicy: changed from func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAtlasResourcePolicyApiRequest to func(context.Context, string, string) invalid type
-- (*ResourcePoliciesApi).DeleteAtlasResourcePolicyExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAtlasResourcePolicyApiRequest) (*net/http.Response, error) to func(invalid type) (\*net/http.Response, error)
-- (*ResourcePoliciesApi).DeleteAtlasResourcePolicyWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAtlasResourcePolicyApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAtlasResourcePolicyApiRequest to func(context.Context, \*invalid type) invalid type
-- (\*ResourcePoliciesApi).GetAtlasResourcePolicies: changed from func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePoliciesApiRequest to func(context.Context, string) invalid type
-- (*ResourcePoliciesApi).GetAtlasResourcePoliciesExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePoliciesApiRequest) ([]go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicy, *net/http.Response, error) to func(invalid type) ([]go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicy, \*net/http.Response, error)
-- (*ResourcePoliciesApi).GetAtlasResourcePoliciesWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePoliciesApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePoliciesApiRequest to func(context.Context, \*invalid type) invalid type
-- (\*ResourcePoliciesApi).GetAtlasResourcePolicy: changed from func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePolicyApiRequest to func(context.Context, string, string) invalid type
-- (*ResourcePoliciesApi).GetAtlasResourcePolicyExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePolicyApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicy, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicy, \*net/http.Response, error)
-- (*ResourcePoliciesApi).GetAtlasResourcePolicyWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePolicyApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePolicyApiRequest to func(context.Context, \*invalid type) invalid type
-- (*ResourcePoliciesApi).UpdateAtlasResourcePolicy: changed from func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicyEdit) go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateAtlasResourcePolicyApiRequest to func(context.Context, string, string, \*go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicyEdit) invalid type
-- (*ResourcePoliciesApi).UpdateAtlasResourcePolicyExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateAtlasResourcePolicyApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicy, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicy, \*net/http.Response, error)
-- (*ResourcePoliciesApi).UpdateAtlasResourcePolicyWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateAtlasResourcePolicyApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateAtlasResourcePolicyApiRequest to func(context.Context, \*invalid type) invalid type
-- (*ResourcePoliciesApi_CreateAtlasResourcePolicyExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.CreateAtlasResourcePolicyApiRequest)) *ResourcePoliciesApi_CreateAtlasResourcePolicyExecute_Call to func(func(r invalid type)) \*ResourcePoliciesApi_CreateAtlasResourcePolicyExecute_Call
-- (*ResourcePoliciesApi_CreateAtlasResourcePolicyExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateAtlasResourcePolicyApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicy, *net/http.Response, error)) *ResourcePoliciesApi_CreateAtlasResourcePolicyExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicy, *net/http.Response, error)) \*ResourcePoliciesApi_CreateAtlasResourcePolicyExecute_Call
-- (*ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call to func(invalid type) \*ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call
-- (*ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.CreateAtlasResourcePolicyApiParams)) *ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call
-- (*ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.CreateAtlasResourcePolicyApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call
-- (*ResourcePoliciesApi_CreateAtlasResourcePolicy_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.CreateAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_CreateAtlasResourcePolicy_Call to func(invalid type) \*ResourcePoliciesApi_CreateAtlasResourcePolicy_Call
-- (*ResourcePoliciesApi_CreateAtlasResourcePolicy_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicyCreate) go.mongodb.org/atlas-sdk/v20250312008/admin.CreateAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_CreateAtlasResourcePolicy_Call to func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicyCreate) invalid type) \*ResourcePoliciesApi_CreateAtlasResourcePolicy_Call
-- (*ResourcePoliciesApi_DeleteAtlasResourcePolicyExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAtlasResourcePolicyApiRequest)) *ResourcePoliciesApi_DeleteAtlasResourcePolicyExecute_Call to func(func(r invalid type)) \*ResourcePoliciesApi_DeleteAtlasResourcePolicyExecute_Call
-- (*ResourcePoliciesApi_DeleteAtlasResourcePolicyExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAtlasResourcePolicyApiRequest) (*net/http.Response, error)) *ResourcePoliciesApi_DeleteAtlasResourcePolicyExecute_Call to func(func(invalid type) (*net/http.Response, error)) \*ResourcePoliciesApi_DeleteAtlasResourcePolicyExecute_Call
-- (*ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call to func(invalid type) \*ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call
-- (*ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAtlasResourcePolicyApiParams)) *ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call
-- (*ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAtlasResourcePolicyApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call
-- (*ResourcePoliciesApi_DeleteAtlasResourcePolicy_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_DeleteAtlasResourcePolicy_Call to func(invalid type) \*ResourcePoliciesApi_DeleteAtlasResourcePolicy_Call
-- (*ResourcePoliciesApi_DeleteAtlasResourcePolicy_Call).RunAndReturn: changed from func(func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312008/admin.DeleteAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_DeleteAtlasResourcePolicy_Call to func(func(context.Context, string, string) invalid type) \*ResourcePoliciesApi_DeleteAtlasResourcePolicy_Call
-- (*ResourcePoliciesApi_GetAtlasResourcePoliciesExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePoliciesApiRequest)) *ResourcePoliciesApi_GetAtlasResourcePoliciesExecute_Call to func(func(r invalid type)) \*ResourcePoliciesApi_GetAtlasResourcePoliciesExecute_Call
-- (*ResourcePoliciesApi_GetAtlasResourcePoliciesExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePoliciesApiRequest) ([]go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicy, *net/http.Response, error)) *ResourcePoliciesApi_GetAtlasResourcePoliciesExecute_Call to func(func(invalid type) ([]go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicy, *net/http.Response, error)) \*ResourcePoliciesApi_GetAtlasResourcePoliciesExecute_Call
-- (*ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePoliciesApiRequest) *ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call to func(invalid type) \*ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call
-- (*ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePoliciesApiParams)) *ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call
-- (*ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePoliciesApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePoliciesApiRequest) *ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call
-- (*ResourcePoliciesApi_GetAtlasResourcePolicies_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePoliciesApiRequest) *ResourcePoliciesApi_GetAtlasResourcePolicies_Call to func(invalid type) \*ResourcePoliciesApi_GetAtlasResourcePolicies_Call
-- (*ResourcePoliciesApi_GetAtlasResourcePolicies_Call).RunAndReturn: changed from func(func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePoliciesApiRequest) *ResourcePoliciesApi_GetAtlasResourcePolicies_Call to func(func(context.Context, string) invalid type) \*ResourcePoliciesApi_GetAtlasResourcePolicies_Call
-- (*ResourcePoliciesApi_GetAtlasResourcePolicyExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePolicyApiRequest)) *ResourcePoliciesApi_GetAtlasResourcePolicyExecute_Call to func(func(r invalid type)) \*ResourcePoliciesApi_GetAtlasResourcePolicyExecute_Call
-- (*ResourcePoliciesApi_GetAtlasResourcePolicyExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePolicyApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicy, *net/http.Response, error)) *ResourcePoliciesApi_GetAtlasResourcePolicyExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicy, *net/http.Response, error)) \*ResourcePoliciesApi_GetAtlasResourcePolicyExecute_Call
-- (*ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call to func(invalid type) \*ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call
-- (*ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePolicyApiParams)) *ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call
-- (*ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePolicyApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call
-- (*ResourcePoliciesApi_GetAtlasResourcePolicy_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_GetAtlasResourcePolicy_Call to func(invalid type) \*ResourcePoliciesApi_GetAtlasResourcePolicy_Call
-- (*ResourcePoliciesApi_GetAtlasResourcePolicy_Call).RunAndReturn: changed from func(func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312008/admin.GetAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_GetAtlasResourcePolicy_Call to func(func(context.Context, string, string) invalid type) \*ResourcePoliciesApi_GetAtlasResourcePolicy_Call
-- (*ResourcePoliciesApi_UpdateAtlasResourcePolicyExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateAtlasResourcePolicyApiRequest)) *ResourcePoliciesApi_UpdateAtlasResourcePolicyExecute_Call to func(func(r invalid type)) \*ResourcePoliciesApi_UpdateAtlasResourcePolicyExecute_Call
-- (*ResourcePoliciesApi_UpdateAtlasResourcePolicyExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateAtlasResourcePolicyApiRequest) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicy, *net/http.Response, error)) *ResourcePoliciesApi_UpdateAtlasResourcePolicyExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicy, *net/http.Response, error)) \*ResourcePoliciesApi_UpdateAtlasResourcePolicyExecute_Call
-- (*ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call to func(invalid type) \*ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call
-- (*ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateAtlasResourcePolicyApiParams)) *ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call
-- (*ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateAtlasResourcePolicyApiParams) go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call
-- (*ResourcePoliciesApi_UpdateAtlasResourcePolicy_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_UpdateAtlasResourcePolicy_Call to func(invalid type) \*ResourcePoliciesApi_UpdateAtlasResourcePolicy_Call
-- (*ResourcePoliciesApi_UpdateAtlasResourcePolicy_Call).RunAndReturn: changed from func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicyEdit) go.mongodb.org/atlas-sdk/v20250312008/admin.UpdateAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_UpdateAtlasResourcePolicy_Call to func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312008/admin.ApiAtlasResourcePolicyEdit) invalid type) \*ResourcePoliciesApi_UpdateAtlasResourcePolicy_Call
+- (*ResourcePoliciesApi).CreateAtlasResourcePolicy: changed from func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicyCreate) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateAtlasResourcePolicyApiRequest to func(context.Context, string, \*go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicyCreate) invalid type
+- (*ResourcePoliciesApi).CreateAtlasResourcePolicyExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateAtlasResourcePolicyApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicy, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicy, \*net/http.Response, error)
+- (*ResourcePoliciesApi).CreateAtlasResourcePolicyWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.CreateAtlasResourcePolicyApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateAtlasResourcePolicyApiRequest to func(context.Context, \*invalid type) invalid type
+- (\*ResourcePoliciesApi).DeleteAtlasResourcePolicy: changed from func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAtlasResourcePolicyApiRequest to func(context.Context, string, string) invalid type
+- (*ResourcePoliciesApi).DeleteAtlasResourcePolicyExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAtlasResourcePolicyApiRequest) (*net/http.Response, error) to func(invalid type) (\*net/http.Response, error)
+- (*ResourcePoliciesApi).DeleteAtlasResourcePolicyWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAtlasResourcePolicyApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAtlasResourcePolicyApiRequest to func(context.Context, \*invalid type) invalid type
+- (\*ResourcePoliciesApi).GetAtlasResourcePolicies: changed from func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePoliciesApiRequest to func(context.Context, string) invalid type
+- (*ResourcePoliciesApi).GetAtlasResourcePoliciesExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePoliciesApiRequest) ([]go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicy, *net/http.Response, error) to func(invalid type) ([]go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicy, \*net/http.Response, error)
+- (*ResourcePoliciesApi).GetAtlasResourcePoliciesWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePoliciesApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePoliciesApiRequest to func(context.Context, \*invalid type) invalid type
+- (\*ResourcePoliciesApi).GetAtlasResourcePolicy: changed from func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePolicyApiRequest to func(context.Context, string, string) invalid type
+- (*ResourcePoliciesApi).GetAtlasResourcePolicyExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePolicyApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicy, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicy, \*net/http.Response, error)
+- (*ResourcePoliciesApi).GetAtlasResourcePolicyWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePolicyApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePolicyApiRequest to func(context.Context, \*invalid type) invalid type
+- (*ResourcePoliciesApi).UpdateAtlasResourcePolicy: changed from func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicyEdit) go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateAtlasResourcePolicyApiRequest to func(context.Context, string, string, \*go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicyEdit) invalid type
+- (*ResourcePoliciesApi).UpdateAtlasResourcePolicyExecute: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateAtlasResourcePolicyApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicy, *net/http.Response, error) to func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicy, \*net/http.Response, error)
+- (*ResourcePoliciesApi).UpdateAtlasResourcePolicyWithParams: changed from func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateAtlasResourcePolicyApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateAtlasResourcePolicyApiRequest to func(context.Context, \*invalid type) invalid type
+- (*ResourcePoliciesApi_CreateAtlasResourcePolicyExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.CreateAtlasResourcePolicyApiRequest)) *ResourcePoliciesApi_CreateAtlasResourcePolicyExecute_Call to func(func(r invalid type)) \*ResourcePoliciesApi_CreateAtlasResourcePolicyExecute_Call
+- (*ResourcePoliciesApi_CreateAtlasResourcePolicyExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateAtlasResourcePolicyApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicy, *net/http.Response, error)) *ResourcePoliciesApi_CreateAtlasResourcePolicyExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicy, *net/http.Response, error)) \*ResourcePoliciesApi_CreateAtlasResourcePolicyExecute_Call
+- (*ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call to func(invalid type) \*ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call
+- (*ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.CreateAtlasResourcePolicyApiParams)) *ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call
+- (*ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.CreateAtlasResourcePolicyApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ResourcePoliciesApi_CreateAtlasResourcePolicyWithParams_Call
+- (*ResourcePoliciesApi_CreateAtlasResourcePolicy_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.CreateAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_CreateAtlasResourcePolicy_Call to func(invalid type) \*ResourcePoliciesApi_CreateAtlasResourcePolicy_Call
+- (*ResourcePoliciesApi_CreateAtlasResourcePolicy_Call).RunAndReturn: changed from func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicyCreate) go.mongodb.org/atlas-sdk/v20250312009/admin.CreateAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_CreateAtlasResourcePolicy_Call to func(func(context.Context, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicyCreate) invalid type) \*ResourcePoliciesApi_CreateAtlasResourcePolicy_Call
+- (*ResourcePoliciesApi_DeleteAtlasResourcePolicyExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAtlasResourcePolicyApiRequest)) *ResourcePoliciesApi_DeleteAtlasResourcePolicyExecute_Call to func(func(r invalid type)) \*ResourcePoliciesApi_DeleteAtlasResourcePolicyExecute_Call
+- (*ResourcePoliciesApi_DeleteAtlasResourcePolicyExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAtlasResourcePolicyApiRequest) (*net/http.Response, error)) *ResourcePoliciesApi_DeleteAtlasResourcePolicyExecute_Call to func(func(invalid type) (*net/http.Response, error)) \*ResourcePoliciesApi_DeleteAtlasResourcePolicyExecute_Call
+- (*ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call to func(invalid type) \*ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call
+- (*ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAtlasResourcePolicyApiParams)) *ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call
+- (*ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAtlasResourcePolicyApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ResourcePoliciesApi_DeleteAtlasResourcePolicyWithParams_Call
+- (*ResourcePoliciesApi_DeleteAtlasResourcePolicy_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_DeleteAtlasResourcePolicy_Call to func(invalid type) \*ResourcePoliciesApi_DeleteAtlasResourcePolicy_Call
+- (*ResourcePoliciesApi_DeleteAtlasResourcePolicy_Call).RunAndReturn: changed from func(func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312009/admin.DeleteAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_DeleteAtlasResourcePolicy_Call to func(func(context.Context, string, string) invalid type) \*ResourcePoliciesApi_DeleteAtlasResourcePolicy_Call
+- (*ResourcePoliciesApi_GetAtlasResourcePoliciesExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePoliciesApiRequest)) *ResourcePoliciesApi_GetAtlasResourcePoliciesExecute_Call to func(func(r invalid type)) \*ResourcePoliciesApi_GetAtlasResourcePoliciesExecute_Call
+- (*ResourcePoliciesApi_GetAtlasResourcePoliciesExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePoliciesApiRequest) ([]go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicy, *net/http.Response, error)) *ResourcePoliciesApi_GetAtlasResourcePoliciesExecute_Call to func(func(invalid type) ([]go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicy, *net/http.Response, error)) \*ResourcePoliciesApi_GetAtlasResourcePoliciesExecute_Call
+- (*ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePoliciesApiRequest) *ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call to func(invalid type) \*ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call
+- (*ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePoliciesApiParams)) *ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call
+- (*ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePoliciesApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePoliciesApiRequest) *ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ResourcePoliciesApi_GetAtlasResourcePoliciesWithParams_Call
+- (*ResourcePoliciesApi_GetAtlasResourcePolicies_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePoliciesApiRequest) *ResourcePoliciesApi_GetAtlasResourcePolicies_Call to func(invalid type) \*ResourcePoliciesApi_GetAtlasResourcePolicies_Call
+- (*ResourcePoliciesApi_GetAtlasResourcePolicies_Call).RunAndReturn: changed from func(func(context.Context, string) go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePoliciesApiRequest) *ResourcePoliciesApi_GetAtlasResourcePolicies_Call to func(func(context.Context, string) invalid type) \*ResourcePoliciesApi_GetAtlasResourcePolicies_Call
+- (*ResourcePoliciesApi_GetAtlasResourcePolicyExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePolicyApiRequest)) *ResourcePoliciesApi_GetAtlasResourcePolicyExecute_Call to func(func(r invalid type)) \*ResourcePoliciesApi_GetAtlasResourcePolicyExecute_Call
+- (*ResourcePoliciesApi_GetAtlasResourcePolicyExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePolicyApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicy, *net/http.Response, error)) *ResourcePoliciesApi_GetAtlasResourcePolicyExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicy, *net/http.Response, error)) \*ResourcePoliciesApi_GetAtlasResourcePolicyExecute_Call
+- (*ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call to func(invalid type) \*ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call
+- (*ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePolicyApiParams)) *ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call
+- (*ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePolicyApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ResourcePoliciesApi_GetAtlasResourcePolicyWithParams_Call
+- (*ResourcePoliciesApi_GetAtlasResourcePolicy_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_GetAtlasResourcePolicy_Call to func(invalid type) \*ResourcePoliciesApi_GetAtlasResourcePolicy_Call
+- (*ResourcePoliciesApi_GetAtlasResourcePolicy_Call).RunAndReturn: changed from func(func(context.Context, string, string) go.mongodb.org/atlas-sdk/v20250312009/admin.GetAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_GetAtlasResourcePolicy_Call to func(func(context.Context, string, string) invalid type) \*ResourcePoliciesApi_GetAtlasResourcePolicy_Call
+- (*ResourcePoliciesApi_UpdateAtlasResourcePolicyExecute_Call).Run: changed from func(func(r go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateAtlasResourcePolicyApiRequest)) *ResourcePoliciesApi_UpdateAtlasResourcePolicyExecute_Call to func(func(r invalid type)) \*ResourcePoliciesApi_UpdateAtlasResourcePolicyExecute_Call
+- (*ResourcePoliciesApi_UpdateAtlasResourcePolicyExecute_Call).RunAndReturn: changed from func(func(go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateAtlasResourcePolicyApiRequest) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicy, *net/http.Response, error)) *ResourcePoliciesApi_UpdateAtlasResourcePolicyExecute_Call to func(func(invalid type) (*go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicy, *net/http.Response, error)) \*ResourcePoliciesApi_UpdateAtlasResourcePolicyExecute_Call
+- (*ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call to func(invalid type) \*ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call
+- (*ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call).Run: changed from func(func(ctx context.Context, args *go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateAtlasResourcePolicyApiParams)) *ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call to func(func(ctx context.Context, args *invalid type)) \*ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call
+- (*ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call).RunAndReturn: changed from func(func(context.Context, *go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateAtlasResourcePolicyApiParams) go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call to func(func(context.Context, *invalid type) invalid type) \*ResourcePoliciesApi_UpdateAtlasResourcePolicyWithParams_Call
+- (*ResourcePoliciesApi_UpdateAtlasResourcePolicy_Call).Return: changed from func(go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_UpdateAtlasResourcePolicy_Call to func(invalid type) \*ResourcePoliciesApi_UpdateAtlasResourcePolicy_Call
+- (*ResourcePoliciesApi_UpdateAtlasResourcePolicy_Call).RunAndReturn: changed from func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicyEdit) go.mongodb.org/atlas-sdk/v20250312009/admin.UpdateAtlasResourcePolicyApiRequest) *ResourcePoliciesApi_UpdateAtlasResourcePolicy_Call to func(func(context.Context, string, string, *go.mongodb.org/atlas-sdk/v20250312009/admin.ApiAtlasResourcePolicyEdit) invalid type) \*ResourcePoliciesApi_UpdateAtlasResourcePolicy_Call
## API Changelog
diff --git a/tools/releaser/breaking_changes/v20250312009.md b/tools/releaser/breaking_changes/v20250312009.md
new file mode 100644
index 00000000..7e2c620f
--- /dev/null
+++ b/tools/releaser/breaking_changes/v20250312009.md
@@ -0,0 +1,20 @@
+# Breaking Changes
+
+## SDK changes
+
+### incompatible changes
+
+- (\*AdvancedComputeAutoScaling).GetPredictiveEnabled: removed
+- (\*AdvancedComputeAutoScaling).GetPredictiveEnabledOk: removed
+- (\*AdvancedComputeAutoScaling).HasPredictiveEnabled: removed
+- (\*AdvancedComputeAutoScaling).SetPredictiveEnabled: removed
+- (\*ClusterComputeAutoScaling).GetPredictiveEnabled: removed
+- (\*ClusterComputeAutoScaling).GetPredictiveEnabledOk: removed
+- (\*ClusterComputeAutoScaling).HasPredictiveEnabled: removed
+- (\*ClusterComputeAutoScaling).SetPredictiveEnabled: removed
+- AdvancedComputeAutoScaling.PredictiveEnabled: removed
+- ClusterComputeAutoScaling.PredictiveEnabled: removed
+
+## API Changelog
+
+https://www.mongodb.com/docs/atlas/reference/api-resources-spec/changelog