Skip to content

Commit fcd7aa2

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into metadata-3
2 parents 19cb20f + 7b9a4f6 commit fcd7aa2

File tree

269 files changed

+495
-841
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

269 files changed

+495
-841
lines changed

articles/app-service/app-service-deploy-complex-application-predictably.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ In the tutorial, you will deploy an application that includes:
3636
In this tutorial, you will use the following tools. Since it’s not comprehensive discussion on tools, I’m going to stick to the end-to-end scenario and just give you a brief intro to each, and where you can find more information on it.
3737

3838
### Azure Resource Manager templates (JSON)
39-
Every time you create a web app in Azure App Service, for example, Azure Resource Manager uses a JSON template to create the entire resource group with the component resources. A complex template from the [Azure Marketplace](/marketplace) like the [Scalable WordPress](/marketplace/partners/wordpress/scalablewordpress/) app can include the MySQL database, storage accounts, the App Service plan, the web app itself, alert rules, app settings, autoscale settings, and more, and all these templates are available to you through PowerShell. For information on how to download and use these templates, see [Using Azure PowerShell with Azure Resource Manager](../powershell-azure-resource-manager.md).
39+
Every time you create a web app in Azure App Service, for example, Azure Resource Manager uses a JSON template to create the entire resource group with the component resources. A complex template from the [Azure Marketplace](/azure/marketplace) can include the database, storage accounts, the App Service plan, the web app itself, alert rules, app settings, autoscale settings, and more, and all these templates are available to you through PowerShell. For information on how to download and use these templates, see [Using Azure PowerShell with Azure Resource Manager](../powershell-azure-resource-manager.md).
4040

4141
For more information on the Azure Resource Manager templates, see [Authoring Azure Resource Manager Templates](../azure-resource-manager/resource-group-authoring-templates.md)
4242

articles/app-service/app-service-patch-os-runtime.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ The following table shows how to the versions of Windows and of the language run
9090
| Python version | At `https://<appname>.scm.azurewebsites.net/DebugConsole`, run the following command in the command prompt: <br> `python --version` |
9191

