Skip to content

Commit 866b43e

Browse files
authored
Merge pull request #191189 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents d8f0b77 + 301e049 commit 866b43e

File tree

27 files changed

+50
-50
lines changed

27 files changed

+50
-50
lines changed

articles/active-directory/conditional-access/concept-continuous-access-evaluation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ There are two scenarios that make up continuous access evaluation, critical even
4141

4242
### Critical event evaluation
4343

44-
Continuous access evaluation is implemented by enabling services, like Exchange Online, SharePoint Online, and Teams, to subscribe to critical Azure AD events. Those events can then be evaluated and enforced near real time. Critical event evaluation doesn't rely on Conditional Access policies so is available in any tenant. The following events are currently evaluated:
44+
Continuous access evaluation is implemented by enabling services, like Exchange Online, SharePoint Online, and Teams, to subscribe to critical Azure AD events. Those events can then be evaluated and enforced near real time. Critical event evaluation doesn't rely on Conditional Access policies so it is available in any tenant. The following events are currently evaluated:
4545

4646
- User Account is deleted or disabled
4747
- Password for a user is changed or reset

articles/api-management/api-management-advanced-policies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,7 @@ This example shows one way to verify a reference token with an authorization ser
745745
| mode="string" | Determines whether this is a new request or a copy of the current request. In outbound mode, mode=copy does not initialize the request body. | No | New |
746746
| response-variable-name="string" | The name of context variable that will receive a response object. If the variable doesn't exist, it will be created upon successful execution of the policy and will become accessible via [`context.Variable`](api-management-policy-expressions.md#ContextVariables) collection. | Yes | N/A |
747747
| timeout="integer" | The timeout interval in seconds before the call to the URL fails. | No | 60 |
748-
| ignore-error | If true and the request results in an error:<br /><br /> - If response-variable-name was specified it will contain a null value.<br />- If response-variable-name was not specified, context.Request will not be updated. | No | false |
748+
| ignore-error | If true and the request results in an error, the error will be ignored, and the response variable will contain a null value. | No | false |
749749
| name | Specifies the name of the header to be set. | Yes | N/A |
750750
| exists-action | Specifies what action to take when the header is already specified. This attribute must have one of the following values.<br /><br /> - override - replaces the value of the existing header.<br />- skip - does not replace the existing header value.<br />- append - appends the value to the existing header value.<br />- delete - removes the header from the request.<br /><br /> When set to `override` enlisting multiple entries with the same name results in the header being set according to all entries (which will be listed multiple times); only listed values will be set in the result. | No | override |
751751

articles/azure-functions/functions-app-settings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ Connection string for storage account where the function app code and configurat
413413
|---|------------|
414414
|WEBSITE_CONTENTAZUREFILECONNECTIONSTRING|`DefaultEndpointsProtocol=https;AccountName=...`|
415415

