Skip to content

Commit 5a371b3

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into user/v-yokarp/ongoing-changes
2 parents f664e48 + de0c3d7 commit 5a371b3

12 files changed

+826
-571
lines changed

articles/active-directory-b2c/claim-resolver-overview.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: celestedg
99
ms.service: active-directory
1010
ms.workload: identity
1111
ms.topic: reference
12-
ms.date: 02/13/2020
12+
ms.date: 02/17/2020
1313
ms.author: marsma
1414
ms.subservice: B2C
1515
---
@@ -100,6 +100,18 @@ Any parameter name included as part of an OIDC or OAuth2 request can be mapped t
100100
| ----- | ----------------------- | --------|
101101
| {oauth2:access_token} | The access token. | N/A |
102102

103+
104+
### SAML
105+
106+
| Claim | Description | Example |
107+
| ----- | ----------- | --------|
108+
| {SAML:AuthnContextClassReferences} | The `AuthnContextClassRef` element value, from the SAML request. | urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport |
109+
| {SAML:NameIdPolicyFormat} | The `Format` attribute, from the `NameIDPolicy` element of the SAML request. | urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress |
110+
| {SAML:Issuer} | The SAML `Issuer` element value of the SAML request.| https://contoso.com |
111+
| {SAML:AllowCreate} | The `AllowCreate` attribute value, from the `NameIDPolicy` element of the SAML request. | True |
112+
| {SAML:ForceAuthn} | The `ForceAuthN` attribute value, from the `AuthnRequest` element of the SAML request. | True |
113+
| {SAML:ProviderName} | The `ProviderName` attribute value, from the `AuthnRequest` element of the SAML request.| Contoso.com |
114+
103115
## Using claim resolvers
104116

105117
You can use claims resolvers with the following elements:
@@ -228,4 +240,4 @@ In a [Relying party](relyingparty.md) policy technical profile, you may want to
228240
<SubjectNamingInfo ClaimType="sub" />
229241
</TechnicalProfile>
230242
</RelyingParty>
231-
```
243+
```

articles/azure-functions/functions-bindings-storage-table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Use the Azure Table storage input binding to read a table in an Azure Storage ac
3535

3636
### One entity
3737

38-
The following example shows a [C# function](functions-dotnet-class-library.md) that reads a single table row.
38+
The following example shows a [C# function](functions-dotnet-class-library.md) that reads a single table row. For every record inserted in the table, the function will be triggered.
3939

4040
The row key value "{queueTrigger}" indicates that the row key comes from the queue message string.
4141

articles/azure-functions/functions-host-json.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ The following sample *host.json* file for version 2.x+ has all possible options
6464
"isEnabled": true,
6565
"maxTelemetryItemsPerSecond" : 20,
6666
"evaluationInterval": "01:00:00",
67-
"initialSamplingPercentage": 1.0,
67+
"initialSamplingPercentage": 100.0,
6868
"samplingPercentageIncreaseTimeout" : "00:00:01",
6969
"samplingPercentageDecreaseTimeout" : "00:00:01",
7070
"minSamplingPercentage": 0.1,
71-
"maxSamplingPercentage": 0.1,
71+
"maxSamplingPercentage": 100.0,
7272
"movingAverageRatio": 1.0,
7373
"excludedTypes" : "Dependency;Event",
7474
"includedTypes" : "PageView;Trace"

articles/azure-monitor/platform/alerts-common-schema-definitions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Understanding the common alert schema definitions for Azure Monitor
44
ms.service: azure-monitor
55
ms.subservice: alerts
66
ms.topic: conceptual
7-
author: anantr
7+
author: ofirmanor
88
ms.author: robb
99
ms.date: 03/14/2019
1010

@@ -147,7 +147,7 @@ Any alert instance describes the resource that was affected and the cause of the
147147
### Log alerts
148148

149149
> [!NOTE]
150-
> For log alerts that have a custom email subject and/or JSON payload defined, enabling the common schema reverts email subject and/or payload schema to the one described as follows. Alerts with the common schema enabled have an upper size limit of 256 KB per alert. Search results aren't embedded in the log alerts payload if they cause the alert size to cross this threshold. You can determine this by checking the flag `IncludedSearchResults`. When the search results aren't included, you should use the search query in conjunction with the [Log Analytics API](https://docs.microsoft.com/rest/api/loganalytics/query/get).
150+
> For log alerts that have a custom email subject and/or JSON payload defined, enabling the common schema reverts email subject and/or payload schema to the one described as follows. Alerts with the common schema enabled have an upper size limit of 256 KB per alert. Search results aren't embedded in the log alerts payload if they cause the alert size to cross this threshold. You can determine this by checking the flag `IncludeSearchResults`. When the search results aren't included, you should use the search query in conjunction with the [Log Analytics API](https://docs.microsoft.com/rest/api/loganalytics/query/get).
151151
152152
#### `monitoringService` = `Log Analytics`
153153

@@ -210,7 +210,7 @@ Any alert instance describes the resource that was affected and the cause of the
210210
}
211211
]
212212
},
213-
"IncludedSearchResults": "True",
213+
"IncludeSearchResults": "True",
214214
"AlertType": "Number of results"
215215
}
216216
}
@@ -273,7 +273,7 @@ Any alert instance describes the resource that was affected and the cause of the
273273
}
274274
]
275275
},
276-
"IncludedSearchResults": "True",
276+
"IncludeSearchResults": "True",
277277
"AlertType": "Number of results"
278278
}
279279
}

