Skip to content

Commit d4b7717

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into managed-identity-title-updates
2 parents 0ace133 + 4ba711e commit d4b7717

20 files changed

+52
-32
lines changed
Loading

articles/active-directory/privileged-identity-management/pim-resource-roles-configure-role-settings.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ Follow these steps to open the settings for an Azure resource role.
5353

5454
1. Use the **Notification** tab or the **Next: Activation** button at the bottom of the page to get to the notification setting tab for this role. These settings control all the email notifications related to this role.
5555

56+
> [!NOTE]
57+
> This notifications UI is currently being rolled across Azure regions and subscriptions. If you can't configure these granular notifications, please check back in a day or two.
58+
5659
![Role Notifications tab in role settings page](./media/pim-resource-roles-configure-role-settings/role-settings-notification-tab.png)
5760

5861
1. Select the **Update** button at any time to update the role settings.

articles/api-management/api-management-howto-developer-portal.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,14 @@ The interactive console makes a client-side API request from the browser. You ca
139139
</cors>
140140
```
141141

142+
> [!NOTE]
143+
>
144+
> If you apply the CORS policy in the Product scope, instead of the API(s) scope, and your API uses subscription key authentication through a header, your console won't work.
145+
>
146+
> The browser automatically issues an OPTIONS HTTP request, which doesn’t contain a header with the subscription key. Because of the missing subscription key, API Management can't associate the OPTIONS call with a Product, so it can’t apply the CORS policy.
147+
>
148+
> As a workaround you can pass the subscription key in a query parameter.
149+
142150
## Next steps
143151

144152
Learn more about the new developer portal:

articles/cognitive-services/Translator/reference/v3-0-translate.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: nitinme
99
ms.service: cognitive-services
1010
ms.subservice: translator-text
1111
ms.topic: reference
12-
ms.date: 10/16/2019
12+
ms.date: 11/12/2019
1313
ms.author: swmachan
1414
---
1515

@@ -29,21 +29,30 @@ https://api.cognitive.microsofttranslator.com/translate?api-version=3.0
2929

3030
Request parameters passed on the query string are:
3131

32+
### Required parameters
33+
3234
<table width="100%">
3335
<th width="20%">Query parameter</th>
3436
<th>Description</th>
3537
<tr>
3638
<td>api-version</td>
3739
<td><em>Required parameter</em>.<br/>Version of the API requested by the client. Value must be <code>3.0</code>.</td>
3840
</tr>
39-
<tr>
40-
<td>from</td>
41-
<td><em>Optional parameter</em>.<br/>Specifies the language of the input text. Find which languages are available to translate from by looking up <a href="./v3-0-languages.md">supported languages</a> using the <code>translation</code> scope. If the <code>from</code> parameter is not specified, automatic language detection is applied to determine the source language. <br/><br/>You must use the <code>from</code> parameter rather than autodetection when using the <a href="https://docs.microsoft.com/azure/cognitive-services/translator/dynamic-dictionary">dynamic dictionary</a> feature.</td>
42-
</tr>
4341
<tr>
4442
<td>to</td>
4543
<td><em>Required parameter</em>.<br/>Specifies the language of the output text. The target language must be one of the <a href="./v3-0-languages.md">supported languages</a> included in the <code>translation</code> scope. For example, use <code>to=de</code> to translate to German.<br/>It's possible to translate to multiple languages simultaneously by repeating the parameter in the query string. For example, use <code>to=de&to=it</code> to translate to German and Italian.</td>
4644
</tr>
45+
</table>
46+
47+
### Optional parameters
48+
49+
<table width="100%">
50+
<th width="20%">Query parameter</th>
51+
<th>Description</th>
52+
<tr>
53+
<td>from</td>
54+
<td><em>Optional parameter</em>.<br/>Specifies the language of the input text. Find which languages are available to translate from by looking up <a href="./v3-0-languages.md">supported languages</a> using the <code>translation</code> scope. If the <code>from</code> parameter is not specified, automatic language detection is applied to determine the source language. <br/><br/>You must use the <code>from</code> parameter rather than autodetection when using the <a href="https://docs.microsoft.com/azure/cognitive-services/translator/dynamic-dictionary">dynamic dictionary</a> feature.</td>
55+
</tr>
4756
<tr>
4857
<td>textType</td>
4958
<td><em>Optional parameter</em>.<br/>Defines whether the text being translated is plain text or HTML text. Any HTML needs to be a well-formed, complete element. Possible values are: <code>plain</code> (default) or <code>html</code>.</td>

articles/data-lake-analytics/understand-spark-code-concepts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,13 +138,13 @@ In Spark, NULL indicates that the value is unknown. A Spark NULL value is differ
138138

139139
This behavior is different from U-SQL, which follows C# semantics where `null` is different from any value but equal to itself.
140140

141-
Thus a SparkSQL `SELECT` statement that uses `WHERE column_name = NULL` returns zero rows even if there are NULL values in `column_name`, while in U-SQL, it would return the rows where `column_name` is set to `null`. Similarly, A Spark `SELECT` statement that uses `WHERE column_name != NULL` returns zero rows even if there are non-null values in `column_name`, while in U-SQL, it would return the rows that have non-null. Thus, if you want the U-SQL null-check semantics, you should use [isnull](https://spark.apache.org/docs/2.3.0/api/sql/index.html#isnull)) and [isnotnull](https://spark.apache.org/docs/2.3.0/api/sql/index.html#isnotnull) respectively (or their DSL equivalent).
141+
Thus a SparkSQL `SELECT` statement that uses `WHERE column_name = NULL` returns zero rows even if there are NULL values in `column_name`, while in U-SQL, it would return the rows where `column_name` is set to `null`. Similarly, A Spark `SELECT` statement that uses `WHERE column_name != NULL` returns zero rows even if there are non-null values in `column_name`, while in U-SQL, it would return the rows that have non-null. Thus, if you want the U-SQL null-check semantics, you should use [isnull](https://spark.apache.org/docs/2.3.0/api/sql/index.html#isnull) and [isnotnull](https://spark.apache.org/docs/2.3.0/api/sql/index.html#isnotnull) respectively (or their DSL equivalent).
142142

143143
## Transform U-SQL catalog objects
144144

145145
One major difference is that U-SQL Scripts can make use of its catalog objects, many of which have no direct Spark equivalent.
146146

147-
Spark does provide support for the Hive Meta store concepts, mainly databases, and tables, so you can map U-SQL databases and schemas to Hive databases, and U-SQL tables to Spark tables (see [Moving data stored in U-SQL tables](understand-spark-data-formats.md#move-data-stored-in-u-sql-tables)), but it has no support for views, table-valued functions (TVFs), stored procedures, U-SQL assemblies, external data sources etc.
147+
Spark does provide support for the Hive Meta store concepts, mainly databases, and tables, so you can map U-SQL databases and schemas to Hive databases, and U-SQL tables to Spark tables (see [Moving data stored in U-SQL tables](understand-spark-data-formats.md#move-data-stored-in-u-sql-tables), but it has no support for views, table-valued functions (TVFs), stored procedures, U-SQL assemblies, external data sources etc.
148148

149149
The U-SQL code objects such as views, TVFs, stored procedures, and assemblies can be modeled through code functions and libraries in Spark and referenced using the host language's function and procedural abstraction mechanisms (for example, through importing Python modules or referencing Scala functions).
150150

articles/virtual-network/tutorial-restrict-network-access-to-resources-cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: Restrict network access to PaaS resources - Azure CLI | Microsoft Docs
2+
title: Restrict network access to PaaS resources - Azure CLI
33
description: In this article, you learn how to limit and restrict network access to Azure resources, such as Azure Storage and Azure SQL Database, with virtual network service endpoints using the Azure CLI.
44
services: virtual-network
55
documentationcenter: virtual-network
66
author: KumudD
7-
manager: twooley
7+
manager: mtillman
88
editor: ''
99
tags: azure-resource-manager
1010
Customer intent: I want only resources in a virtual network subnet to access an Azure PaaS resource, such as an Azure Storage account.

articles/virtual-network/tutorial-restrict-network-access-to-resources-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: Restrict network access to PaaS resources - Azure PowerShell | Microsoft Docs
2+
title: Restrict network access to PaaS resources - Azure PowerShell
33
description: In this article, you learn how to limit and restrict network access to Azure resources, such as Azure Storage and Azure SQL Database, with virtual network service endpoints using Azure PowerShell.
44
services: virtual-network
55
documentationcenter: virtual-network
66
author: KumudD
7-
manager: twooley
7+
manager: mtillman
88
editor: ''
99
tags: azure-resource-manager
1010
Customer intent: I want only resources in a virtual network subnet to access an Azure PaaS resource, such as an Azure Storage account.

articles/virtual-network/tutorial-restrict-network-access-to-resources.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: Restrict network access to PaaS resources - tutorial - Azure portal | Microsoft Docs
2+
title: Restrict access to PaaS resources - tutorial - Azure portal
33
description: In this tutorial, you learn how to limit and restrict network access to Azure resources, such as Azure Storage and Azure SQL Database, with virtual network service endpoints using the Azure portal.
44
services: virtual-network
55
documentationcenter: virtual-network
66
author: KumudD
7-
manager: twooley
7+
manager: mtillman
88
editor: ''
99
tags: azure-resource-manager
1010
Customer intent: I want only resources in a virtual network subnet to access an Azure PaaS resource, such as an Azure Storage account.

articles/virtual-network/tutorial-tap-virtual-network-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Create, change, or delete a virtual network TAP - Azure CLI | Microsoft Docs
2+
title: Create, change, or delete a VNet TAP - Azure CLI
33
description: Learn how to create, change, or delete a virtual network TAP using the Azure CLI.
44
services: virtual-network
55
documentationcenter: na

articles/virtual-network/virtual-network-create-udr-classic-ps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Control routing in an Azure Virtual Network - PowerShell - Classic | Microsoft Docs
2+
title: Control routing in an Azure VNet - PowerShell - Classic
33
description: Learn how to control routing in VNets using PowerShell | Classic
44
services: virtual-network
55
documentationcenter: na

0 commit comments

Comments
 (0)