Skip to content

Commit 46c64a5

Browse files
committed
Update clusters.go
1 parent 1cc7dbf commit 46c64a5

File tree

1 file changed

+0
-55
lines changed

1 file changed

+0
-55
lines changed

mongodbatlas/clusters.go

Lines changed: 0 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -114,61 +114,6 @@ type clustersResponse struct {
114114
TotalCount int `json:"totalCount,omitempty"`
115115
}
116116

117-
// DefaultDiskSizeGB represents the Tier and the default disk size for each one
118-
// it can be use like: DefaultDiskSizeGB["AWS"]["M10"]
119-
var DefaultDiskSizeGB map[string]map[string]float64 = map[string]map[string]float64{
120-
"TENANT": {
121-
"M2": 2,
122-
"M5": 5,
123-
},
124-
"AWS": {
125-
"M10": 10,
126-
"M20": 20,
127-
"M30": 40,
128-
"M40": 80,
129-
"R40": 80,
130-
"M40_NVME": 380,
131-
"M50": 160,
132-
"R50": 160,
133-
"M50_NVME": 760,
134-
"M60": 320,
135-
"R60": 320,
136-
"M60_NVME": 1600,
137-
"M80": 750,
138-
"R80": 750,
139-
"M80_NVME": 1600,
140-
"M140": 1000,
141-
"M200": 1500,
142-
"R200": 1500,
143-
"M200_NVME": 3100,
144-
"M300": 2000,
145-
"R300": 2000,
146-
"R400": 3000,
147-
"M400_NVME": 4000,
148-
},
149-
"GCP": {
150-
"M10": 10,
151-
"M20": 20,
152-
"M30": 40,
153-
"M40": 80,
154-
"M50": 160,
155-
"M60": 320,
156-
"M80": 750,
157-
"M200": 1500,
158-
"M300": 2200,
159-
},
160-
"AZURE": {
161-
"M10": 32,
162-
"M20": 32,
163-
"M30": 32,
164-
"M40": 128,
165-
"M50": 128,
166-
"M60": 128,
167-
"M80": 256,
168-
"M200": 256,
169-
},
170-
}
171-
172117
//List all clusters in the project associated to {GROUP-ID}.
173118
//See more: https://docs.atlas.mongodb.com/reference/api/clusters-get-all/
174119
func (s *ClustersServiceOp) List(ctx context.Context, groupID string, listOptions *ListOptions) ([]Cluster, *Response, error) {

0 commit comments

Comments
 (0)