articles/azure-monitor/platform/alerts-metric-create-templates.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: harelbr
55
services: azure-monitor
66
ms.service: azure-monitor
77
ms.topic: conceptual
8-
ms.date: 1/14/2020
8+
ms.date: 2/17/2020
99
ms.author: harelbr
1010
ms.subservice: alerts
1111
---
@@ -101,8 +101,8 @@ Save the json below as simplestaticmetricalert.json for the purpose of this walk
101101
}
102102
},
103103
"threshold": {
104-
"type": "double",
105-
"defaultValue": 0,
104+
"type": "string",
105+
"defaultValue": "0",
106106
"metadata": {
107107
"description": "The threshold value at which the alert is activated."
108108
}
@@ -1651,8 +1651,8 @@ Save the json below as all-vms-in-resource-group-static.json for the purpose of
16511651
}
16521652
},
16531653
"threshold": {
1654-
"type": "double",
1655-
"defaultValue": 0,
1654+
"type": "string",
1655+
"defaultValue": "0",
16561656
"metadata": {
16571657
"description": "The threshold value at which the alert is activated."
16581658
}
@@ -2298,8 +2298,8 @@ Save the json below as all-vms-in-subscription-static.json for the purpose of th
22982298
}
22992299
},
23002300
"threshold": {
2301-
"type": "double",
2302-
"defaultValue": 0,
2301+
"type": "string",
2302+
"defaultValue": "0",
23032303
"metadata": {
23042304
"description": "The threshold value at which the alert is activated."
23052305
}
@@ -2940,8 +2940,8 @@ Save the json below as list-of-vms-static.json for the purpose of this walk-thro
29402940
}
29412941
},
29422942
"threshold": {
2943-
"type": "double",
2944-
"defaultValue": 0,
2943+
"type": "string",
2944+
"defaultValue": "0",
29452945
"metadata": {
29462946
"description": "The threshold value at which the alert is activated."
29472947
}

articles/data-factory/azure-integration-runtime-ip-addresses.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ Allow traffic from the IP addresses listed for the Azure Integration runtime in
5151
| | West Central US | 52.150.137.128/25,</br>52.150.136.192/26,</br>13.71.199.0/28 |
5252
| | West US | 40.82.250.0/23,</br>40.82.249.64/26,</br>13.86.219.208/28 |
5353
| | West US2 | 20.42.132.0/23,</br>20.42.129.64/26,</br>13.66.143.128/28 |
54+
| | US Gov Virginia | 52.127.45.96/28,</br>52.127.48.128/25,</br>52.127.49.0/26 |
5455

5556
## Known issue with Azure Storage
5657

0 commit comments

Comments
 (0)