File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -54,15 +54,15 @@ export class InspectClusterTool extends AtlasToolBase {
54
54
55
55
const instanceSize = ( regionConfigs . length <= 0 ? undefined : regionConfigs [ 0 ] . instanceSize ) || "UNKNOWN" ;
56
56
57
- const clusterInstaceType = instanceSize == "M0" ? "FREE" : "DEDICATED" ;
57
+ const clusterInstanceType = instanceSize == "M0" ? "FREE" : "DEDICATED" ;
58
58
59
59
return {
60
60
content : [
61
61
{
62
62
type : "text" ,
63
63
text : `Cluster Name | Cluster Type | Tier | State | MongoDB Version | Connection String
64
64
----------------|----------------|----------------|----------------|----------------|----------------
65
- ${ cluster . name } | ${ clusterInstaceType } | ${ clusterInstaceType == "DEDICATED" ? instanceSize : "N/A" } | ${ cluster . stateName } | ${ cluster . mongoDBVersion || "N/A" } | ${ cluster . connectionStrings ?. standardSrv || cluster . connectionStrings ?. standard || "N/A" } `,
65
+ ${ cluster . name } | ${ clusterInstanceType } | ${ clusterInstanceType == "DEDICATED" ? instanceSize : "N/A" } | ${ cluster . stateName } | ${ cluster . mongoDBVersion || "N/A" } | ${ cluster . connectionStrings ?. standardSrv || cluster . connectionStrings ?. standard || "N/A" } `,
66
66
} ,
67
67
] ,
68
68
} ;
You can’t perform that action at this time.
0 commit comments