416-
Only used when deploying to a Premium plan or to a Consumption plan running on Windows. Not supported for Consumptions plans running Linux. Changing or removing this setting may cause your function app to not start. To learn more, see [this troubleshooting article](functions-recover-storage-account.md#storage-account-application-settings-were-deleted).
416+
Only used when deploying to a Windows or Linux Premium plan or to a Windows Consumption plan. Not supported for Linux Consumption plans or Windows or Linux Dedicated plans. Changing or removing this setting may cause your function app to not start. To learn more, see [this troubleshooting article](functions-recover-storage-account.md#storage-account-application-settings-were-deleted).
417417

418418
## WEBSITE\_CONTENTOVERVNET
419419

@@ -433,7 +433,7 @@ The file path to the function app code and configuration in an event-driven scal
433433
|---|------------|
434434
|WEBSITE_CONTENTSHARE|`functionapp091999e2`|
435435

436-
Only used when deploying to a Premium plan or to a Consumption plan running on Windows. Not supported for Consumptions plans running Linux. Changing or removing this setting may cause your function app to not start. To learn more, see [this troubleshooting article](functions-recover-storage-account.md#storage-account-application-settings-were-deleted).
436+
Only used when deploying to a Windows or Linux Premium plan or to a Windows Consumption plan. Not supported for Linux Consumption plans or Windows or Linux Dedicated plans. Changing or removing this setting may cause your function app to not start. To learn more, see [this troubleshooting article](functions-recover-storage-account.md#storage-account-application-settings-were-deleted).
437437

438438
When using an Azure Resource Manager template to create a function app during deployment, don't include WEBSITE_CONTENTSHARE in the template. This slot setting is generated during deployment. To learn more, see [Automate resource deployment for your function app](functions-infrastructure-as-code.md?tabs=windows#create-a-function-app).
439439

articles/cognitive-services/Bing-Entities-Search/includes/quickstarts/entity-search-client-library-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Use this quickstart to begin searching for entities with the Bing Entity Search
1818

1919
* The [Bing Entity Search SDK for Python](https://pypi.org/project/azure-cognitiveservices-search-entitysearch/)
2020

21-
It is recommended that you use a python virtual environment. You can install and initialize a virtual environment with the venv module. You can install virtualenv with:
21+
It is recommended that you use a Python virtual environment. You can install and initialize a virtual environment with the venv module. You can install virtualenv with:
2222

2323
```Console
2424
python -m venv mytestenv

articles/cognitive-services/Bing-News-Search/includes/quickstarts/news-search-client-library-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Use this quickstart to begin searching for news with the Bing News Search client
1616

1717
* [Python](https://www.python.org/) 2.x or 3.x
1818

19-
It is recommended to use a [virtual environment](https://docs.python.org/3/tutorial/venv.html) for your python development. You can install and initialize the virtual environment with the [venv module](https://pypi.python.org/pypi/virtualenv). You must install a virtualenv for Python 2.7. You can create a virtual environment with:
19+
It is recommended to use a [virtual environment](https://docs.python.org/3/tutorial/venv.html) for your Python development. You can install and initialize the virtual environment with the [venv module](https://pypi.python.org/pypi/virtualenv). You must install a virtualenv for Python 2.7. You can create a virtual environment with:
2020

2121
```console
2222
python -m venv mytestenv

articles/cognitive-services/Bing-Video-Search/includes/quickstarts/video-search-client-library-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Use this quickstart to begin searching for news with the Bing Video Search clien
1919
- [Python](https://www.python.org/) 2.x or 3.x
2020
- The Bing Video Search client library for python
2121

22-
It is recommended that you use a python [virtual environment](https://docs.python.org/3/tutorial/venv.html). You can install and initialize a virtual environment with the [venv module](https://pypi.python.org/pypi/virtualenv). Install virtualenv for Python 2.7 with:
22+
It is recommended that you use a Python [virtual environment](https://docs.python.org/3/tutorial/venv.html). You can install and initialize a virtual environment with the [venv module](https://pypi.python.org/pypi/virtualenv). Install virtualenv for Python 2.7 with:
2323

2424
```console
2525
python -m venv mytestenv

articles/cognitive-services/Content-Moderator/includes/quickstarts/python-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ After installing Python, you can install the Content Moderator client library wi
4646
pip install --upgrade azure-cognitiveservices-vision-contentmoderator
4747
```
4848

49-
### Create a new python application
49+
### Create a new Python application
5050

5151
Create a new Python script and open it in your preferred editor or IDE. Then add the following `import` statements to the top of the file.
5252

articles/cognitive-services/Custom-Vision-Service/includes/quickstarts/python-tutorial-od.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ To write an image analysis app with Custom Vision for Python, you'll need the Cu
4040
pip install azure-cognitiveservices-vision-customvision
4141
```
4242

43-
### Create a new python application
43+
### Create a new Python application
4444

4545
Create a new Python file and import the following libraries.
4646

articles/cognitive-services/Custom-Vision-Service/includes/quickstarts/python-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ To write an image analysis app with Custom Vision for Python, you'll need the Cu
4040
pip install azure-cognitiveservices-vision-customvision
4141
```
4242

43-
### Create a new python application
43+
### Create a new Python application
4444

4545
Create a new Python file and import the following libraries.
4646

articles/cognitive-services/LUIS/includes/sdk-python.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Use the Language Understanding (LUIS) client libraries for Python to:
4545

4646
### Install the client library with Pip
4747

48-
Within the application directory, install the Language Understanding (LUIS) client library for python with the following command:
48+
Within the application directory, install the Language Understanding (LUIS) client library for Python with the following command:
4949

5050
```console
5151
pip install azure-cognitiveservices-language-luis
@@ -83,9 +83,9 @@ Once the client is created, use this client to access functionality including:
8383

8484
## Add the dependencies
8585

86-
Add the client libraries to the python file.
86+
Add the client libraries to the Python file.
8787

88-
[!code-python[Add python libraries to code file](~/cognitive-services-quickstart-code/python/LUIS/sdk-3x/authoring_and_predict.py?name=Dependencies)]
88+
[!code-python[Add Python libraries to code file](~/cognitive-services-quickstart-code/python/LUIS/sdk-3x/authoring_and_predict.py?name=Dependencies)]
8989

9090

9191
## Add boilerplate code

0 commit comments

Comments
 (0)