You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -371,9 +371,11 @@ To use the GetLocalizedStringsTransformation claims transformation:
371
371
1. Define a [localization string](localization.md) and associate it with a [self-asserted-technical-profile](self-asserted-technical-profile.md).
372
372
1. The `ElementType` of the `LocalizedString` element must set to `GetLocalizedStringsTransformationClaimType`.
373
373
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.
375
375
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.
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.
378
380
379
381
Define localized strings for English (default) and Spanish.
@@ -404,7 +406,7 @@ Define localized strings for English (default) and Spanish.
404
406
</Localization>
405
407
```
406
408
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*.
@@ -478,7 +480,7 @@ Look up a claim value from a list of values based on the value of another claim.
478
480
| InputClaim | inputParameterId | string | The claim that contains the lookup value |
479
481
| InputParameter ||string | Collection of inputParameters. |
480
482
| 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`. |
482
484
483
485
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).
484
486
@@ -543,7 +545,7 @@ Gets the domain portion of an email address.
543
545
| InputClaim | emailAddress | string | The ClaimType that contains the email address. |
544
546
| OutputClaim | domain | string | The ClaimType that is produced after this claims transformation has been invoked - the domain. |
545
547
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.
@@ -745,7 +747,7 @@ Extracts parts of a string claim type, beginning at the character at the specifi
745
747
| InputClaim | inputClaim | string | The claim type, which contains the string. |
746
748
| InputParameter | startIndex | int | The zero-based starting character position of a substring in this instance. |
747
749
| 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. |
749
751
750
752
For example, get the phone number country prefix.
751
753
@@ -822,7 +824,7 @@ Concatenates the elements of a specified string collection claim type, using the
822
824
| InputParameter | delimiter | string | The string to use as a separator, such as comma `,`. |
823
825
| OutputClaim | outputClaim | string | A string that consists of the members of the `inputClaim` string collection, delimited by the `delimiter` input parameter. |
824
826
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.
@@ -858,7 +860,7 @@ Returns a string array that contains the substrings in this instance that are de
858
860
| InputParameter | delimiter | string | The string to use as a separator, such as comma `,`. |
859
861
| OutputClaim | outputClaim | stringCollection | A string collection whose elements contain the substrings in this string that are delimited by the `delimiter` input parameter. |
860
862
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.
Copy file name to clipboardExpand all lines: articles/active-directory/managed-identities-azure-resources/how-to-view-managed-identity-service-principal-portal.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ In this article, you learn how to view the service principal of a managed identi
38
38
This procedure demonstrates how to view the service principal of a VM with system assigned identity enabled (the same steps apply for an application).
39
39
40
40
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**.
42
42
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.
43
43
44
44

0 commit comments