@@ -24,12 +24,14 @@ import (
24
24
25
25
const liveMigrationBasePath = "api/public/v1.0/orgs/%s/liveExport/migrationLink"
26
26
27
+ type LinkToken = atlas.LinkToken
28
+
27
29
// LiveDataMigrationService is an interface for interfacing with the Live Migration
28
30
// endpoints of the MongoDB Ops Manager API.
29
31
//
30
32
// See more: https://docs.opsmanager.mongodb.com/current/reference/api/cloud-migration/
31
33
type LiveDataMigrationService interface {
32
- ConnectOrganizations (context.Context , string , * atlas. LinkToken ) (* ConnectionStatus , * Response , error )
34
+ ConnectOrganizations (context.Context , string , * LinkToken ) (* ConnectionStatus , * Response , error )
33
35
DeleteConnection (context.Context , string ) (* Response , error )
34
36
ConnectionStatus (context.Context , string ) (* ConnectionStatus , * Response , error )
35
37
}
@@ -69,7 +71,7 @@ func (s *LiveDataMigrationServiceOp) ConnectionStatus(ctx context.Context, orgID
69
71
// ConnectOrganizations connects the source Ops Manager organization with a target MongoDB Atlas organization.
70
72
//
71
73
// See more: https://docs.opsmanager.mongodb.com/current/reference/api/cloud-migration/link-the-organization-with-atlas/
72
- func (s * LiveDataMigrationServiceOp ) ConnectOrganizations (ctx context.Context , orgID string , linkToken * atlas. LinkToken ) (* ConnectionStatus , * Response , error ) {
74
+ func (s * LiveDataMigrationServiceOp ) ConnectOrganizations (ctx context.Context , orgID string , linkToken * LinkToken ) (* ConnectionStatus , * Response , error ) {
73
75
if orgID == "" {
74
76
return nil , nil , atlas .NewArgError ("orgID" , "must be set" )
75
77
}
0 commit comments