Skip to content

Commit 57669c5

Browse files
authored
Merge pull request #103511 from MicrosoftDocs/master
Merge Master to Live, 4 AM
2 parents 5e46ec9 + 4ee9ff8 commit 57669c5

File tree

81 files changed

+1820
-779
lines changed

Some content is hidden

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

81 files changed

+1820
-779
lines changed

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28465,6 +28465,11 @@
2846528465
"redirect_url": "/azure/data-factory/v1/data-factory-web-table-connector",
2846628466
"redirect_document_id": true
2846728467
},
28468+
{
28469+
"source_path": "articles/data-factory/concepts-data-flow-json.md",
28470+
"redirect_url": "/azure/data-factory/format-json",
28471+
"redirect_document_id": true
28472+
},
2846828473
{
2846928474
"source_path": "articles/data-lake-store/data-lake-store-authenticate-using-active-directory.md",
2847028475
"redirect_url": "/azure/data-lake-store/data-lake-store-service-to-service-authenticate-using-active-directory",
186 KB
Loading

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

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Changes the case of the provided claim to lower or upper case depending on the o
8787

8888
| Item | TransformationClaimType | Data Type | Notes |
8989
| ---- | ----------------------- | --------- | ----- |
90-
| InputClaim | inputClaim1 | string | The ClaimType that be changed. |
90+
| InputClaim | inputClaim1 | string | The ClaimType to be changed. |
9191
| InputParameter | toCase | string | One of the following values: `LOWER` or `UPPER`. |
9292
| OutputClaim | outputClaim | string | The ClaimType that is produced after this claims transformation has been invoked. |
9393

@@ -322,7 +322,7 @@ Use this claims transformation to format any string with one parameter {0}. The
322322

323323
## FormatStringMultipleClaims
324324

325-
Format two claims according to the provided format string. This transformation uses the C# **String.Format** method.
325+
Format two claims according to the provided format string. This transformation uses the C# `String.Format` method.
326326

327327
| Item | TransformationClaimType | Data Type | Notes |
328328
| ---- | ----------------------- | --------- | ----- |
@@ -371,9 +371,11 @@ To use the GetLocalizedStringsTransformation claims transformation:
371371
1. Define a [localization string](localization.md) and associate it with a [self-asserted-technical-profile](self-asserted-technical-profile.md).
372372
1. The `ElementType` of the `LocalizedString` element must set to `GetLocalizedStringsTransformationClaimType`.
373373
1. The `StringId` is a unique identifier that you define, and use it later in your claims transformation.
374-
1. In the claims transformation specify the list of claims to be set with the localized string. The `ClaimTypeReferenceId` is a reference to a ClaimType already defined in the ClaimsSchema section in the policy. The `TransformationClaimType` is the name of the localized string as defined in the `StringId` of the `LocalizedString` element.
374+
1. In the claims transformation, specify the list of claims to be set with the localized string. The `ClaimTypeReferenceId` is a reference to a ClaimType already defined in the ClaimsSchema section in the policy. The `TransformationClaimType` is the name of the localized string as defined in the `StringId` of the `LocalizedString` element.
375375
1. In a [self-asserted technical profile](self-asserted-technical-profile.md), or a [display control](display-controls.md) input or output claims transformation, make a reference to your claims transformation.
376376

377+
![GetLocalizedStringsTransformation](./media/string-transformations/get-localized-strings-transformation.png)
378+
377379
The following example looks up the email subject, body, your code message, and the signature of the email, from localized strings. These claims later used by custom email verification template.
378380

379381
Define localized strings for English (default) and Spanish.
@@ -404,7 +406,7 @@ Define localized strings for English (default) and Spanish.
404406
</Localization>
405407
```
406408

407-
The claims transformation sets the value of the claim type *subject* with the value of the string id *email_subject*.
409+
The claims transformation sets the value of the claim type *subject* with the value of the `StringId` *email_subject*.
408410

409411
```XML
410412
<ClaimsTransformation Id="GetLocalizedStringsForEmail" TransformationMethod="GetLocalizedStringsTransformation">
@@ -478,7 +480,7 @@ Look up a claim value from a list of values based on the value of another claim.
478480
| InputClaim | inputParameterId | string | The claim that contains the lookup value |
479481
| InputParameter | |string | Collection of inputParameters. |
480482
| InputParameter | errorOnFailedLookup | boolean | Controlling whether an error is returned when no matching lookup. |
481-
| OutputClaim | inputParameterId | string | The ClaimTypes that will be produced after this claims transformation has been invoked. The value of the matching Id. |
483+
| OutputClaim | inputParameterId | string | The ClaimTypes that will be produced after this claims transformation has been invoked. The value of the matching `Id`. |
482484

483485
The following example looks up the domain name in one of the inputParameters collections. The claims transformation looks up the domain name in the identifier and returns its value (an application ID).
484486

@@ -543,7 +545,7 @@ Gets the domain portion of an email address.
543545
| InputClaim | emailAddress | string | The ClaimType that contains the email address. |
544546
| OutputClaim | domain | string | The ClaimType that is produced after this claims transformation has been invoked - the domain. |
545547

546-
Use this claims transformation to parse the domain name after the @ symbol of the user. This can be helpful in removing Personally identifiable information (PII) from audit data. The following claims transformation demonstrates how to parse the domain name from an **email** claim.
548+
Use this claims transformation to parse the domain name after the @ symbol of the user. The following claims transformation demonstrates how to parse the domain name from an **email** claim.
547549

548550
```XML
549551
<ClaimsTransformation Id="SetDomainName" TransformationMethod="ParseDomain">
@@ -745,7 +747,7 @@ Extracts parts of a string claim type, beginning at the character at the specifi
745747
| InputClaim | inputClaim | string | The claim type, which contains the string. |
746748
| InputParameter | startIndex | int | The zero-based starting character position of a substring in this instance. |
747749
| InputParameter | length | int | The number of characters in the substring. |
748-
| OutputClaim | outputClaim | boolean | A string that is equivalent to the substring of length length that begins at startIndex in this instance, or Empty if startIndex is equal to the length of this instance and length is zero. |
750+
| OutputClaim | outputClaim | boolean | A string that is equivalent to the substring of length that begins at startIndex in this instance, or Empty if startIndex is equal to the length of this instance and length is zero. |
749751

750752
For example, get the phone number country prefix.
751753

@@ -822,7 +824,7 @@ Concatenates the elements of a specified string collection claim type, using the
822824
| InputParameter | delimiter | string | The string to use as a separator, such as comma `,`. |
823825
| OutputClaim | outputClaim | string | A string that consists of the members of the `inputClaim` string collection, delimited by the `delimiter` input parameter. |
824826

825-
The following example takes a string collection of user roles, and convert it to a comma delimiter string. You can user this method to store a string collection in Azure AD user account. Later, when you read the account from the directory, use the `StringSplit` to convert the comma delimiter string back to string collection.
827+
The following example takes a string collection of user roles, and converts it to a comma delimiter string. You can use this method to store a string collection in Azure AD user account. Later, when you read the account from the directory, use the `StringSplit` to convert the comma delimiter string back to string collection.
826828

827829
```XML
828830
<ClaimsTransformation Id="ConvertRolesStringCollectionToCommaDelimiterString" TransformationMethod="StringJoin">
@@ -858,7 +860,7 @@ Returns a string array that contains the substrings in this instance that are de
858860
| InputParameter | delimiter | string | The string to use as a separator, such as comma `,`. |
859861
| OutputClaim | outputClaim | stringCollection | A string collection whose elements contain the substrings in this string that are delimited by the `delimiter` input parameter. |
860862

861-
The following example takes a comma delimiter string of user roles, and convert it to a string collection.
863+
The following example takes a comma delimiter string of user roles, and converts it to a string collection.
862864

863865
```XML
864866
<ClaimsTransformation Id="ConvertRolesToStringCollection" TransformationMethod="StringSplit">

articles/active-directory/managed-identities-azure-resources/how-to-view-managed-identity-service-principal-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ In this article, you learn how to view the service principal of a managed identi
3838
This procedure demonstrates how to view the service principal of a VM with system assigned identity enabled (the same steps apply for an application).
3939

4040
1. Click **Azure Active Directory** and then click **Enterprise applications**.
41-
2. Under **Application Type**, choose **All Applications**.
41+
2. Under **Application Type**, choose **All Applications** and then click **Apply**.
4242
3. In the search filter box, type the name of the VM or application that has managed identity enabled or choose it from the list presented.
4343

4444
![View managed identity service principal in portal](./media/how-to-view-managed-identity-service-principal-portal/view-managed-identity-service-principal-portal.png)

0 commit comments

Comments
 (0)