Skip to content

Commit 36cbd12

Browse files
authored
Merge pull request #283547 from MicrosoftDocs/main
Publish to live, Sunday 4 AM PST, 8/4
2 parents 59c9230 + 088303f commit 36cbd12

File tree

1,083 files changed

+8900
-5979
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,083 files changed

+8900
-5979
lines changed

.openpublishing.publish.config.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1289,7 +1289,6 @@
12891289
".openpublishing.redirection.azure-databricks.json",
12901290
".openpublishing.redirection.azure-datalake-storage-gen1.json",
12911291
".openpublishing.redirection.azure-hpc.json",
1292-
".openpublishing.redirection.azure-kubernetes-service.json",
12931292
".openpublishing.redirection.azure-monitor.json",
12941293
".openpublishing.redirection.azure-percept.json",
12951294
".openpublishing.redirection.azure-productivity.json",
@@ -1337,7 +1336,6 @@
13371336
"articles/active-directory-b2c/.openpublishing.redirection.active-directory-b2c.json",
13381337
"articles/ai-services.openpublishing.redirection.ai-services.json",
13391338
"articles/ai-studio/.openpublishing.redirection.ai-studio.json",
1340-
"articles/aks/.openpublishing.redirection.aks.json",
13411339
"articles/analysis-services/.openpublishing.redirection.analysis-services.json",
13421340
"articles/application-gateway/.openpublishing.redirection.application-gateway.json",
13431341
"articles/automation/.openpublishing.redirection.automation.json",

.openpublishing.redirection.azure-kubernetes-service.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

.openpublishing.redirection.container-registry.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,16 @@
165165
"source_path": "articles/container-registry/monitor-service-reference.md",
166166
"redirect_url": "/azure/container-registry/monitor-container-registry-reference",
167167
"redirect_document_id": true
168+
},
169+
{
170+
"source_path_from_root": "/articles/container-registry/container-registry-auth-aks.md",
171+
"redirect_url": "/azure/aks/cluster-container-registry-integration",
172+
"redirect_document_id": false
173+
},
174+
{
175+
"source_path_from_root": "/articles/container-service/kubernetes/container-service-kubernetes-jenkins.md",
176+
"redirect_url": "/azure/aks/jenkins-continuous-deployment",
177+
"redirect_document_id": false
168178
}
169179
]
170180
}

.openpublishing.redirection.json

Lines changed: 4592 additions & 4594 deletions
Large diffs are not rendered by default.

articles/application-gateway/application-gateway-backend-health.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Azure Application Gateway
44
description: Learn how to use Backend health report in Azure Application Gateway
55
services: application-gateway
66
author: jaesoni
7-
ms.service: application-gateway
7+
ms.service: azure-application-gateway
88
ms.topic: article
99
ms.date: 05/30/2024
1010
ms.author: jaysoni

articles/application-gateway/custom-error.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Create Azure Application Gateway custom error pages
33
description: This article shows you how to create Application Gateway custom error pages. You can use your own branding and layout using a custom error page.
44
services: application-gateway
55
author: greg-lindsay
6-
ms.service: application-gateway
6+
ms.service: azure-application-gateway
77
ms.topic: how-to
88
ms.date: 12/19/2023
99
ms.author: jaysoni

articles/application-gateway/ssl-certificate-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Listener TLS certificate management in Application Gateway
33
description: Understand listener certificate management through portal.
44
services: application-gateway
55
author: jaesoni
6-
ms.service: application-gateway
6+
ms.service: azure-application-gateway
77
ms.topic: conceptual
88
ms.date: 03/19/2024
99
ms.author: jaysoni

articles/application-gateway/v1-retirement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Azure Application Gateway
44
description: This article provides a high-level overview of the retirement of Application gateway V1 SKUs.
55
services: application-gateway
66
author: MJyot
7-
ms.service: application-gateway
7+
ms.service: azure-application-gateway
88
ms.topic: how-to
99
ms.date: 04/19/2023
1010
ms.author: mjyothish

articles/azure-functions/functions-reference-python.md

Lines changed: 29 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Python developer reference for Azure Functions
33
description: Understand how to develop, validate, and deploy your Python code projects to Azure Functions using the Python library for Azure Functions.
44
ms.topic: article
5-
ms.date: 05/16/2024
5+
ms.date: 07/30/2024
66
ms.devlang: python
77
ms.custom: devx-track-python, devdivchpfy22
88
zone_pivot_groups: python-mode-functions
@@ -16,22 +16,41 @@ This guide is an introduction to developing Azure Functions by using Python. The
1616
> This article supports both the v1 and v2 programming model for Python in Azure Functions.
1717
> The Python v1 model uses a *functions.json* file to define functions, and the new v2 model lets you instead use a decorator-based approach. This new approach results in a simpler file structure, and it's more code-centric. Choose the **v2** selector at the top of the article to learn about this new programming model.
1818
19-
As a Python developer, you might also be interested in one of the following articles:
19+
As a Python developer, you might also be interested in these topics:
20+
21+
## [Get started](#tab/get-started)
2022

