Skip to content

Commit 9310c05

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into tutorial-site-to-site-portal
2 parents 08cb30f + 814642b commit 9310c05

File tree

1,966 files changed

+17981
-17768
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,966 files changed

+17981
-17768
lines changed

.openpublishing.publish.config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1264,6 +1264,7 @@
12641264
"articles/iot-hub/.openpublishing.redirection.iot-hub.json",
12651265
"articles/iot-operations/.openpublishing.redirection.iot-operations.json",
12661266
"articles/load-testing/.openpublishing.redirection.azure-load-testing.json",
1267+
"articles/lab-services/.openpublishing.redirection.lab-services.json",
12671268
"articles/logic-apps/.openpublishing.redirection.logic-apps.json",
12681269
"articles/machine-learning/.openpublishing.redirection.machine-learning.json",
12691270
"articles/machine-learning/v1/.openpublishing.redirection.machine-learning-v1.json",

.openpublishing.redirection.app-service.json

Lines changed: 2642 additions & 147 deletions
Large diffs are not rendered by default.

.openpublishing.redirection.json

Lines changed: 2253 additions & 5608 deletions
Large diffs are not rendered by default.

articles/active-directory-b2c/custom-policies-series-call-rest-api.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ ms.service: active-directory
1010

1111
ms.topic: how-to
1212
ms.custom: b2c-docs-improvements, devx-track-js
13-
ms.date: 01/11/2024
13+
ms.date: 01/22/2024
1414
ms.author: kengaderdus
1515
ms.reviewer: yoelh
1616
ms.subservice: B2C
1717

1818

19-
#Customer intent: As a developer using Azure Active Directory B2C custom policy, I want to learn how to call a REST API and handle errors returned by the service, so that I can validate user inputs and issue JWT tokens based on the response.
19+
#Customer intent: As a developer integrating customer-facing apps with Azure Active Directory B2C custom policy, I want to learn how to call a REST API from my custom policy, so that I can send and receive data from external services.
2020

2121
---
2222

@@ -35,7 +35,7 @@ In this article, you learn how to:
3535

3636
## Scenario overview
3737

38-
In [Create branching in user journey by using Azure AD B2C custom policies](custom-policies-series-branch-user-journey.md), users who select *Personal Account* need to provide a valid invitation access code to proceed. We use a static access code, but real world apps don't work this way. If the service that issues the access codes is external to your custom policy, you must make a call to that service, and pass the access code input by the user for validation. If the access code is valid, the service returns an HTTP `200 OK` response, and Azure AD B2C issues JWT token. Otherwise, the service returns an HTTP `409 Conflict` response, and the user must reenter an access code.
38+
In [Create branching in user journey by using Azure AD B2C custom policies](custom-policies-series-branch-user-journey.md), users who select *Personal Account* need to provide a valid invitation access code to proceed. We use a static access code, but real world apps don't work this way. If the service that issues the access codes is external to your custom policy, you must make a call to that service, and pass the access code input by the user for validation. If the access code is valid, the service returns an HTTP `200 OK` response, and Azure AD B2C issues JWT token. Otherwise, the service returns an HTTP 4xx response, and the user must reenter an access code.
3939

4040
:::image type="content" source="media/custom-policies-series-call-rest-api/screenshot-of-call-rest-api-call.png" alt-text="A flowchart of calling a R E S T A P I.":::
4141

