Skip to content

Commit 330d256

Browse files
authored
Merge pull request #193911 from MicrosoftDocs/main
4/04 AM Publish
2 parents 2f94583 + b402344 commit 330d256

19 files changed

+47
-53
lines changed

articles/application-gateway/custom-error.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: application-gateway
55
author: vhorne
66
ms.service: application-gateway
77
ms.topic: how-to
8-
ms.date: 11/16/2019
8+
ms.date: 04/04/2022
99
ms.author: victorh
1010
ms.custom: devx-track-azurepowershell
1111
---
@@ -44,18 +44,16 @@ After you specify an error page, the application gateway downloads it from the s
4444

4545
1. Navigate to Application Gateway in the portal and choose an application gateway.
4646

47-
![Screenshot shows the Overview page for an application gateway.](media/custom-error/ag-overview.png)
48-
2. Click **Listeners** and navigate to a particular listener where you want to specify an error page.
47+
2. Select **Listeners** and navigate to a particular listener where you want to specify an error page.
4948

50-
![Application Gateway listeners](media/custom-error/ag-listener.png)
5149
3. Configure a custom error page for a 403 WAF error or a 502 maintenance page at the listener level.
5250

5351
> [!NOTE]
5452
> Creating global level custom error pages from the Azure portal is currently not supported.
5553
56-
4. Specify a publicly accessible blob URL for a given error status code and click **Save**. The Application Gateway is now configured with the custom error page.
54+
4. Under **Error page url**, select **Yes**, and then configure a publicly accessible blob URL for a given error status code. Select **Save**. The Application Gateway is now configured with the custom error page.
5755

58-
![Application Gateway error codes](media/custom-error/ag-error-codes.png)
56+
![Screenshot of Application Gateway custom error page.](media/custom-error/ag-error-codes.png)
5957

6058
## Azure PowerShell configuration
6159

80.7 KB
Loading

articles/azure-sql/database/maintenance-window.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Once the maintenance window selection is made and service configuration complete
5151
5252
## Advance notifications
5353

54-
Maintenance notifications can be configured to alert you of upcoming planned maintenance events for your Azure SQL Database. The alerts arrive 24 hours in advance, at the time of maintenance, and when the maintenance is complete. For more information, see [Advance Notifications](advance-notifications.md).
54+
Maintenance notifications can be configured to alert you of upcoming planned maintenance events for your Azure SQL Database and Azure SQL Managed Instance. The alerts arrive 24 hours in advance, at the time of maintenance, and when the maintenance is complete. For more information, see [Advance Notifications](advance-notifications.md).
5555

5656
## Feature availability
5757

@@ -206,5 +206,5 @@ For the full reference of the sample queries and how to use them across tools li
206206

207207
* [Maintenance window FAQ](maintenance-window-faq.yml)
208208
* [Azure SQL Database](sql-database-paas-overview.md)
209-
* [SQL managed instance](../managed-instance/sql-managed-instance-paas-overview.md)
209+
* [Azure SQL Managed Instance](../managed-instance/sql-managed-instance-paas-overview.md)
210210
* [Plan for Azure maintenance events in Azure SQL Database and Azure SQL Managed Instance](planned-maintenance.md)

articles/batch/virtual-file-mount.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ new PoolAddParameter
428428
RelativeMountPath = "cifsmountpoint",
429429
Source = "source",
430430
Password = "StorageAccountKey",
431-
MountOptions = "-o vers=3.0,dir_mode=0777,file_mode=0777,serverino"
431+
MountOptions = "-o vers=3.0,dir_mode=0777,file_mode=0777,serverino,domain=MyDomain"
432432
},
433433
}
434434
}

articles/search/query-lucene-syntax.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: bevloh
88
ms.author: beloh
99
ms.service: cognitive-search
1010
ms.topic: conceptual
11-
ms.date: 06/08/2021
11+
ms.date: 04/04/2022
1212
---
1313

