Skip to content

Commit d9ec6e7

Browse files
Merge pull request #101672 from MicrosoftDocs/master
Merge master to live, 4 AM
2 parents 5397b08 + 93c6cfa commit d9ec6e7

39 files changed

+1592
-236
lines changed

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27981,6 +27981,11 @@
2798127981
"redirect_url": "/azure/security-center/security-center-partner-integration",
2798227982
"redirect_document_id": false
2798327983
},
27984+
{
27985+
"source_path": "articles/security-center/security-center-playbooks.md",
27986+
"redirect_url": "/azure/security-center/workflow-automation",
27987+
"redirect_document_id": false
27988+
},
2798427989
{
2798527990
"source_path": "articles/security-center/security-center-compliance-rest-api.md",
2798627991
"redirect_url": "https://docs.microsoft.com/rest/api/securitycenter/compliances",

articles/active-directory/cloud-provisioning/tutorial-single-forest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You can use the environment you create in this tutorial for testing or for getti
2929

3030
### In your on-premises environment
3131

32-
1. Identity a domain-joined host server running Windows Server 2012 R2 or greater with minimum of 4 GB RAM and .NET 4.7.1+ runtime
32+
1. Identify a domain-joined host server running Windows Server 2012 R2 or greater with minimum of 4 GB RAM and .NET 4.7.1+ runtime
3333

3434
2. If there is a firewall between your servers and Azure AD, configure the following items:
3535
- Ensure that agents can make *outbound* requests to Azure AD over the following ports:

articles/azure-monitor/app/sampling.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -481,18 +481,18 @@ The accuracy of the approximation largely depends on the configured sampling per
481481

482482
The following shows the default `ApplicationInsights.config` file generated. In ASP.NET Core, the same default behavior is enabled in code. Use the [examples in the earlier section of this page](#configuring-adaptive-sampling-for-aspnet-core-applications) to change this default behavior.
483483

484-
```xml
485-
<TelemetryProcessors>
486-
<Add Type="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.AdaptiveSamplingTelemetryProcessor, Microsoft.AI.ServerTelemetryChannel">
487-
<MaxTelemetryItemsPerSecond>5</MaxTelemetryItemsPerSecond>
488-
<ExcludedTypes>Event</ExcludedTypes>
489-
</Add>
490-
<Add Type="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.AdaptiveSamplingTelemetryProcessor, Microsoft.AI.ServerTelemetryChannel">
491-
<MaxTelemetryItemsPerSecond>5</MaxTelemetryItemsPerSecond>
492-
<IncludedTypes>Event</IncludedTypes>
493-
</Add>
494-
</TelemetryProcessors>
495-
```
484+
```xml
485+
<TelemetryProcessors>
486+
<Add Type="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.AdaptiveSamplingTelemetryProcessor, Microsoft.AI.ServerTelemetryChannel">
487+
<MaxTelemetryItemsPerSecond>5</MaxTelemetryItemsPerSecond>
488+
<ExcludedTypes>Event</ExcludedTypes>
489+
</Add>
490+
<Add Type="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.AdaptiveSamplingTelemetryProcessor, Microsoft.AI.ServerTelemetryChannel">
491+
<MaxTelemetryItemsPerSecond>5</MaxTelemetryItemsPerSecond>
492+
<IncludedTypes>Event</IncludedTypes>
493+
</Add>
494+
</TelemetryProcessors>
495+
```
496496

497497
*Can telemetry be sampled more than once?*
498498

@@ -530,18 +530,18 @@ The accuracy of the approximation largely depends on the configured sampling per
530530

531531
* The best way to achieve this is to write a custom [TelemetryInitializer](../../azure-monitor/app/api-filtering-sampling.md#addmodify-properties-itelemetryinitializer), which sets the `SamplingPercentage` to 100 on the telemetry item you want retained, as shown below. As initializers are guaranteed to be run before telemetry processors (including sampling), this ensures that all sampling techniques will ignore this item from any sampling considerations.
532532

533-
```csharp
534-
public class MyTelemetryInitializer : ITelemetryInitializer
535-
{
536-
public void Initialize(ITelemetry telemetry)
533+
```csharp
534+
public class MyTelemetryInitializer : ITelemetryInitializer
537535
{
538-
if(somecondition)
536+
public void Initialize(ITelemetry telemetry)
539537
{
540-
((ISupportSampling)telemetry).SamplingPercentage = 100;
538+
if(somecondition)
539+
{
540+
((ISupportSampling)telemetry).SamplingPercentage = 100;
541+
}
541542
}
542543
}
543-
}
544-
```
544+
```
545545

546546
## Older SDK versions
547547

articles/backup/backup-support-matrix-mars-agent.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ For more information, see [Supported MABS and DPM operating systems](backup-supp
9999

100100
## Backup limits
101101

102+
### Size limits
103+
102104
Azure Backup limits the size of a file or folder data source that can be backed up. The items that you back up from a single volume can't exceed the sizes summarized in this table:
103105

104106
**Operating system** | **Size limit**
@@ -109,6 +111,10 @@ Windows Server 2008 SP2| 1,700 GB
109111
Windows 8 or later| 54,400 GB
110112
Windows 7| 1,700 GB
111113

114+
### Other limitations
115+
116+
- MARS does not support protection of multiple machines with the same name to a single vault.
117+
112118
## Supported file types for backup
113119

114120
**Type** | **Support**
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
title: Find your Text Analytics resource endpoint and key - v2
3+
titleSuffix: Azure Cognitive Services
4+
description: Learn how to create a Cognitive Services Text Analytics resource.
5+
services: cognitive-services
6+
author: aahill
7+
manager: nitinme
8+
ms.service: cognitive-services
9+
ms.topic: include
10+
ms.date: 01/08/2019
11+
ms.author: aahi
12+
---
13+
> [!IMPORTANT]
14+
> To find your key and endpoint on the Azure portal:
15+
> 1. Navigate to your azure resource at https://portal.azure.com/.
16+
> 2. Click on **Quick start**, located under **Resource Management**.
17+
>
18+
> Remember to remove your credentials from your code when you're done, and never post them publicly. For production, consider using a secure way of storing and accessing your credentials. For example, [Azure key vault](https://docs.microsoft.com/azure/key-vault/key-vault-overview).

articles/cognitive-services/text-analytics/includes/find-azure-resource-info.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Find your Text Analytics resource endpoint and key
2+
title: Find your Text Analytics resource endpoint and key - v3 client library
33
titleSuffix: Azure Cognitive Services
44
description: Learn how to create a Cognitive Services Text Analytics resource.
55
services: cognitive-services
@@ -10,6 +10,7 @@ ms.topic: include
1010
ms.date: 01/14/2019
1111
ms.author: aahi
1212
---
13+
1314
> [!IMPORTANT]
1415
> Go to the resource you created to find your key and endpoint. They'll be located on the resource's **Quick start** page, under **resource management**.
1516
>

articles/cognitive-services/text-analytics/includes/quickstarts/csharp.md renamed to articles/cognitive-services/text-analytics/includes/quickstarts/v2/csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ms.author: aahi
2222

2323
### Create a Text Analytics Azure resource
2424

25-
[!INCLUDE [text-analytics-resource-creation](resource-creation.md)]
25+
[!INCLUDE [text-analytics-resource-creation](../resource-creation.md)]
2626

2727
### Create a new .NET Core application
2828

@@ -36,7 +36,7 @@ Open the *program.cs* file and add the following `using` directives:
3636

3737
In the application's `Program` class, create variables for your resource's key and endpoint.
3838

39-
[!INCLUDE [text-analytics-find-resource-information](../find-azure-resource-info.md)]
39+
[!INCLUDE [text-analytics-find-resource-information](../../find-azure-resource-info-v2.md)]
4040

4141
```csharp
4242
private static readonly string key = "<replace-with-your-text-analytics-key-here>";

articles/cognitive-services/text-analytics/includes/quickstarts/go-sdk.md renamed to articles/cognitive-services/text-analytics/includes/quickstarts/v2/go-sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.author: aahi
1717

1818
### Create a Text Analytics Azure resource
1919

20-
[!INCLUDE [text-analytics-resource-creation](resource-creation.md)]
20+
[!INCLUDE [text-analytics-resource-creation](../resource-creation.md)]
2121

2222
### Create a new Go project
2323

@@ -87,7 +87,7 @@ These code snippets show you how to do the following with the Text Analytics cli
8787

8888
In a new function, create variables for your resource's Azure endpoint and subscription key.
8989

90-
[!INCLUDE [text-analytics-find-resource-information](../find-azure-resource-info.md)]
90+
[!INCLUDE [text-analytics-find-resource-information](../../find-azure-resource-info-v2.md)]
9191

9292
Create a new [BaseClient](https://godoc.org/github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v2.1/textanalytics#New) object. Pass your key to the [autorest.NewCognitiveServicesAuthorizer()](https://godoc.org/github.com/Azure/go-autorest/autorest#NewCognitiveServicesAuthorizer) function, which will then be passed to the client's `authorizer` property.
9393

articles/cognitive-services/text-analytics/includes/quickstarts/nodejs-sdk.md renamed to articles/cognitive-services/text-analytics/includes/quickstarts/v2/nodejs-sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ms.author: aahi
1919

2020
### Create a Text Analytics Azure resource
2121

22-
[!INCLUDE [text-analytics-resource-creation](resource-creation.md)]
22+
[!INCLUDE [text-analytics-resource-creation](../resource-creation.md)]
2323

2424
### Create a new Node.js application
2525

@@ -41,7 +41,7 @@ Create a file named `index.js` and add the following libraries:
4141

4242
Create variables for your resource's Azure endpoint and subscription key.
4343

44-
[!INCLUDE [text-analytics-find-resource-information](../find-azure-resource-info.md)]
44+
[!INCLUDE [text-analytics-find-resource-information](../../find-azure-resource-info-v2.md)]
4545

4646
```javascript
4747
const subscription_key = '<paste-your-text-analytics-key-here>';

articles/cognitive-services/text-analytics/includes/quickstarts/python-sdk.md renamed to articles/cognitive-services/text-analytics/includes/quickstarts/v2/python-sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ms.author: aahi
2121

2222
### Create a Text Analytics Azure resource
2323

24-
[!INCLUDE [text-analytics-resource-creation](resource-creation.md)]
24+
[!INCLUDE [text-analytics-resource-creation](../resource-creation.md)]
2525

2626
### Install the client library
2727

@@ -39,7 +39,7 @@ Create a new Python file and import the following libraries.
3939

4040
Create variables for your resource's Azure endpoint and subscription key.
4141

42-
[!INCLUDE [text-analytics-find-resource-information](../find-azure-resource-info.md)]
42+
[!INCLUDE [text-analytics-find-resource-information](../../find-azure-resource-info-v2.md)]
4343

4444
```python
4545
subscription_key = "<paste-your-text-analytics-key-here>"

0 commit comments

Comments
 (0)