9292
> [!NOTE]
93-
> Access to registry location `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages`, where information on ["KB" patches]((https://docs.microsoft.com/security-updates/SecurityBulletins/securitybulletins)) is stored, is locked down.
93+
> Access to registry location `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages`, where information on ["KB" patches](https://docs.microsoft.com/security-updates/SecurityBulletins/securitybulletins) is stored, is locked down.
9494
>
9595
>
9696

articles/azure-functions/functions-bindings-cosmosdb-v2.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ This article explains how to work with [Azure Cosmos DB](..\cosmos-db\serverless
3333
3434
[!INCLUDE [intro](../../includes/functions-bindings-intro.md)]
3535

36+
## Supported APIs
37+
38+
[!INCLUDE [SQL API support only](../../includes/functions-cosmosdb-sqlapi-note.md)]
39+
3640
## Packages - Functions 2.x
3741

3842
The Azure Cosmos DB bindings for Functions version 2.x are provided in the [Microsoft.Azure.WebJobs.Extensions.CosmosDB](http://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.CosmosDB) NuGet package, version 3.x. Source code for the bindings is in the [azure-webjobs-sdk-extensions](https://github.com/Azure/azure-webjobs-sdk-extensions/blob/master/src/WebJobs.Extensions.CosmosDB/) GitHub repository.
@@ -250,10 +254,7 @@ The trigger doesn't indicate whether a document was updated or inserted, it just
250254

251255
## Input
252256

253-
The Azure Cosmos DB input binding retrieves one or more Azure Cosmos DB documents and passes them to the input parameter of the function. The document ID or query parameters can be determined based on the trigger that invokes the function.
254-
255-
>[!NOTE]
256-
> Don't use Azure Cosmos DB input or output bindings if you're using MongoDB API on a Cosmos DB account. Data corruption is possible.
257+
The Azure Cosmos DB input binding uses the SQL API to retrieve one or more Azure Cosmos DB documents and passes them to the input parameter of the function. The document ID or query parameters can be determined based on the trigger that invokes the function.
257258

258259
## Input - examples
259260

@@ -1250,10 +1251,7 @@ In JavaScript functions, updates are not made automatically upon function exit.
12501251

12511252
## Output
12521253

1253-
The Azure Cosmos DB output binding lets you write a new document to an Azure Cosmos DB database.
1254-
1255-
>[!NOTE]
1256-
> Don't use Azure Cosmos DB input or output bindings if you're using MongoDB API on a Cosmos DB account. Data corruption is possible.
1254+
The Azure Cosmos DB output binding lets you write a new document to an Azure Cosmos DB database using the SQL API.
12571255

12581256
## Output - examples
12591257

articles/azure-functions/functions-bindings-cosmosdb.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ This article explains how to work with [Azure Cosmos DB](..\cosmos-db\serverless
3333
3434
[!INCLUDE [intro](../../includes/functions-bindings-intro.md)]
3535

36+
## Supported APIs
37+
38+
[!INCLUDE [SQL API support only](../../includes/functions-cosmosdb-sqlapi-note.md)]
39+
3640
## Packages - Functions 1.x
3741

3842
The Azure Cosmos DB bindings for Functions version 1.x are provided in the [Microsoft.Azure.WebJobs.Extensions.DocumentDB](http://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.DocumentDB) NuGet package, version 1.x. Source code for the bindings is in the [azure-webjobs-sdk-extensions](https://github.com/Azure/azure-webjobs-sdk-extensions/tree/v2.x/src/WebJobs.Extensions.DocumentDB) GitHub repository.
@@ -212,10 +216,7 @@ The trigger doesn't indicate whether a document was updated or inserted, it just
212216

213217
## Input
214218

215-
The Azure Cosmos DB input binding retrieves one or more Azure Cosmos DB documents and passes them to the input parameter of the function. The document ID or query parameters can be determined based on the trigger that invokes the function.
216-
217-
>[!NOTE]
218-
> Don't use Azure Cosmos DB input or output bindings if you're using MongoDB API on a Cosmos DB account. Data corruption is possible.
219+
The Azure Cosmos DB input binding uses the SQL API to retrieve one or more Azure Cosmos DB documents and passes them to the input parameter of the function. The document ID or query parameters can be determined based on the trigger that invokes the function.
219220

220221
## Input - examples
221222

@@ -1182,10 +1183,7 @@ In JavaScript functions, updates are not made automatically upon function exit.
11821183

11831184
## Output
11841185

1185-
The Azure Cosmos DB output binding lets you write a new document to an Azure Cosmos DB database.
1186-
1187-
>[!NOTE]
1188-
> Don't use Azure Cosmos DB input or output bindings if you're using MongoDB API on a Cosmos DB account. Data corruption is possible.
1186+
The Azure Cosmos DB output binding lets you write a new document to an Azure Cosmos DB database using the SQL API.
11891187

11901188
## Output - examples
11911189

articles/azure-functions/functions-create-cosmos-db-triggered-function.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ To complete this tutorial:
3030

3131
+ If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
3232

33+
> [!NOTE]
34+
> [!INCLUDE [SQL API support only](../../includes/functions-cosmosdb-sqlapi-note.md)]
35+
3336
## Create an Azure Function app
3437

3538
[!INCLUDE [Create function app Azure portal](../../includes/functions-create-function-app-portal.md)]

articles/azure-stack/azure-stack-identity-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ For applications and users, the architecture of Azure Stack is described by four
133133
|Layer |Authentication between layers |
134134
|---------|---------|
135135
|Tools and clients, such as the Admin portal | To access or modify a resource in Azure Stack, tools and clients use a [JSON Web Token](/azure/active-directory/develop/active-directory-token-and-claims) to place a call to Azure Resource Manager. <br>Azure Resource Manager validates the JSON Web Token and peeks at the *claims* in the issued token to estimate the level of authorization that user or service principal has in Azure Stack. |
136-
|Azure Resource Manager and its core services |Azure Resource Manager communicates with resource providers to transfer communication from users. <br> Transfers use *direct imperative* calls or *declarative* calls via [Azure Resource Manager templates](/azure/azure-stack/user/azure-stack-arm-templates.md).|
136+
|Azure Resource Manager and its core services |Azure Resource Manager communicates with resource providers to transfer communication from users. <br> Transfers use *direct imperative* calls or *declarative* calls via [Azure Resource Manager templates](/azure/azure-stack/user/azure-stack-arm-templates).|
137137
|Resource providers |Calls that are passed to resource providers are secured with certificate-based authentication. <br>Azure Resource Manager and the resource provider then stay in communication through an API. For every call that's received from Azure Resource Manager, the resource provider validates the call with that certificate.|
138138
|Infrastructure and business logic |Resource providers communicate with business logic and infrastructure by using an authentication mode of their choice. The default resource providers that ship with Azure Stack use Windows Authentication to secure this communication.|
139139

@@ -177,7 +177,7 @@ For information about how to use RBAC with Azure Stack, see the following articl
177177
Details about using Azure PowerShell to authenticate with Azure Stack can be found at [Configure the Azure Stack user's PowerShell environment](azure-stack-powershell-configure-user.md).
178178

179179
### Authenticate with Azure CLI
180-
For information about using Azure PowerShell to authenticate with Azure Stack, see [Install and configure Azure CLI for use with Azure Stack](/azure/azure-stack/user/azure-stack-connect-cli.md).
180+
For information about using Azure PowerShell to authenticate with Azure Stack, see [Install and configure Azure CLI for use with Azure Stack](/azure/azure-stack/user/azure-stack-connect-cli).
181181

182182
## Next steps
183183
- [Identity architecture](azure-stack-identity-architecture.md)

articles/cognitive-services/Speech/GetStarted/GetStartedClientLibraries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Currently, the following Bing Speech client libraries are available:
2727
- [Objective-C library for iOS](Get-Started-ObjectiveC-iOS.md)
2828

2929
> [!NOTE]
30-
In May 2018, we also released the new [Speech Service](/speech-service/overview.md) in public preview. We encourage you to [try it out for free](/speech-service/get-started.md).
30+
In May 2018, we also released the new [Speech Service](../../speech-service/index.yml) in public preview. We encourage you to [try it out for free](../../speech-service/get-started.md).
3131

3232
## Additional resources
3333

articles/data-catalog/data-catalog-adopting-data-catalog.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,13 @@
11
---
2-
title: Approach and process for adopting Azure Data Catalog | Microsoft Docs
2+
title: Approach and process for adopting Azure Data Catalog
33
description: This article presents an approach and process for organizations considering adopting Azure Data Catalog, including defining a vision, identifying key business use cases, and choosing a pilot project.
44
services: data-catalog
5-
documentationcenter: ''
65
author: steelanddata
7-
manager: NA
8-
editor: ''
9-
tags: ''
10-
6+
ms.author: maroche
117
ms.assetid: 0c771e7a-6fcd-417f-9247-897177719567
128
ms.service: data-catalog
13-
ms.devlang: NA
14-
ms.topic: article
9+
ms.topic: conceptual
1510
ms.date: 01/18/2018
16-
ms.author: maroche
17-
1811
---
1912
# Approach and process for adopting Azure Data Catalog
2013
This article helps you get started adopting **Azure Data Catalog** in your organization. To successfully adopt **Azure Data Catalog**, you focus on three key items: define your vision, identify key business use cases within your organization, and choose a pilot project.

articles/data-catalog/data-catalog-common-scenarios.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,13 @@
11
---
2-
title: Azure Data Catalog common scenarios | Microsoft Docs
2+
title: Azure Data Catalog common scenarios
33
description: An overview of common scenarios for Azure Data Catalog, including the registration and discovery of high-value data sources, enabling self-service business intelligence, and capturing existing knowledge about data sources and processes.
44
services: data-catalog
5-
documentationcenter: ''
65
author: steelanddata
7-
manager: NA
8-
editor: ''
9-
tags: ''
10-
6+
ms.author: maroche
117
ms.assetid: 60930d78-d2d4-4d5d-9651-bdda50b0da0e
128
ms.service: data-catalog
13-
ms.devlang: NA
14-
ms.topic: article
9+
ms.topic: conceptual
1510
ms.date: 01/18/2018
16-
ms.author: maroche
17-
1811
---
1912
# Azure Data Catalog common scenarios
2013
This article presents common scenarios where Azure Data Catalog can help your organization get more value from its existing data sources.

articles/data-catalog/data-catalog-developer-concepts.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,13 @@
11
---
2-
title: Data Catalog developer concepts | Microsoft Docs
2+
title: Azure Data Catalog developer concepts
33
description: Introduction to the key concepts in Azure Data Catalog conceptual model, as exposed through the Catalog REST API.
44
services: data-catalog
5-
documentationcenter: ''
65
author: spelluru
7-
manager: jhubbard
8-
editor: ''
9-
tags: ''
10-
6+
ms.author: spelluru
117
ms.assetid: 89de9137-a0a4-40d1-9f8d-625acad31619
128
ms.service: data-catalog
13-
ms.devlang: NA
149
ms.topic: conceptual
1510
ms.date: 01/18/2018
16-
ms.author: spelluru
17-
1811
---
1912
# Azure Data Catalog developer concepts
2013
Microsoft **Azure Data Catalog** is a fully managed cloud service that provides capabilities for data source discovery and for crowdsourcing data source metadata. Developers can use the service via its REST APIs. Understanding the concepts implemented in the service is important for developers to successfully integrate with **Azure Data Catalog**.

0 commit comments

Comments
 (0)