1414
# Lucene query syntax in Azure Cognitive Search
@@ -70,9 +70,11 @@ You can embed Boolean operators in a query string to improve the precision of a
7070

7171
|Text operator | Character | Example | Usage |
7272
|--------------|----------- |--------|-------|
73-
| AND | `+` | `wifi AND luxury` | Specifies terms that a match must contain. In the example, the query engine will look for documents containing both `wifi` and `luxury`. The plus character (`+`) can also be used directly in front of a term to make it reuqired. For example, `+wifi +luxury` stipulates that both terms must appear somewhere in the field of a single document.|
74-
| OR | | `wifi OR luxury` | Finds a match when either term is found. In the example, the query engine will return match on documents containing either `wifi` or `luxury` or both. Because OR is the default conjunction operator, you could also leave it out, such that `wifi luxury` is the equivalent of `wifi OR luxury`.|
75-
| NOT | `!`, `-` | `wifi –luxury` | Returns matches on documents that exclude the term. For example, `wifi –luxury` will search for documents that have the `wifi` term but not `luxury`. <br/><br/>The `searchMode` parameter on a query request controls whether a term with the NOT operator is ANDed or ORed with other terms in the query (assuming there's no boolean operators on the other terms). Valid values include `any` or `all`. <br/><br/>`searchMode=any` increases the recall of queries by including more results, and by default `-` will be interpreted as "OR NOT". For example, `wifi -luxury` will match documents that either contain the term `wifi` or those that don't contain the term `luxury`. <br/><br/>`searchMode=all` increases the precision of queries by including fewer results, and by default - will be interpreted as "AND NOT". For example, `wifi -luxury` will match documents that contain the term `wifi` and don't contain the term "luxury". This is arguably a more intuitive behavior for the `-` operator. Therefore, you should consider using `searchMode=all` instead of `searchMode=any` if you want to optimize searches for precision instead of recall, *and* Your users frequently use the `-` operator in searches.<br/><br/>When deciding on a `searchMode` setting, consider the user interaction patterns for queries in various applications. Users who are searching for information are more likely to include an operator in a query, as opposed to e-commerce sites that have more built-in navigation structures. |
73+
| AND | `+` | `wifi AND luxury` | Specifies terms that a match must contain. In the example, the query engine will look for documents containing both `wifi` and `luxury`. The plus character (`+`) can also be used directly in front of a term to make it required. For example, `+wifi +luxury` stipulates that both terms must appear somewhere in the field of a single document.|
74+
| OR | (none) <sup>1</sup> | `wifi OR luxury` | Finds a match when either term is found. In the example, the query engine will return match on documents containing either `wifi` or `luxury` or both. Because OR is the default conjunction operator, you could also leave it out, such that `wifi luxury` is the equivalent of `wifi OR luxury`.|
75+
| NOT | `!`, `-` | `wifi –luxury` | Returns matches on documents that exclude the term. For example, `wifi –luxury` will search for documents that have the `wifi` term but not `luxury`. </p>The `searchMode` parameter on a query request controls whether a term with the NOT operator is ANDed or ORed with other terms in the query (assuming there's no boolean operators on the other terms). Valid values include `any` or `all`. </p>`searchMode=any` increases the recall of queries by including more results, and by default `-` will be interpreted as "OR NOT". For example, `wifi -luxury` will match documents that either contain the term `wifi` or those that don't contain the term `luxury`. </p>`searchMode=all` increases the precision of queries by including fewer results, and by default - will be interpreted as "AND NOT". For example, `wifi -luxury` will match documents that contain the term `wifi` and don't contain the term "luxury". This is arguably a more intuitive behavior for the `-` operator. Therefore, you should consider using `searchMode=all` instead of `searchMode=any` if you want to optimize searches for precision instead of recall, *and* Your users frequently use the `-` operator in searches.</p>When deciding on a `searchMode` setting, consider the user interaction patterns for queries in various applications. Users who are searching for information are more likely to include an operator in a query, as opposed to e-commerce sites that have more built-in navigation structures. |
76+
77+
<sup>1</sup> The `|` character is not supported for OR operations.
7678

7779
## <a name="bkmk_fields"></a> Fielded search
7880

articles/static-web-apps/TOC.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@
8888
href: password-protection.md
8989
- name: Set up local development
9090
href: local-development.md
91+
displayName: swa cli
9192
- name: Configure app settings
9293
href: application-settings.md
9394
- name: Configure front-end frameworks and libraries

articles/storage/blobs/assign-azure-role-data-access.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ You can also assign an Azure Resource Manager role that provides additional perm
4848

4949
> [!NOTE]
5050
> Prior to assigning yourself a role for data access, you will be able to access data in your storage account via the Azure portal because the Azure portal can also use the account key for data access. For more information, see [Choose how to authorize access to blob data in the Azure portal](../blobs/authorize-data-operations-portal.md).
51-
>
52-
> The preview version of Storage Explorer in the Azure portal does not support using Azure AD credentials to view and modify blob data. Storage Explorer in the Azure portal always uses the account keys to access data. To use Storage Explorer in the Azure portal, you must be assigned a role that includes **Microsoft.Storage/storageAccounts/listkeys/action**.
5351
5452
# [PowerShell](#tab/powershell)
5553

articles/storage/blobs/authorize-data-operations-portal.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,6 @@ For information about the built-in roles that support access to blob data, see [
5454

5555
Custom roles can support different combinations of the same permissions provided by the built-in roles. For more information about creating Azure custom roles, see [Azure custom roles](../../role-based-access-control/custom-roles.md) and [Understand role definitions for Azure resources](../../role-based-access-control/role-definitions.md).
5656

57-
> [!NOTE]
58-
> The preview version of Storage Explorer in the Azure portal does not support using Azure AD credentials to view and modify blob data. Storage Explorer in the Azure portal always uses the account keys to access data. To use Storage Explorer in the Azure portal, you must be assigned a role that includes **Microsoft.Storage/storageAccounts/listkeys/action**.
59-
6057
## Navigate to blobs in the Azure portal
6158

6259
To view blob data in the portal, navigate to the **Overview** for your storage account, and click on the links for **Blobs**. Alternatively you can navigate to the **Containers** section in the menu.

articles/storage/blobs/storage-quickstart-blobs-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: stevenmatthew
77
ms.service: storage
88
ms.subservice: blobs
99
ms.topic: quickstart
10-
ms.date: 10/25/2021
10+
ms.date: 04/04/2022
1111
ms.author: shaas
1212
ms.custom: mode-ui
1313
---

articles/storage/common/authorize-data-access.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The following table describes the options that Azure Storage offers for authoriz
2424
| Azure Files (SMB) | [Supported](/rest/api/storageservices/authorize-with-shared-key/) | Not supported | [Supported, only with AAD Domain Services](../files/storage-files-active-directory-overview.md) | [Supported, credentials must be synced to Azure AD](../files/storage-files-active-directory-overview.md) | Not supported |
2525
| Azure Files (REST) | [Supported](/rest/api/storageservices/authorize-with-shared-key/) | [Supported](storage-sas-overview.md) | Not supported | Not supported | Not supported |
2626
| Azure Queues | [Supported](/rest/api/storageservices/authorize-with-shared-key/) | [Supported](storage-sas-overview.md) | [Supported](../queues/authorize-access-azure-active-directory.md) | Not Supported | Not supported |
27-
| Azure Tables | [Supported](/rest/api/storageservices/authorize-with-shared-key/) | [Supported](storage-sas-overview.md) | [Supported](../tables/authorize-access-azure-active-directory.md) (preview) | Not supported | Not supported |
27+
| Azure Tables | [Supported](/rest/api/storageservices/authorize-with-shared-key/) | [Supported](storage-sas-overview.md) | [Supported](../tables/authorize-access-azure-active-directory.md) | Not supported | Not supported |
2828

2929
Each authorization option is briefly described below:
3030

0 commit comments

Comments
 (0)