Skip to content

Commit de2dcc1

Browse files
authored
Merge branch 'main' into ml-sc-mongo
2 parents 60e4038 + 66f9916 commit de2dcc1

File tree

257 files changed

+2025
-675
lines changed

Some content is hidden

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

257 files changed

+2025
-675
lines changed

articles/active-directory-b2c/partner-ping-identity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ You can use basic user flows or advanced Identity Enterprise Framework (IEF) pol
9595

9696
![Screenshot of the subject sub claim URL on the Token compatibility dialog.](./media/partner-ping/token-setting.png)
9797

98-
In the advanced policies, configuration includes the IssuanceClaimPattern metadata element to AuthorityWithTfp value in the [JWT token issuer technical profile](./jwt-issuer-technical-profile.md).
98+
In the advanced policies, configuration includes the IssuanceClaimPattern metadata element to AuthorityWithTfp value in the [JWT issuer technical profile](./jwt-issuer-technical-profile.md).
9999

100100
## Configure PingAccess and PingFederate
101101

articles/analysis-services/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,4 +147,4 @@
147147
- name: Stack Overflow
148148
href: https://stackoverflow.com/questions/tagged/azure-analysis-services
149149
- name: Videos
150-
href: https://azure.microsoft.com/resources/videos/index/?services=analysis-services&sort=newest
150+
href: https://azure.microsoft.com/resources/videos/

articles/app-service/includes/quickstart-python/create-app-cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ az login
1717
Create the webapp and other resources, then deploy your code to Azure using [az webapp up](/cli/azure/webapp#az-webapp-up).
1818

1919
```azurecli
20-
az webapp up --runtime PYTHON:3.9 --sku B1 --logs
20+
az webapp up --runtime PYTHON:3.13 --sku B1 --logs
2121
```
2222

23-
* The `--runtime` parameter specifies what version of Python your app is running. This example uses Python 3.9. To list all available runtimes, use the command `az webapp list-runtimes --os linux --output table`.
23+
* The `--runtime` parameter specifies what version of Python your app is running. This example uses Python 3.13. To list all available runtimes, use the command `az webapp list-runtimes --os linux --output table`.
2424
* The `--sku` parameter defines the size (CPU, memory) and cost of the app service plan. This example uses the B1 (Basic) service plan, which will incur a small cost in your Azure subscription. For a full list of App Service plans, view the [App Service pricing](https://azure.microsoft.com/pricing/details/app-service/linux/) page.
2525
* The `--logs` flag configures default logging required to enable viewing the log stream immediately after launching the webapp.
2626
* You can optionally specify a name with the argument `--name <app-name>`. If you don't provide one, then a name will be automatically generated.
@@ -47,7 +47,7 @@ You can launch the app at http://&lt;app-name>.azurewebsites.net
4747
"name": "&lt;app-name>",
4848
"os": "&lt;os-type>",
4949
"resourcegroup": "&lt;group-name>",
50-
"runtime_version": "python|3.9",
50+
"runtime_version": "python|3.13",
5151
"runtime_version_detected": "0.0",
5252
"sku": "FREE",
5353
"src_path": "&lt;your-folder-location>"

articles/app-service/includes/quickstart-python/create-app-service-azure-portal-3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ On the **Create Web App** page, fill out the form as follows.
88

99
1. **Resource Group** &rarr; Select **Create new** and use a name of *msdocs-python-webapp-quickstart*.
1010
1. **Name** &rarr; *msdocs-python-webapp-quickstart-XYZ* where XYZ is any three random characters. This name must be unique across Azure.
11-
1. **Runtime stack** &rarr; **Python 3.9**.
11+
1. **Runtime stack** &rarr; **Python 3.13**.
1212
1. **Region** &rarr; Any Azure region near you.
1313
1. **App Service Plan** &rarr; Under **Pricing plan**, select **Explore pricing plans** to select a different App Service plan.

articles/app-service/includes/quickstart-python/create-app-service-visual-studio-code-5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ ms.author: daberry
44
ms.topic: include
55
ms.date: 04/30/2022
66
---
7-
Select the runtime stack for the application. In this example, select **Python 3.9**.
7+
Select the runtime stack for the application. In this example, select **Python 3.13**.

articles/app-service/operating-system-functionality.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.custom: UpdateFrequency3
1414
This article describes the baseline operating system functionality that's available to all Windows apps running in [Azure App Service](./overview.md). This functionality includes file, network, and registry access, along with diagnostics logs and events.
1515

1616
> [!NOTE]
17-
> [Linux apps](overview.md#app-service-on-linux) in App Service run in their own containers. You have root access to the container but no access to the host operating system. Likewise, for [apps running in Windows containers](quickstart-custom-container.md?pivots=container-windows), you have administrative access to the container but no access to the host operating system.
17+
> Linux apps in App Service run in their own containers. You have root access to the container but no access to the host operating system. Likewise, for [apps running in Windows containers](quickstart-custom-container.md?pivots=container-windows), you have administrative access to the container but no access to the host operating system.
1818
1919
<a id="tiers"></a>
2020

articles/app-service/overview-diagnostics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ When you're running a web application, you want to be prepared for any problems
1515

1616
Although this experience is most helpful when you're having problems with your app within the last 24 hours, all the diagnostic graphs are always available for you to analyze.
1717

18-
App Service diagnostics works for not only apps on Windows, but also apps on [Linux or containers](./overview.md#app-service-on-linux), [App Service Environments](./environment/intro.md), and [Azure Functions](../azure-functions/functions-overview.md).
18+
App Service diagnostics works for not only apps on Windows, but also apps on built-in or custom containers, [App Service Environments](./environment/intro.md), and [Azure Functions](../azure-functions/functions-overview.md).
1919

2020
## Steps for opening App Service diagnostics
2121

articles/app-service/overview-local-cache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Apps running with a local cache benefit in these ways:
4242
- They experience fewer app restarts from changes in the storage share.
4343

4444
> [!NOTE]
45-
> The local cache feature isn't supported in function apps or containerized App Service apps, such as in [Windows containers](quickstart-custom-container.md?pivots=container-windows) or in [App Service on Linux](overview.md#app-service-on-linux). A version of the feature that's available for these app types is [App Cache](https://github.com/Azure-App-Service/KuduLite/wiki/App-Cache).
45+
> The local cache feature isn't supported in function apps or containerized App Service apps, such as in [Windows containers](quickstart-custom-container.md?pivots=container-windows) or in built-in or custom Linux containers. A version of the feature that's available for these app types is [App Cache](https://github.com/Azure-App-Service/KuduLite/wiki/App-Cache).
4646
>
4747
> The local cache feature also isn't supported in the F1 and D1 pricing tiers of App Service.
4848

0 commit comments

Comments
 (0)