Skip to content

Commit 208ae8d

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into ip-upgrade
2 parents 241f2da + 10ee81e commit 208ae8d

File tree

72 files changed

+1254
-641
lines changed

Some content is hidden

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

72 files changed

+1254
-641
lines changed

articles/active-directory/saas-apps/linkedinsalesnavigator-provisioning-tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ The first step is to retrieve your LinkedIn access token. If you are an Enterpri
6565
4. Click **+ Add new SCIM configuration** and follow the procedure by filling in each field.
6666

6767
> [!NOTE]
68-
> When auto­assign licenses is not enabled, it means that only user data is synced.
68+
> When auto-assign licenses is not enabled, it means that only user data is synced.
6969
7070
![Screenshot shows the LinkedIn Account Center Global Settings.](./media/linkedinsalesnavigator-provisioning-tutorial/linkedin_1.PNG)
7171

7272
> [!NOTE]
73-
> When auto­license assignment is enabled, you need to note the application instance and license type. Licenses are assigned on a first come, first serve basis until all the licenses are taken.
73+
> When auto-license assignment is enabled, you need to note the application instance and license type. Licenses are assigned on a first come, first serve basis until all the licenses are taken.
7474
7575
![Screenshot shows the S C I M Setup page.](./media/linkedinsalesnavigator-provisioning-tutorial/linkedin_2.PNG)
7676

@@ -94,7 +94,7 @@ The first step is to retrieve your LinkedIn access token. If you are an Enterpri
9494

9595
* In the **Secret Token** field, enter the access token you generated in step 1 and click **Test Connection** .
9696

97-
* You should see a success notification on the upper­right side of
97+
* You should see a success notification on the upper-right side of
9898
your portal.
9999

100100
12. Enter the email address of a person or group who should receive provisioning error notifications in the **Notification Email** field, and check the checkbox below.

articles/api-management/how-to-deploy-self-hosted-gateway-kubernetes-opentelemetry.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Now that we have the chart repository configured, we can deploy the OpenTelemetr
114114
protocol: TCP
115115
```
116116
117-
This allows us to use a standalone collector with the Prometheus exporter being exposed on port `8889`. To expose the Prometheus metrics, we are asking the Helm chart to configure a ´LoadBalancer` service.
117+
This allows us to use a standalone collector with the Prometheus exporter being exposed on port `8889`. To expose the Prometheus metrics, we are asking the Helm chart to configure a `LoadBalancer` service.
118118

119119
> [!NOTE]
120120
> We are disabling the compact Jaeger port given it uses UDP and `LoadBalancer` service does not allow you to have multiple protocols at the same time.

articles/app-service/app-service-web-configure-tls-mutual-auth.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,59 @@ To set up your app to require client certificates:
2727

2828
1. Set **Client certificate mode** to **Require**. Click **Save** at the top of the page.
2929

