diff --git a/src/Explorer/Explorer.tsx b/src/Explorer/Explorer.tsx index 91ad1b20b..27c97417d 100644 --- a/src/Explorer/Explorer.tsx +++ b/src/Explorer/Explorer.tsx @@ -1016,7 +1016,7 @@ export default class Explorer { break; case ViewModels.TerminalKind.VCoreMongo: - title = "VCoreMongo Shell"; + title = "Mongo Shell"; break; default: diff --git a/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.test.ts b/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.test.ts index 8ac604ea2..12831e3d7 100644 --- a/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.test.ts +++ b/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.test.ts @@ -136,7 +136,7 @@ describe("CommandBarComponentButtonFactory tests", () => { describe("Open Postgres and vCore Mongo buttons", () => { const openPostgresShellButtonLabel = "Open PSQL shell"; - const openVCoreMongoShellButtonLabel = "Open MongoDB (vCore) shell"; + const openVCoreMongoShellButtonLabel = "Open MongoDB (DocumentDB) shell"; beforeAll(() => { mockExplorer = {} as Explorer; diff --git a/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx b/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx index 6df096b33..bd4f2b85e 100644 --- a/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx +++ b/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx @@ -450,7 +450,7 @@ function createOpenTerminalButtonByKind( case ViewModels.TerminalKind.Postgres: return "PSQL"; case ViewModels.TerminalKind.VCoreMongo: - return "MongoDB (vCore)"; + return "MongoDB (DocumentDB)"; default: return ""; } diff --git a/src/Explorer/Quickstart/VCoreMongoQuickstartGuide.tsx b/src/Explorer/Quickstart/VCoreMongoQuickstartGuide.tsx index 4fbb83484..fa40d8e4c 100644 --- a/src/Explorer/Quickstart/VCoreMongoQuickstartGuide.tsx +++ b/src/Explorer/Quickstart/VCoreMongoQuickstartGuide.tsx @@ -46,7 +46,7 @@ export const VcoreMongoQuickstartGuide: React.FC = (): JSX.Element => { Quick start guide - Getting started in Cosmos DB Mongo DB (vCore) + Getting started in Azure DocumentDB (with MongoDB compatibility) {currentStep < 5 && ( { This tutorial guides you to create and query distributed tables using a sample dataset.

- To start, input the admin password you used during the cluster creation process into the MongoDB vCore + To start, input the admin password you used during the cluster creation process into the Document DB terminal.


- Note: If you navigate out of the Quick start blade (MongoDB vCore Shell), the session will be - closed and all ongoing commands might be interrupted. + Note: If you navigate out of the Quick start blade (MongoDB Shell), the session will be closed + and all ongoing commands might be interrupted.
@@ -295,7 +295,7 @@ export const VcoreMongoQuickstartGuide: React.FC = (): JSX.Element => {

Modernize your data seamlessly from an existing MongoDB cluster, whether it's on-premises or - hosted in the cloud, to Azure Cosmos DB for MongoDB vCore.  + hosted in the cloud, to Azure DocumentDB.  { subtitle = "Get started with our sample datasets, documentation, and additional tools."; break; case "VCoreMongo": - title = "Welcome to Azure Cosmos DB for MongoDB (vCore)"; + title = "Welcome to Azure DocumentDB (with MongoDB compatibility)"; subtitle = "Get started with our sample datasets, documentation, and additional tools."; break; default: @@ -456,7 +456,7 @@ export class SplashScreen extends React.Component { if (userContext.apiType === "VCoreMongo") { icon = VisualStudioIcon; title = "Connect with VS Code"; - description = "Query and Manage your MongoDB cluster in Visual Studio Code"; + description = "Query and Manage your MongoDB and DocumentDB clusters in Visual Studio Code"; onClick = () => this.container.openInVsCode(); }