2123
::: zone pivot="python-mode-configuration"
24+
+ [Visual Studio Code](./create-first-function-vs-code-python.md?pivots=python-mode-configuration): Create your first Python app using Visual Studio Code.
25+
+ [Terminal or command prompt](./create-first-function-cli-python.md?pivots=python-mode-configuration): Create your first Python app from the command prompt using Azure Functions Core Tools.
26+
+ [Samples](/samples/browse/?products=azure-functions&languages=python): Review some existing Python apps in the Learn samples browser.
27+
::: zone-end
28+
::: zone pivot="python-mode-decorators"
29+
+ [Visual Studio Code](./create-first-function-vs-code-python.md?pivots=python-mode-decorators): Create your first Python app using Visual Studio Code.
30+
+ [Terminal or command prompt](./create-first-function-cli-python.md?pivots=python-mode-decorators): Create your first Python app from the command prompt using Azure Functions Core Tools.
31+
+ [Samples](/samples/browse/?products=azure-functions&languages=python): Review some existing Python apps in the Learn samples browser.
32+
::: zone-end
33+
## [Scenarios](#tab/scenarios)
2234

23-
| Getting started | Concepts| Scenarios and samples |
24-
|--|--|--|
25-
| <ul><li>[Create Python functions by using Visual Studio Code](./create-first-function-vs-code-python.md?pivots=python-mode-configuration)</li><li>[Create Python functions by using a terminal or command prompt](./create-first-function-cli-python.md?pivots=python-mode-configuration)</li></ul> | <ul><li>[Developer guide](functions-reference.md)</li><li>[Hosting options](functions-scale.md)</li><li>[Performance&nbsp;considerations](functions-best-practices.md)</li></ul> | <ul><li>[Image classification with PyTorch](machine-learning-pytorch.md)</li><li>[Azure Automation sample](/samples/azure-samples/azure-functions-python-list-resource-groups/azure-functions-python-sample-list-resource-groups/)</li><li>[Machine learning with TensorFlow](functions-machine-learning-tensorflow.md)</li><li>[Browse Python samples](/samples/browse/?products=azure-functions&languages=python)</li></ul> |
35+
::: zone pivot="python-mode-configuration"
36+
+ [Machine learning & AI](functions-scenarios.md?pivots=programming-language-python#machine-learning-and-ai): Features machine learning with [PyTorch](machine-learning-pytorch.md) and [TensorFlow](functions-machine-learning-tensorflow.md). Connect to Azure OpenAI models using [Functions bindings](./functions-bindings-openai.md).
37+
+ [Automation](/samples/azure-samples/azure-functions-python-list-resource-groups/azure-functions-python-sample-list-resource-groups/): Use Python functions to automate the management of Azure resources.
38+
+ [Serverless workflows](./durable/quickstart-python-vscode.md?&pivots=python-mode-configuration): Create stateful functions in a serverless environment as part of orchestrated workflows.
39+
+ [More...](functions-scenarios.md?pivots=programming-language-python)
40+
::: zone-end
41+
::: zone pivot="python-mode-decorators"
42+
+ [Machine learning & AI](functions-scenarios.md?pivots=programming-language-python#machine-learning-and-ai): Use [Functions bindings](./functions-bindings-openai.md) to connect to and manipulate Azure OpenAI data models, including [text completion](functions-add-openai-text-completion.md?pivots=programming-language-python).
43+
+ [Serverless workflows](./durable/quickstart-python-vscode.md?&pivots=python-mode-decorators): Create stateful functions in a serverless environment as part of orchestrated workflows.
44+
+ [More...](functions-scenarios.md?pivots=programming-language-python)
2645
::: zone-end
2746

28-
::: zone pivot="python-mode-decorators"
47+
## [Hosting options](#tab/hosting)
2948

30-
| Getting started | Concepts| Samples |
31-
| --- | --- | --- |
32-
| <ul><li>[Create Python functions by using Visual Studio Code](./create-first-function-vs-code-python.md?pivots=python-mode-decorators)</li><li>[Create Python functions by using a terminal or command prompt](./create-first-function-cli-python.md?pivots=python-mode-decorators)</li></ul> | <ul><li>[Developer guide](functions-reference.md)</li><li>[Hosting options](functions-scale.md)</li><li>[Performance&nbsp;considerations](functions-best-practices.md)</li></ul> | <li>[Code Examples](functions-bindings-triggers-python.md)</li> |
49+
+ [Flex Consumption plan](./flex-consumption-plan.md): Linux-based serverless hosting option that features full support for managed identities, virtual networks, and flexible deployments. This plan is currently in preview.
50+
+ [Container hosting options](container-concepts.md): Run and deploy your Python functions on Linux in a Docker container, including integrated [Azure Container Apps hosting](functions-container-apps-hosting.md).
51+
+ [Compare hosting options...](functions-scale.md)
3352

34-
::: zone-end
53+
---
3554

3655
## Development options
3756

articles/azure-large-instances/workloads/epic/create-a-volume-group.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.title: Create a volume group
66
ms.topic: conceptual
77
author: jjaygbay1
88
ms.author: jacobjaygbay
9-
ms.service: baremetal-infrastructure
9+
ms.service: azure-baremetal-infrastructure
1010
ms.date: 06/01/2023
1111
---
1212

0 commit comments

Comments
 (0)