Skip to content

Commit b8cdf6c

Browse files
authored
Merge pull request #104175 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/Microsoft/azure-docs (branch master)
2 parents 9d1348f + 63c8e2e commit b8cdf6c

File tree

5 files changed

+25
-11
lines changed

5 files changed

+25
-11
lines changed

articles/api-management/api-management-sample-send-request.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@ The `response-variable-name` attribute is used to give access the returned respo
9898

9999
From the response object, you can retrieve the body and RFC 7622 tells API Management that the response must be a JSON object and must contain at least a property called `active` that is a boolean value. When `active` is true then the token is considered valid.
100100

101+
Alternatively, if the authorization server doesn't include the "active" field to indicate whether the token is valid, use a tool like Postman to determine what properties are set in a valid token. For example, if a valid token response contains a property called "expires_in", check whether this property name exists in the authorization server response this way:
102+
103+
<when condition="@(((IResponse)context.Variables["tokenstate"]).Body.As<JObject>().Property("expires_in") == null)">
104+
101105
### Reporting failure
102106
You can use a `<choose>` policy to detect if the token is invalid and if so, return a 401 response.
103107

articles/azure-monitor/app/status-monitor-v2-api-set-config.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,13 @@ In this example:
4242
- Spaces are added for readability.
4343

4444
```powershell
45-
PS C:\> Enable-ApplicationInsightsMonitoring -InstrumentationKeyMap
46-
@(@{MachineFilter='.*';AppFilter='WebAppExclude'},
47-
@{MachineFilter='.*';AppFilter='WebAppOne';InstrumentationKey='xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx1'},
48-
@{MachineFilter='.*';AppFilter='WebAppTwo';InstrumentationKey='xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx2'},
49-
@{MachineFilter='.*';AppFilter='.*';InstrumentationKey='xxxxxxxx-xxxx-xxxx-xxxx-xxxxxdefault'})
50-
45+
Enable-ApplicationInsightsMonitoring -InstrumentationKeyMap `
46+
@(@{MachineFilter='.*';AppFilter='WebAppExclude'},
47+
@{MachineFilter='.*';AppFilter='WebAppOne';InstrumentationSettings=@{InstrumentationKey='xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx1'}},
48+
@{MachineFilter='.*';AppFilter='WebAppTwo';InstrumentationSettings=@{InstrumentationKey='xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx2'}},
49+
@{MachineFilter='.*';AppFilter='.*';InstrumentationSettings=@{InstrumentationKey='xxxxxxxx-xxxx-xxxx-xxxx-xxxxxdefault'}})
5150
```
5251

53-
5452
## Parameters
5553

5654
### -InstrumentationKey

articles/cognitive-services/text-analytics/whats-new.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,20 @@ ms.author: aahi
1616

1717
The Text Analytics API is updated on an ongoing basis. To stay up-to-date with recent developments, this article provides you with information about new releases and features.
1818

19-
## Named Entity Recognition v3 public preview - February 2020
19+
## February 2020
20+
21+
### SDK support for Text Analytics API v3 Public Preview
22+
23+
As part of the [unified Azure SDK release](https://techcommunity.microsoft.com/t5/azure-sdk/january-2020-unified-azure-sdk-release/ba-p/1097290), the Text Analytics API v3 SDK is now available as a public preview for the following programming languages:
24+
* [C#](https://docs.microsoft.com/azure/cognitive-services/text-analytics/quickstarts/text-analytics-sdk?tabs=version-3&pivots=programming-language-csharp)
25+
* [Python](https://docs.microsoft.com/azure/cognitive-services/text-analytics/quickstarts/text-analytics-sdk?tabs=version-3&pivots=programming-language-python)
26+
* [JavaScript (Node.js)](https://docs.microsoft.com/azure/cognitive-services/text-analytics/quickstarts/text-analytics-sdk?tabs=version-3&pivots=programming-language-javascript)
27+
* [Java](https://docs.microsoft.com/azure/cognitive-services/text-analytics/quickstarts/text-analytics-sdk?tabs=version-3&pivots=programming-language-java)
28+
29+
> [!div class="nextstepaction"]
30+
> [Learn more about Text Analytics API v3 SDK](https://docs.microsoft.com/azure/cognitive-services/text-analytics/quickstarts/text-analytics-sdk?tabs=version-3)
31+
32+
### Named Entity Recognition v3 public preview
2033

2134
Additional entity types are now available in the Named Entity Recognition (NER) v3 public preview service as we expand the detection of general and personal information entities found in text. This update introduces [model version](how-tos/text-analytics-how-to-entity-linking.md#named-entity-recognition-versions-and-features) `2020-02-01`, which includes:
2235

articles/search/cognitive-search-working-with-skillsets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Once a document is in the enrichment pipeline, it is represented as a tree of co
4343
|SQL|/document/{column1}<br>/document/{column2}<br>…|N/A |
4444
|Cosmos DB|/document/{key1}<br>/document/{key2}<br>…|N/A|
4545

46-
As skills execute, they add new nodes to the enrichment tree. These new nodes may then be used as inputs for downstream skills, projecting to the knowledge store, or mapping to index fields. Enrichments aren't mutable: once created, nodes cannot be edited. As your skillsets get more complex, so will your enrichment tree, but not all nodes in the enrichment tree need to make it to the index or the knowledge store. You can selectively persist only a subset of the enrichments to the index or the knowledge store.
46+
As skills execute, they add new nodes to the enrichment tree. These new nodes may then be used as inputs for downstream skills, projecting to the knowledge store, or mapping to index fields. Enrichments aren't mutable: once created, nodes cannot be edited. As your skillsets get more complex, so will your enrichment tree, but not all nodes in the enrichment tree need to make it to the index or the knowledge store.
4747

4848
You can selectively persist only a subset of the enrichments to the index or the knowledge store.
4949
For the rest of this document, we will assume we are working with [hotel reviews example](https://docs.microsoft.com/azure/search/knowledge-store-connect-powerbi), but the same concepts apply to enriching documents from all other data sources.

articles/sentinel/connect-azure-security-center.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,10 @@ Azure Sentinel enables you to connect alerts from [Azure Security Center](../sec
2020

2121
## Prerequisites
2222

23-
- If you want to export alerts from Azure Security Center, you must be a contributor on the subscription whose logs you stream.
23+
- To export alerts from Azure Security Center, you must have the Security Reader role in the subscription of the logs you stream.
2424

2525
- You must have the [Azure Security Center Standard tier](../security-center/security-center-pricing.md) running on the subscription. If not, [upgrade your subscription to standard](https://azure.microsoft.com/pricing/details/security-center/).
2626

27-
- You must log in with a user that has global administrator or security administrator permissions on each subscription you want to connect.
2827

2928

3029
## Connect to Azure Security Center

0 commit comments

Comments
 (0)