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 {
5454
5555 const instanceSize = ( regionConfigs . length <= 0 ? undefined : regionConfigs [ 0 ] . instanceSize ) || "UNKNOWN" ;
5656
57- const clusterInstaceType = instanceSize == "M0" ? "FREE" : "DEDICATED" ;
57+ const clusterInstanceType = instanceSize == "M0" ? "FREE" : "DEDICATED" ;
5858
5959 return {
6060 content : [
6161 {
6262 type : "text" ,
6363 text : `Cluster Name | Cluster Type | Tier | State | MongoDB Version | Connection String
6464----------------|----------------|----------------|----------------|----------------|----------------
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" } `,
6666 } ,
6767 ] ,
6868 } ;
You can’t perform that action at this time.
0 commit comments