30+
### [Azure CLI](#tab/azurecli)
3031
To do the same with Azure CLI, run the following command in the [Cloud Shell](https://shell.azure.com):
3132

3233
```azurecli-interactive
3334
az webapp update --set clientCertEnabled=true --name <app-name> --resource-group <group-name>
3435
```
36+
### [Bicep](#tab/bicep)
37+
38+
For Bicep, modify the properties `clientCertEnabled`, `clientCertMode`, and `clientCertExclusionPaths`. A sampe Bicep snippet is provided for you:
39+
40+
```bicep
41+
resource appService 'Microsoft.Web/sites@2020-06-01' = {
42+
name: webSiteName
43+
location: location
44+
kind: 'app'
45+
properties: {
46+
serverFarmId: appServicePlan.id
47+
siteConfig: {
48+
linuxFxVersion: linuxFxVersion
49+
}
50+
clientCertEnabled: true
51+
clientCertMode: 'Required'
52+
clientCertExclusionPaths: '/sample1;/sample2'
53+
}
54+
}
55+
```
56+
57+
### [ARM](#tab/arm)
58+
59+
For ARM templates, modify the properties `clientCertEnabled`, `clientCertMode`, and `clientCertExclusionPaths`. A sampe ARM template snippet is provided for you:
60+
61+
```ARM
62+
{
63+
"type": "Microsoft.Web/sites",
64+
"apiVersion": "2020-06-01",
65+
"name": "[parameters('webAppName')]",
66+
"location": "[parameters('location')]",
67+
"dependsOn": [
68+
"[resourceId('Microsoft.Web/serverfarms', variables('appServicePlanPortalName'))]"
69+
],
70+
"properties": {
71+
"serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('appServicePlanPortalName'))]",
72+
"siteConfig": {
73+
"linuxFxVersion": "[parameters('linuxFxVersion')]"
74+
},
75+
"clientCertEnabled": true,
76+
"clientCertMode": "Required",
77+
"clientCertExclusionPaths": "/sample1;/sample2"
78+
}
79+
}
80+
```
81+
82+
---
3583

3684
## Exclude paths from requiring authentication
3785

articles/app-service/tutorial-java-tomcat-connect-managed-identity-postgresql-database.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ description: Secure Azure Database for PostgreSQL connectivity with managed iden
44
ms.devlang: java
55
ms.topic: tutorial
66
ms.date: 09/26/2022
7-
author: shizn
8-
ms.author: xshi
7+
author: KarlErickson
8+
ms.author: karler
99
---
1010

1111
# Tutorial: Connect to a PostgreSQL Database from Java Tomcat App Service without secrets using a managed identity
@@ -25,7 +25,7 @@ ms.author: xshi
2525
* [Git](https://git-scm.com/)
2626
* [Java JDK](/azure/developer/java/fundamentals/java-support-on-azure)
2727
* [Maven](https://maven.apache.org)
28-
* [Azure CLI](/cli/azure/overview). This quickstart requires that you are running the latest [edge build of Azure CLI](https://github.com/Azure/azure-cli/blob/dev/doc/try_new_features_before_release.md). [Download and install the edge builds](https://github.com/Azure/azure-cli#edge-builds) for your platform.
28+
* [Azure CLI](/cli/azure/install-azure-cli) version 2.41.0 or higher.
2929

3030
## Clone the sample app and prepare the repo
3131

articles/applied-ai-services/form-recognizer/v3-migration-guide.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,20 @@ recommendations: false
1919
>
2020
> Form Recognizer REST API v3.0 introduces breaking changes in the REST API request and analyze response JSON.
2121
22+
## Migrating from a v3.0 preview API version
23+
24+
Preview APIs are periodically deprecated. If you're using a preview API version, plan on updating your application to target the GA API version once available. To migrate from the 2021-09-30-preview or the 2022-01-30-preview API versions to the 2022-08-31 (GA) API version using the SDK, update to the [current version of the language specific SDK](sdk-overview.md).
25+
26+
The 2022-08-31 API has a few updates from the preview API versions:
27+
* Field rename: boundingBox to polygon to support non-quadrilateral polygon regions.
28+
* Field deleted: entities removed from the result of the general document model.
29+
* Field rename: documentLanguage.languageCode to locale
30+
* Added support for HEIF format
31+
* Added paragraph detection, with role classification for layout and general document models
32+
* Added support for parsed address fields.
33+
34+
## Migrating from v2.1
35+
2236
Form Recognizer v3.0 introduces several new features and capabilities:
2337

2438
* [Form Recognizer REST API](quickstarts/get-started-sdks-rest-api.md?view=form-recog-3.0.0&preserve-view=true) has been redesigned for better usability.
@@ -92,7 +106,7 @@ Base64 encoding is also supported in Form Recognizer v3.0:
92106
}
93107
```
94108

95-
### Additional supported parameters
109+
### Additionally supported parameters
96110

97111
Parameters that continue to be supported:
98112

@@ -372,4 +386,5 @@ In this migration guide, you've learned how to upgrade your existing Form Recogn
372386

373387
* [Review the new REST API](https://westus.dev.cognitive.microsoft.com/docs/services/form-recognizer-api-2022-08-31/operations/AnalyzeDocument)
374388
* [What is Form Recognizer?](overview.md)
375-
* [Form Recognizer quickstart](/azure/applied-ai-services/form-recognizer/how-to-guides/v2-1-sdk-rest-api)
389+
* [Form Recognizer quickstart](./quickstarts/try-sdk-rest-api.md)
390+

articles/applied-ai-services/form-recognizer/whats-new.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ ms.date: 10/20/2022
1111
ms.author: lajanuar
1212
monikerRange: '>=form-recog-2.1.0'
1313
recommendations: false
14+
ms.custom: references_regions
1415
---
1516
<!-- markdownlint-disable MD024 -->
1617
<!-- markdownlint-disable MD036 -->
@@ -23,12 +24,22 @@ recommendations: false
2324

2425
Form Recognizer service is updated on an ongoing basis. Bookmark this page to stay up to date with release notes, feature enhancements, and documentation updates.
2526

27+
>[!NOTE]
28+
> With the release of the 2022-08-31 GA API, the associated preview APIs are being deprecated. If you are using the 2021-09-30-preview or the 2022-01-30-preview API versions, please update your applications to target the 2022-08-31 API version. There are a few minor changes involved, for more information, _see_ the [migration guide](v3-migration-guide.md).
29+
2630
## October 2022
2731

2832
With the latest preview release, Form Recognizer's Read (OCR), Layout, and Custom template models support 134 new languages. These language additions include Greek, Latvian, Serbian, Thai, Ukrainian, and Vietnamese, along with several Latin and Cyrillic languages. Form Recognizer now has a total of 299 supported languages across the most recent GA and new preview versions. Refer to the [supported languages](language-support.md) page to see all supported languages.
2933

3034
Use the REST API parameter `api-version=2022-06-30-preview` when using the API or the corresponding SDK to support the new languages in your applications.
3135

36+
### Region expansion for training custom neural models
37+
38+
Training custom neural models now supported in added regions.
39+
* East US
40+
* East US2
41+
* US Gov Arizona
42+
3243
## September 2022
3344

3445
### Region expansion for training custom neural models
@@ -565,7 +576,7 @@ The updated Layout API table feature adds header recognition with column headers
565576

566577
* Client defaults to the latest supported service version, currently v2.1. You can specify version 2.0 in the **FormRecognizerClientOptions** object's **Version** property.
567578

568-
* **StartRecognizeIdentityDocuments**. Renamed methods and method parameters using **Identity** to replace _Id_ keyword for all related identity documents recognition API functionalities.
579+
* **StartRecognizeIdentityDocuments**. Renamed methods and method parameters using **Identity** to replace _ID_ keyword for all related identity documents recognition API functionalities.
569580

570581
* **FormReadingOrder**. *ReadingOrder* renamed to **FormReadingOrder**.
571582

@@ -653,7 +664,7 @@ The updated Layout API table feature adds header recognition with column headers
653664

654665
#### **Breaking changes (May)**
655666

656-
* **begin_recognize_identity_documents** and **begin_recognize_identity_documents_from_url**. Renamed methods and method parameters using **Identity** to replace _Id_ keyword.
667+
* **begin_recognize_identity_documents** and **begin_recognize_identity_documents_from_url**. Renamed methods and method parameters using **Identity** to replace _ID_ keyword.
657668

658669
* **FieldValueType**. Renamed value type *country* to **countryRegion**. Removed value type *gender*.
659670

0 commit comments

Comments
 (0)