Skip to content

Commit eb258e0

Browse files
committed
Cosmos DB: DocumentDB->Cosmos DB cleanup work.
1 parent f7268a7 commit eb258e0

21 files changed

+26
-26
lines changed

articles/cosmos-db/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@
312312
- name: Resources
313313
items:
314314
- name: Pricing
315-
href: https://azure.microsoft.com/pricing/details/documentdb/
315+
href: https://azure.microsoft.com/pricing/details/cosmos-db/
316316
- name: FAQ
317317
href: faq.md
318318
- name: Stack Overflow

articles/cosmos-db/change-feed-hl7-fhir-logic-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,6 @@ The following image shows all of the Azure services for this solution running in
230230
- Using Azure Service Bus Queues to handle the distribution for the HL7 FHIR documents.
231231

232232
## Next steps
233-
For more information about Azure Cosmos DB, see the [Azure Cosmos DB home page](https://azure.microsoft.com/services/documentdb/). For more informaiton about Logic Apps, see [Logic Apps](https://azure.microsoft.com/services/logic-apps/).
233+
For more information about Azure Cosmos DB, see the [Azure Cosmos DB home page](https://azure.microsoft.com/services/cosmos-db/). For more informaiton about Logic Apps, see [Logic Apps](https://azure.microsoft.com/services/logic-apps/).
234234

235235

articles/cosmos-db/cli-samples.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.devlang: azurecli
1414
ms.topic: article
1515
ms.tgt_pltfrm: na
1616
ms.workload: database
17-
ms.date: 05/10/2017
17+
ms.date: 06/05/2017
1818
ms.author: mimig
1919
---
2020

@@ -25,7 +25,7 @@ The following table includes links to sample Azure CLI scripts for Azure Cosmos
2525
| | |
2626
|---|---|
2727
|**Create Azure Cosmos DB account, database, and containers**||
28-
|[Create a Document, Graph, or Table API account](scripts/create-database-account-collections-cli.md)| Creates a single Azure Cosmos DB DocumentDB API account, database, and container. |
28+
|[Create a DocumentDB, Graph, or Table API account](scripts/create-database-account-collections-cli.md)| Creates a single Azure Cosmos DB API account, database, and container for use with the DocumentDB, Graph, or Table APIs. |
2929
| [Create a MongoDB API account](scripts/create-mongodb-database-account-cli.md) | Creates a single Azure Cosmos DB MongoDB API account, database, and collection. |
3030
|**Scale Azure Cosmos DB**||
3131
| [Scale container throughput](scripts/scale-collection-throughput-cli.md) | Changes the provisioned througput on a container.|

articles/cosmos-db/create-graph-dotnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Now let's clone a Graph API app from github, set the connection string, and run
5656

5757
Let's make a quick review of what's happening in the app. Open the Program.cs file and you'll find that these lines of code create the Azure Cosmos DB resources.
5858
59-
* The DocumentClient is initialized. In the preview, we added a graph extension API on the DocumentDB client. We are working on a standalone graph client decoupled from the DocumentDB client and resources.
59+
* The DocumentClient is initialized. In the preview, we added a graph extension API on the Azure Cosmos DB client. We are working on a standalone graph client decoupled from the Azure Cosmos DB client and resources.
6060
6161
```csharp
6262
using (DocumentClient client = new DocumentClient(

articles/cosmos-db/create-graph-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Now go back to the Azure portal to get your connection string information and co
8282
8383
1. In the [Azure portal](http://portal.azure.com/), in your Azure Cosmos DB account, in the left navigation click **Keys**, and then click **Read-write Keys**. You use the copy buttons on the right side of the screen to copy the URI and Primary Key into the `Program.java` file in the next step.
8484
85-
![View and copy an access key in the Azure portal, Keys blade](./media/create-documentdb-dotnet/keys.png)
85+
![View and copy an access key in the Azure portal, Keys blade](./media/create-graph-java/keys.png)
8686
8787
2. In Open the `src/remote-secure.yaml` file.
8888

articles/cosmos-db/create-graph-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Now go back to the Azure portal to get your connection string information, and c
9595
9696
1. In the [Azure portal](http://portal.azure.com/), in your Azure Cosmos DB account, on the left navigation menu, click **Keys**, and then click **Read-write Keys**. You use the copy buttons at the right to copy the URI and primary key into the `app.js` file in the next step.
9797
98-
![The Azure portal Keys blade](./media/create-documentdb-dotnet/keys.png)
98+
![The Azure portal Keys blade](./media/create-graph-nodejs/keys.png)
9999
100100
2. Copy your Gremlin URI value from the portal (using the copy button) and make it the value of `config.endpoint` key in config.js. The Gremlin endpoint must be only the host name without the protocol/port number, like `mygraphdb.graphs.azure.com` (not `https://mygraphdb.graphs.azure.com` or `mygraphdb.graphs.azure.com:433`).
101101

articles/cosmos-db/create-mongodb-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Azure Cosmos DB is Microsoft’s globally distributed multi-model database servi
2424

2525
This quickstart demonstrates how to use an existing [MongoDB](mongodb-introduction.md) app written in Node.js and connect it to your Azure Cosmos DB database, which supports MongoDB client connections. In other words, your Node.js application only knows that it's connecting to a database using MongoDB APIs. It is transparent to the application that the data is stored in Azure Cosmos DB.
2626

27-
When you are done, you will have a MEAN application (MongoDB, Express, AngularJS, and Node.js) running on [Azure Cosmos DB](https://azure.microsoft.com/services/documentdb/).
27+
When you are done, you will have a MEAN application (MongoDB, Express, AngularJS, and Node.js) running on [Azure Cosmos DB](https://azure.microsoft.com/services/cosmos-db/).
2828

2929
![MEAN.js app running in Azure App Service](./media/create-mongodb-nodejs/meanjs-in-azure.png)
3030

articles/cosmos-db/create-table-dotnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Now go back to the Azure portal to get your connection string information and co
100100
101101
1. In the [Azure portal](http://portal.azure.com/), in your Azure Cosmos DB account, in the left navigation click **Keys**, and then click **Read-write Keys**. You'll use the copy buttons on the right side of the screen to copy the URI and Primary Key into the app.config file in the next step.
102102

103-
![View and copy an access key in the Azure portal, Keys blade](./media/create-documentdb-dotnet-core/keys.png)
103+
![View and copy an access key in the Azure portal, Keys blade](./media/create-table-dotnet/keys.png)
104104

105105
2. In Visual Studio, open the app.config file.
106106

articles/cosmos-db/create-website.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ms.author: mimig
1818

1919
---
2020
# Deploy Azure Cosmos DB and Azure App Service Web Apps using an Azure Resource Manager Template
21-
This tutorial shows you how to use an Azure Resource Manager template to deploy and integrate [Microsoft Azure Cosmos DB](https://azure.microsoft.com/services/documentdb/), an [Azure App Service](http://go.microsoft.com/fwlink/?LinkId=529714) web app, and a sample web application.
21+
This tutorial shows you how to use an Azure Resource Manager template to deploy and integrate [Microsoft Azure Cosmos DB](https://azure.microsoft.com/services/cosmos-db/), an [Azure App Service](http://go.microsoft.com/fwlink/?LinkId=529714) web app, and a sample web application.
2222

2323
Using Azure Resource Manager templates, you can easily automate the deployment and configuration of your Azure resources. This tutorial shows how to deploy a web application and automatically configure Azure Cosmos DB account connection information.
2424

@@ -80,7 +80,7 @@ Now let's deploy our first template.
8080

8181
![Sample Todo application](./media/create-website/image2.png)
8282
9. Go ahead and create a couple of tasks in the web app and then return to the Resource group blade in the Azure portal. Click the Azure Cosmos DB account resource in the Resources list and then click **Query Explorer**.
83-
![Screenshot of the Summary lens with the myotherdocumentdbwebapp web app highlighted](./media/create-website/TemplateDeployment8.png)
83+
![Screenshot of the Summary lens with the web app highlighted](./media/create-website/TemplateDeployment8.png)
8484
10. Run the default query, "SELECT * FROM c" and inspect the results. Notice that the query has retrieved the JSON representation of the todo items you created in step 7 above. Feel free to experiment with queries; for example, try running SELECT * FROM c WHERE c.isComplete = true to return all todo items which have been marked as complete.
8585

8686
![Screenshot of the Query Explorer and Results blades showing the query results](./media/create-website/image5.png)

articles/cosmos-db/documentdb-dotnetcore-get-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ Congratulations! You have successfully created an Azure Cosmos DB database.
204204

205205
## <a id="CreateColl"></a>Step 5: Create a collection
206206
> [!WARNING]
207-
> **CreateDocumentCollectionAsync** will create a new collection with reserved throughput, which has pricing implications. For more details, please visit our [pricing page](https://azure.microsoft.com/pricing/details/documentdb/).
207+
> **CreateDocumentCollectionAsync** will create a new collection with reserved throughput, which has pricing implications. For more details, please visit our [pricing page](https://azure.microsoft.com/pricing/details/cosmos-db/).
208208
209209
A [collection](documentdb-resources.md#collections) can be created by using the [CreateDocumentCollectionAsync](https://msdn.microsoft.com/library/microsoft.azure.documents.client.documentclient.createdocumentcollectionasync.aspx) method of the **DocumentClient** class. A collection is a container of JSON documents and associated JavaScript application logic.
210210

0 commit comments

Comments
 (0)