Skip to content

Commit 972f1f6

Browse files
2 parents 85373a0 + a7b8779 commit 972f1f6

File tree

1,095 files changed

+22775
-9266
lines changed

Some content is hidden

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

1,095 files changed

+22775
-9266
lines changed

.openpublishing.redirection.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "articles/network-watcher/network-watcher-security-group-view-powershell.md",
5+
"redirect_url": "/previous-versions/azure/network-watcher/network-watcher-security-group-view-powershell",
6+
"redirect_document_id": false
7+
},
8+
{
9+
"source_path": "articles/network-watcher/network-watcher-security-group-view-cli.md",
10+
"redirect_url": "/previous-versions/azure/network-watcher/network-watcher-security-group-view-cli",
11+
"redirect_document_id": false
12+
},
313
{
414
"source_path": "articles/storage/blobs/blob-v11-samples-dotnet.md",
515
"redirect_url": "/previous-versions/azure/storage/blobs/blob-v11-samples-dotnet",
@@ -680,6 +690,16 @@
680690
"redirect_url": "/azure/azure-maps/power-bi-visual-conversion",
681691
"redirect_document_id": false
682692
},
693+
{
694+
"source_path_from_root": "/articles/azure-maps/migrate-from-bing-maps-web-services.md",
695+
"redirect_url": "/azure/azure-maps/migrate-bing-maps-overview",
696+
"redirect_document_id": false
697+
},
698+
{
699+
"source_path_from_root": "/articles/azure-maps/migrate-from-bing-maps.md",
700+
"redirect_url": "/azure/azure-maps/migrate-bing-maps-overview",
701+
"redirect_document_id": false
702+
},
683703
{
684704
"source_path_from_root": "/articles/azure-portal/resource-group-portal-linked-resources.md",
685705
"redirect_url": "/azure/azure-portal/azure-portal-dashboards",
@@ -4024,6 +4044,11 @@
40244044
"source_path_from_root":"/articles/aks/generation-2-vm-windows.md",
40254045
"redirect_url":"/azure/aks/generation-2-vm",
40264046
"redirect_document_id":false
4047+
},
4048+
{
4049+
"source_path_from_root":"/articles/cosmos-db/high-availability.md",
4050+
"redirect_url":"/azure/reliability/reliability-cosmos-db-nosql.md",
4051+
"redirect_document_id":false
40274052
}
40284053
]
40294054
}

articles/active-directory-b2c/TOC.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,8 +535,10 @@
535535
href: partner-nevis.md
536536
- name: Nok Nok
537537
href: partner-nok-nok.md
538-
- name: Transmit Security
538+
- name: Transmit Security for passwordless
539539
href: partner-bindid.md
540+
- name: Transmit Security for risk detection
541+
href: partner-transmit-security.md
540542
- name: Trusona
541543
href: partner-trusona.md
542544
- name: Twilio

articles/active-directory-b2c/custom-policies-series-sign-up-or-sign-in-federation.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ Notice the claims transformations we defined in [step 3.2](#step-32---define-cla
225225

226226
Just like in sign-in with a local account, you need to configure the [Microsoft Entra Technical Profiles](active-directory-technical-profile.md), which you use to connect to Microsoft Entra ID storage, to store or read a user social account.
227227

228-
1. In the `ContosoCustomPolicy.XML` file, locate the `AAD-UserRead` technical profile and then add a new technical profile by using the following code:
228+
1. In the `ContosoCustomPolicy.XML` file, locate the `AAD-UserRead` technical profile and then add a new technical profile below it by using the following code:
229229

230230
```xml
231231
<TechnicalProfile Id="AAD-UserWriteUsingAlternativeSecurityId">
@@ -517,6 +517,7 @@ Use the following steps to add a combined local and social account:
517517
```xml
518518
<OutputClaim ClaimTypeReferenceId="authenticationSource" DefaultValue="localIdpAuthentication" AlwaysUseDefaultValue="true" />
519519
```
520+
Make sure you also add the `authenticationSource` claim in the output claims collection of the `UserSignInCollector` self-asserted technical profile.
520521

521522
1. In the `UserJourneys` section, add a new user journey, `LocalAndSocialSignInAndSignUp` by using the following code:
522523

173 KB
Loading

articles/active-directory-b2c/microsoft-graph-operations.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,11 +262,13 @@ The `RunAsync` method in the _Program.cs_ file:
262262
1. Initializes the auth provider using [OAuth 2.0 client credentials grant](../active-directory/develop/v2-oauth2-client-creds-grant-flow.md) flow. With the client credentials grant flow, the app is able to get an access token to call the Microsoft Graph API.
263263
1. Sets up the Microsoft Graph service client with the auth provider:
264264

265-
:::code language="csharp" source="~/ms-identity-dotnetcore-b2c-account-management/src/Program.cs" id="ms_docref_set_auth_provider":::
265+
The previously published sample code is not available at this time.
266+
<!--:::code language="csharp" source="~/ms-identity-dotnetcore-b2c-account-management/src/Program.cs" id="ms_docref_set_auth_provider":::-->
266267

267268
The initialized _GraphServiceClient_ is then used in _UserService.cs_ to perform the user management operations. For example, getting a list of the user accounts in the tenant:
268269

269-
:::code language="csharp" source="~/ms-identity-dotnetcore-b2c-account-management/src/Services/UserService.cs" id="ms_docref_get_list_of_user_accounts":::
270+
The previously published sample code is not available at this time.
271+
<!--:::code language="csharp" source="~/ms-identity-dotnetcore-b2c-account-management/src/Services/UserService.cs" id="ms_docref_get_list_of_user_accounts":::-->
270272

271273
[Make API calls using the Microsoft Graph SDKs](/graph/sdks/create-requests) includes information on how to read and write information from Microsoft Graph, use `$select` to control the properties returned, provide custom query parameters, and use the `$filter` and `$orderBy` query parameters.
272274

0 commit comments

Comments
 (0)