Skip to content

Commit 8db6d45

Browse files
committed
2 parents d373160 + 09240a5 commit 8db6d45

File tree

417 files changed

+4179
-2633
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

417 files changed

+4179
-2633
lines changed

.openpublishing.redirection.json

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6762,7 +6762,7 @@
67626762
},
67636763
{
67646764
"source_path": "articles/scheduler/get-started-portal.md",
6765-
"redirect_url": "/azure/scheduler/migrate-from-scheduler-to-logic-apps",
6765+
"redirect_url": "/azure/scheduler/migrate-from-scheduler-to-logic-apps"
67666766
},
67676767
{
67686768
"source_path": "articles/connectors/connectors-create-api-googledrive.md",
@@ -16689,6 +16689,11 @@
1668916689
"redirect_url": "https://docs.microsoft.com/rest/api/searchservice/add-scoring-profiles-to-a-search-index",
1669016690
"redirect_document_id": false
1669116691
},
16692+
{
16693+
"source_path": "articles/service-bus/index.md",
16694+
"redirect_url": "/azure/service-bus-messaging/index",
16695+
"redirect_document_id": false
16696+
},
1669216697
{
1669316698
"source_path": "articles/service-bus-messaging/service-bus-role-based-access-control.md",
1669416699
"redirect_url": "/azure/service-bus-messaging/service-bus-managed-service-identity",
@@ -41774,6 +41779,16 @@
4177441779
"redirect_url": "/azure/azure-monitor/platform/diagnostic-settings-legacy",
4177541780
"redirect_document_id": false
4177641781
},
41782+
{
41783+
"source_path": "articles/azure-monitor/platform/flow-tutorial.md",
41784+
"redirect_url": "/azure/azure-monitor/platform/logicapp-flow-connector",
41785+
"redirect_document_id": false
41786+
},
41787+
{
41788+
"source_path": "articles/azure-monitor/app/automate-with-flow.md",
41789+
"redirect_url": "/azure/azure-monitor/platform/logicapp-flow-connector",
41790+
"redirect_document_id": false
41791+
},
4177741792
{
4177841793
"source_path": "articles/azure-monitor/platform/azure-storage-iis-table.md",
4177941794
"redirect_url": "/azure/azure-monitor/platform/diagnostics-extension-logs",
@@ -41799,6 +41814,16 @@
4179941814
"redirect_url": "/azure/azure-monitor/log-query/query-optimization",
4180041815
"redirect_document_id": false
4180141816
},
41817+
{
41818+
"source_path": "articles/azure-monitor/insights/vminsights-known-issues.md",
41819+
"redirect_url": "/azure/azure-monitor/insights/vminsights-overview",
41820+
"redirect_document_id": false
41821+
},
41822+
{
41823+
"source_path": "articles/azure-monitor/log-query/vminsights-health.md",
41824+
"redirect_url": "/azure/azure-monitor/log-query/vminsights-overview",
41825+
"redirect_document_id": false
41826+
},
4180241827
{
4180341828
"source_path": "articles/machine-learning/service/how-to-automated-ml.md",
4180441829
"redirect_url": "/azure/machine-learning/service/concept-automated-ml",
@@ -49338,6 +49363,16 @@
4933849363
"source_path": "articles/cognitive-services/speech-service/how-to-migrate-from-custom-speech-service.md",
4933949364
"redirect_url": "/azure/cognitive-services/speech-service",
4934049365
"redirect_document_id": false
49366+
},
49367+
{
49368+
"source_path": "articles/media-services/latest/create-account-portal.md",
49369+
"redirect_url": "/azure/media-services/latest/create-account-howto",
49370+
"redirect_document_id": false
49371+
},
49372+
{
49373+
"source_path": "articles/media-services/latest/create-account-cli-how-to.md",
49374+
"redirect_url": "/azure/media-services/latest/create-account-howto",
49375+
"redirect_document_id": false
4934149376
}
4934249377
]
4934349378
}

articles/active-directory-b2c/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@
7474
href: custom-policy-overview.md
7575
- name: User accounts
7676
href: user-overview.md
77+
- name: User profile attributes
78+
href: user-profile-attributes.md
7779
- name: How-to guides
7880
items:
7981
- name: App integration

articles/active-directory-b2c/active-directory-technical-profile.md

Lines changed: 3 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: 03/09/2020
12+
ms.date: 03/16/2020
1313
ms.author: mimart
1414
ms.subservice: B2C
1515
---
@@ -111,6 +111,7 @@ The name of the claim is the name of the Azure AD attribute unless the **Partner
111111
## Requirements of an operation
112112

113113
- There must be exactly one **InputClaim** element in the claims bag for all Azure AD technical profiles.
114+
- The [user profile attributes article](user-profile-attributes.md) describes the supported Azure AD B2C user profile attributes you can use in the input claims, output claims, and persisted claims.
114115
- If the operation is `Write` or `DeleteClaims`, then it must also appear in a **PersistedClaims** element.
115116
- The value of the **userPrincipalName** claim must be in the format of `[email protected]`.
116117
- The **displayName** claim is required and cannot be an empty string.
@@ -250,7 +251,7 @@ The following technical profile deletes a social user account using **alternativ
250251
| ClientId | No | The client identifier for accessing the tenant as a third party. For more information, see [Use custom attributes in a custom profile edit policy](custom-policy-custom-attributes.md) |
251252
| IncludeClaimResolvingInClaimsHandling  | No | For input and output claims, specifies whether [claims resolution](claim-resolver-overview.md) is included in the technical profile. Possible values: `true`, or `false` (default). If you want to use a claims resolver in the technical profile, set this to `true`. |
252253

253-
### Error messages
254+
## Error messages
254255

255256
The following settings can be used to configure the error message displayed upon failure. The metadata should be configured in the [self-asserted](self-asserted-technical-profile.md) technical profile. The error messages can be [localized](localization.md).
256257

articles/active-directory-b2c/boolean-transformations.md

Lines changed: 2 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: 03/03/2020
12+
ms.date: 03/16/2020
1313
ms.author: mimart
1414
ms.subservice: B2C
1515
---
@@ -62,7 +62,7 @@ Checks that boolean values of two claims are equal, and throws an exception if t
6262
| inputClaim | inputClaim | boolean | The ClaimType to be asserted. |
6363
| InputParameter |valueToCompareTo | boolean | The value to compare (true or false). |
6464

65-
The **AssertBooleanClaimIsEqualToValue** claims transformation is always executed from a [validation technical profile](validation-technical-profile.md) that is called by a [self-asserted technical profile](self-asserted-technical-profile.md). The **UserMessageIfClaimsTransformationBooleanValueIsNotEqual** self-asserted technical profile metadata controls the error message that the technical profile presents to the user.
65+
The **AssertBooleanClaimIsEqualToValue** claims transformation is always executed from a [validation technical profile](validation-technical-profile.md) that is called by a [self-asserted technical profile](self-asserted-technical-profile.md). The **UserMessageIfClaimsTransformationBooleanValueIsNotEqual** self-asserted technical profile metadata controls the error message that the technical profile presents to the user. The error messages can be [localized](localization-string-ids.md#claims-transformations-error-messages).
6666

6767
![AssertStringClaimsAreEqual execution](./media/boolean-transformations/assert-execution.png)
6868

0 commit comments

Comments
 (0)