You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3. Configure a custom error page for a 403 WAF error or a 502 maintenance page at the listener level.
52
50
53
51
> [!NOTE]
54
52
> Creating global level custom error pages from the Azure portal is currently not supported.
55
53
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.
Copy file name to clipboardExpand all lines: articles/azure-sql/database/maintenance-window.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ Once the maintenance window selection is made and service configuration complete
51
51
52
52
## Advance notifications
53
53
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).
55
55
56
56
## Feature availability
57
57
@@ -206,5 +206,5 @@ For the full reference of the sample queries and how to use them across tools li
Copy file name to clipboardExpand all lines: articles/search/query-lucene-syntax.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ author: bevloh
8
8
ms.author: beloh
9
9
ms.service: cognitive-search
10
10
ms.topic: conceptual
11
-
ms.date: 06/08/2021
11
+
ms.date: 04/04/2022
12
12
---
13
13
14
14
# 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
70
70
71
71
|Text operator | Character | Example | Usage |
72
72
|--------------|----------- |--------|-------|
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.
Copy file name to clipboardExpand all lines: articles/storage/blobs/assign-azure-role-data-access.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,8 +48,6 @@ You can also assign an Azure Resource Manager role that provides additional perm
48
48
49
49
> [!NOTE]
50
50
> 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**.
Copy file name to clipboardExpand all lines: articles/storage/blobs/authorize-data-operations-portal.md
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,9 +54,6 @@ For information about the built-in roles that support access to blob data, see [
54
54
55
55
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).
56
56
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
-
60
57
## Navigate to blobs in the Azure portal
61
58
62
59
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.
Copy file name to clipboardExpand all lines: articles/storage/common/authorize-data-access.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ The following table describes the options that Azure Storage offers for authoriz
24
24
| 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 |
25
25
| Azure Files (REST) |[Supported](/rest/api/storageservices/authorize-with-shared-key/)|[Supported](storage-sas-overview.md)| Not supported | Not supported | Not supported |
26
26
| 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 |
28
28
29
29
Each authorization option is briefly described below:
0 commit comments