Skip to content

Commit c3bc956

Browse files
authored
feat: some more alias to atlas client types (#217)
1 parent c7d192c commit c3bc956

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

opsmngr/live_data_migration.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,14 @@ import (
2424

2525
const liveMigrationBasePath = "api/public/v1.0/orgs/%s/liveExport/migrationLink"
2626

27+
type LinkToken = atlas.LinkToken
28+
2729
// LiveDataMigrationService is an interface for interfacing with the Live Migration
2830
// endpoints of the MongoDB Ops Manager API.
2931
//
3032
// See more: https://docs.opsmanager.mongodb.com/current/reference/api/cloud-migration/
3133
type LiveDataMigrationService interface {
32-
ConnectOrganizations(context.Context, string, *atlas.LinkToken) (*ConnectionStatus, *Response, error)
34+
ConnectOrganizations(context.Context, string, *LinkToken) (*ConnectionStatus, *Response, error)
3335
DeleteConnection(context.Context, string) (*Response, error)
3436
ConnectionStatus(context.Context, string) (*ConnectionStatus, *Response, error)
3537
}
@@ -69,7 +71,7 @@ func (s *LiveDataMigrationServiceOp) ConnectionStatus(ctx context.Context, orgID
6971
// ConnectOrganizations connects the source Ops Manager organization with a target MongoDB Atlas organization.
7072
//
7173
// 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) {
7375
if orgID == "" {
7476
return nil, nil, atlas.NewArgError("orgID", "must be set")
7577
}

opsmngr/measurements.go

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ type (
2525
ProcessDiskMeasurements = atlas.ProcessDiskMeasurements
2626
ProcessDatabaseMeasurements = atlas.ProcessDatabaseMeasurements
2727
ProcessMeasurementListOptions = atlas.ProcessMeasurementListOptions
28+
Measurements = atlas.Measurements
2829
)
2930

3031
// MeasurementsService provides access to the measurement related functions in the Ops Manager API.

opsmngr/opsmngr.go

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ type (
5252
Checkpoint = atlas.Checkpoint
5353
Checkpoints = atlas.Checkpoints
5454
SnapshotTimestamp = atlas.SnapshotTimestamp
55+
IndexOptions = atlas.IndexOptions
56+
CollationOptions = atlas.CollationOptions
5557
)
5658

5759
type HTTPClient interface {

0 commit comments

Comments
 (0)