@@ -141,6 +141,7 @@ You need to deploy an app, which serves as your external app. Your custom policy
141141
"moreInfo": "https://docs.microsoft.com/en-us/azure/active-directory-b2c/string-transformations"
142142
}
143143
```
144+
Your REST service can return HTTP 4xx status code, but the value of `status` in the JSON response must be `409`.
144145
145146
At this point, you're ready to deploy your Node.js app.
146147

articles/active-directory-b2c/customize-ui-with-html.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,17 @@
22
title: Customize the user interface with HTML templates
33
titleSuffix: Azure AD B2C
44
description: Learn how to customize the user interface with HTML templates for your applications that use Azure Active Directory B2C.
5-
65
author: kengaderdus
76
manager: CelesteDG
8-
97
ms.service: active-directory
10-
118
ms.topic: how-to
12-
ms.date: 01/11/2024
9+
ms.date: 01/22/2024
1310
ms.author: kengaderdus
1411
ms.subservice: B2C
1512
zone_pivot_groups: b2c-policy-type
1613

1714

18-
#Customer intent: As a developer customizing the user interface in Azure Active Directory B2C, I want to know how to customize the default pages and host my own HTML and CSS files, so that I can provide a branded and seamless user experience in my application.
15+
#Customer intent: As a developer integrating apps with Azure Active Directory B2C, I want to learn how to customize the default user interfaces by using my own HTML, CSS files and JavaScript, so that I can provide a branded and seamless user experience in my application.
1916

2017
---
2118

@@ -330,6 +327,9 @@ To configure UI customization, copy the **ContentDefinition** and its child elem
330327

331328
1. Save the extensions file.
332329

330+
1. [Enable JavaScript](javascript-and-page-layout.md?pivots=b2c-custom-policy#enable-javascript)
331+
332+
333333
### 5. Upload and test your updated custom policy
334334

335335
#### 5.1 Upload the custom policy

articles/active-directory-b2c/relyingparty.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: CelesteDG
88
ms.service: active-directory
99

1010
ms.topic: reference
11-
ms.date: 01/11/2024
11+
ms.date: 01/22/2024
1212
ms.author: kengaderdus
1313
ms.subservice: B2C
1414

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ manager: CelesteDG
99
ms.service: active-directory
1010

1111
ms.topic: reference
12-
ms.date: 01/11/2024
12+
ms.date: 01/22/2024
1313
ms.author: kengaderdus
1414
ms.subservice: B2C
1515

1616

17-
#Customer intent: As a developer integrating a RESTful service with Azure Active Directory B2C, I want to define a technical profile, so that I can send and receive data from the REST API using input and output claims collections.
17+
#Customer intent: As a developer customer-facing apps with Azure Active Directory B2C, I want to learn how to define a REST technical profile, so that I can send and receive data from external services.
1818

1919
---
2020

@@ -263,7 +263,7 @@ Your REST API may need to return an error message, such as 'The user was not fou
263263
| Attribute | Required | Description |
264264
| --------- | -------- | ----------- |
265265
| version | Yes | Your REST API version. For example: 1.0.1 |
266-
| status | Yes | An HTTP response status codes-like number, and must be 409 |
266+
| status | Yes | An HTTP response status codes-like number, and must be 409. Your REST service can return an HTTP 4XX status code, but the value of the `status` filed in the JSON-formatted response body must be `409`. |
267267
| code | No | An error code from the RESTful endpoint provider, which is displayed when `DebugMode` is enabled. |
268268
| requestId | No | A request identifier from the RESTful endpoint provider, which is displayed when `DebugMode` is enabled. |
269269
| userMessage | Yes | An error message that is shown to the user. |

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ The **ValidationTechnicalProfile** element contains the following attribute:
5959
|ContinueOnError|No| Indicating whether validation of any subsequent validation technical profiles should continue if this validation technical profile raises an error. Possible values: `true` or `false` (default, processing of further validation profiles will stop and an error returned). |
6060
|ContinueOnSuccess | No | Indicating whether validation of any subsequent validation profiles should continue if this validation technical profile succeeds. Possible values: `true` or `false`. The default is `true`, meaning that the processing of further validation profiles will continue. |
6161

62+
> [!NOTE]
63+
> Currently, if you set ContinueOnError to false for a validation technical profile of type ClaimsTransformation, the technical profile doesn't honor the setting. To overcome this issue, use Preconditions instead.
64+
6265
The **ValidationTechnicalProfile** element contains the following element:
6366

6467
| Element | Occurrences | Description |

articles/ai-services/.openpublishing.redirection.applied-ai-services.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,21 @@
174174
"source_path_from_root": "/articles/ai-services/computer-vision/how-to/migrate-face-data.md",
175175
"redirect_url": "/azure/ai-services/computer-vision/overview-identity",
176176
"redirect_document_id": false
177+
},
178+
{
179+
"source_path_from_root": "/articles/ai-services/computer-vision/index-spatial-analysis.yml",
180+
"redirect_url": "/azure/ai-services/computer-vision/intro-to-spatial-analysis-public-preview",
181+
"redirect_document_id": false
182+
},
183+
{
184+
"source_path_from_root": "/articles/ai-services/custom-vision-service/update-application-to-3.0-sdk.md",
185+
"redirect_url": "/azure/ai-services/custom-vision-service/overview",
186+
"redirect_document_id": false
187+
},
188+
{
189+
"source_path_from_root": "/articles/ai-services/custom-vision-service/release-notes.md",
190+
"redirect_url": "/azure/ai-services/custom-vision-service/whats-new",
191+
"redirect_document_id": false
177192
}
178193
]
179194
}

articles/ai-services/Anomaly-Detector/index.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ metadata:
88
title: Anomaly Detector API - Tutorials, quickstarts, API reference
99
titleSuffix: Azure AI services
1010
description: Use the Azure AI Anomaly Detector univariate and multivariate APIs to monitor data over time and detect anomalies with machine learning. Get insight into your data, regardless of volume, industry, or scenario.
11-
#services: cognitive-services
1211
author: mrbullwinkle
1312
manager: nitinme
1413
ms.service: azure-ai-anomaly-detector

0 commit comments

Comments
 (0)