Skip to content

Commit d1c8c1e

Browse files
committed
Merge branch 'main' into release-aio-m2
2 parents 4ad23f8 + bb204d1 commit d1c8c1e

File tree

101 files changed

+447
-748
lines changed

Some content is hidden

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

101 files changed

+447
-748
lines changed

CODEOWNERS

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
# Each line is a file pattern followed by one or more owners.
33

44
# Folder paths in this list have been migrated to new repositories and content can no longer be created for these services in this repo.
5-
/articles/aks @tynevi @thomps23
6-
/articles/defender-for-cloud @tynevi @thomps23
7-
/articles/attestation @tynevi @thomps23
8-
/articles/confidential-ledger @tynevi @thomps23
9-
/articles/dedicated-hsm @tynevi @thomps23
10-
/articles/key-vault @tynevi @thomps23
11-
/articles/payment-hsm @tynevi @thomps23
12-
/articles/postgresql @tynevi @thomps23
13-
/articles/cosmos-db @tynevi @thomps23
14-
/articles/dms @tynevi @thomps23
15-
/articles/mariadb @tynevi @thomps23
16-
/articles/mysql @tynevi @thomps23
17-
/articles/managed-instance-apache-cassandra @tynevi @thomps23
5+
/articles/aks @tynevi @thomps23 @jasonwhowell
6+
/articles/defender-for-cloud @tynevi @thomps23 @jasonwhowell
7+
/articles/attestation @tynevi @thomps23 @jasonwhowell
8+
/articles/confidential-ledger @tynevi @thomps23 @jasonwhowell
9+
/articles/dedicated-hsm @tynevi @thomps23 @jasonwhowell
10+
/articles/key-vault @tynevi @thomps23 @jasonwhowell
11+
/articles/payment-hsm @tynevi @thomps23 @jasonwhowell
12+
/articles/postgresql @tynevi @thomps23 @jasonwhowell
13+
/articles/cosmos-db @tynevi @thomps23 @jasonwhowell
14+
/articles/dms @tynevi @thomps23 @jasonwhowell
15+
/articles/mariadb @tynevi @thomps23 @jasonwhowell
16+
/articles/mysql @tynevi @thomps23 @jasonwhowell
17+
/articles/managed-instance-apache-cassandra @tynevi @thomps23 @jasonwhowell
1818
/articles/virtual-machines @jasonwhowell @thomps23
1919
/articles/virtual-machines-scale-sets @jasonwhowell @thomps23
2020
/articles/container-instances @jasonwhowell @thomps23

articles/app-service/includes/tutorial-connect-msi-azure-database/code-postgres-mi.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,11 @@ For more information, see the following resources:
109109
conn = psycopg2.connect(conn_string + ' password=' + accessToken.token)
110110
```
111111

112+
For more information, see the following resources:
113+
114+
* [Create and deploy a Flask Python web app to Azure with system-assigned managed identity](/azure/developer/python/tutorial-python-managed-identity-cli)
115+
* [Create and deploy a Django web app to Azure with a user-assigned managed identity](/azure/developer/python/tutorial-python-managed-identity-user-assigned-cli)
116+
112117
# [NodeJS](#tab/nodejs-postgres-mi)
113118

114119
1. Install dependencies.

articles/app-service/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,8 @@
206206
href: tutorial-connect-msi-sql-database.md
207207
- name: Connect Java Tomcat to Postgres
208208
href: tutorial-java-tomcat-connect-managed-identity-postgresql-database.md
209+
- name: Connect Python Flask app to Postgres
210+
href: /azure/developer/python/tutorial-python-managed-identity-cli?toc=/azure/app-service/toc.json&bc=/azure/bread/toc.json
209211
- name: Connect to Microsoft Graph with managed identity
210212
items:
211213
- name: Use .NET

articles/azure-functions/functions-scenarios.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@
22
title: Azure Functions Scenarios
33
description: Identify key scenarios that use Azure Functions to provide serverless compute resources in aa Azure cloud-based topology.
44
ms.topic: conceptual
5-
ms.custom: devx-track-extended-java, devx-track-js, devx-track-python
6-
ms.date: 05/15/2023
7-
zone_pivot_groups: programming-languages-set-functions-lang-workers
5+
ms.custom:
6+
- devx-track-extended-java
7+
- devx-track-js
8+
- devx-track-python
9+
ms.collection:
10+
- ce-skilling-ai-copilot
11+
ms.date: 07/25/2024
12+
zone_pivot_groups: programming-languages-set-functions
813
---
914

1015
# Azure Functions scenarios
@@ -152,6 +157,7 @@ A function might also call a TensorFlow model or Azure AI services to process an
152157

153158
::: zone pivot="programming-language-csharp"
154159
+ Tutorial: [Text completion using Azure OpenAI](functions-add-openai-text-completion.md?pivots=programming-language-csharp)
160+
+ Sample: [Upload text files and access data using various OpenAI features](https://github.com/azure-samples/azure-functions-openai-demo)
155161
+ Sample: [Text summarization using AI Cognitive Language Service](https://github.com/Azure-Samples/function-csharp-ai-textsummarize)
156162
+ Sample: [Text completion using Azure OpenAI](https://github.com/Azure/azure-functions-openai-extension/tree/main/samples/textcompletion/csharp-ooproc)
157163
+ Sample: [Provide assistant skills to your model](https://github.com/Azure/azure-functions-openai-extension/tree/main/samples/assistant/csharp-ooproc)
@@ -169,6 +175,13 @@ A function might also call a TensorFlow model or Azure AI services to process an
169175
+ Tutorial: [Text completion using Azure OpenAI](functions-add-openai-text-completion.md?pivots=programming-language-javascript)
170176
+ Training: [Create a custom skill for Azure AI Search](/training/modules/create-enrichment-pipeline-azure-cognitive-search)
171177
+ Sample: [Chat using ChatGPT](https://github.com/Azure-Samples/function-javascript-ai-openai-chatgpt)
178+
+ Sample: [Upload text files and access data using various OpenAI features](https://github.com/azure-samples/azure-functions-openai-demo)
179+
::: zone-end
180+
::: zone pivot="programming-language-typescript"
181+
+ Tutorial: [Text completion using Azure OpenAI](functions-add-openai-text-completion.md?pivots=programming-language-typescript)
182+
+ Training: [Create a custom skill for Azure AI Search](/training/modules/create-enrichment-pipeline-azure-cognitive-search)
183+
+ Sample: [Chat using ChatGPT](https://github.com/Azure-Samples/function-javascript-ai-openai-chatgpt)
184+
+ Sample: [Upload text files and access data using various OpenAI features](https://github.com/azure-samples/azure-functions-openai-demo)
172185
::: zone-end
173186
::: zone pivot="programming-language-python"
174187
+ Tutorial: [Text completion using Azure OpenAI](functions-add-openai-text-completion.md?pivots=programming-language-python)

articles/azure-netapp-files/cool-access-introduction.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,16 @@ Using Azure NetApp Files storage with cool access, you can configure inactive da
1616

1717
Most cold data is associated with unstructured data. It can account for more than 50% of the total storage capacity in many storage environments. Infrequently accessed data associated with productivity software, completed projects, and old datasets are an inefficient use of a high-performance storage.
1818

19-
Azure NetApp Files supports cool access with three [service levels](azure-netapp-files-service-levels.md) (Standard, Premium and Ultra).
19+
Azure NetApp Files supports cool access with three [service levels](azure-netapp-files-service-levels.md) (Standard, Premium, and Ultra).
2020

2121
The following diagram illustrates an application with a volume enabled for cool access.
2222

2323
:::image type="content" source="./media/cool-access-introduction/cool-access-explainer.png" alt-text="Diagram of cool access tiering showing cool volumes being moved to the cool tier." lightbox="./media/cool-access-introduction/cool-access-explainer.png" border="false":::
2424

25-
In the initial write, data blocks are assigned a "warm" temperature value (in the diagram, red data blocks) and exist on the "hot" tier. As the data resides on the volume, a temperature scan monitors the activity of each block. When a data block is inactive, the temperature scan decreases the value of the block until it has been inactive for the number of days specified in the cooling period. The cooling period can be between 2 and 183 days; it has a default value of 31 days. Once marked "cold," the tiering scan collects blocks and packages them into 4-MB objects, which are moved to Azure storage fully transparently. To the application and users, those cool blocks still appear online. Tiered data appears to be online and continues to be available to users and applications by transparent and automated retrieval from the cool tier.
25+
In the initial write, data blocks are assigned a "warm" temperature value (in the diagram, red data blocks) and exist on the "hot" tier. As the data resides on the volume, a temperature scan monitors the activity of each block. When a data block is inactive, the temperature scan decreases the value of the block until it has been inactive for the number of days specified in the coolness period. The coolness period can be between 2 and 183 days; it has a default value of 31 days. Once marked "cold," the tiering scan collects blocks and packages them into 4-MB objects, which are moved to Azure storage fully transparently. To the application and users, those cool blocks still appear online. Tiered data appears to be online and continues to be available to users and applications by transparent and automated retrieval from the cool tier.
26+
27+
>[!NOTE]
28+
>When you enable cool access, data that satisfies the conditions set by the coolness period moves to the cool tier. For example, if the coolness period is set to 30 days, any data that has been cool for at least 30 days moves to the cool tier _when_ you enable cool access.
2629
2730
By `Default` (unless cool access retrieval policy is configured otherwise), data blocks on the cool tier that are read randomly again become "warm" and are moved back to the hot tier. Once marked as _warm_, the data blocks are again subjected to the temperature scan. However, large sequential reads (such as index and antivirus scans) on inactive data in the cool tier don't "warm" the data nor do they trigger inactive data to be moved back to the hot tier.
2831

@@ -99,7 +102,7 @@ Billing calculation for a capacity pool is at the hot-tier rate for the data tha
99102

100103
### Examples of billing structure
101104

102-
Assume that you created a 4 TiB Standard capacity pool. The billing structure is at the Standard capacity tier rate for the entire 4 TiB.
105+
Assume that you created a 4-TiB Standard capacity pool. The billing structure is at the Standard capacity tier rate for the entire 4 TiB.
103106

104107
When you create volumes in the capacity pool and start tiering data to the cool tier, the following scenarios explain the applicable billing structure:
105108

articles/azure-netapp-files/manage-cool-access.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ The storage with cool access feature provides options for the “coolness period
2222
* No guarantee is provided for any maximum latency for client workload for any of the service tiers.
2323
* Although cool access is available for the Standard, Premium, and Ultra service levels, how you're billed for using the feature differs from the hot tier service level charges. See the [Billing section](cool-access-introduction.md#billing) for details and examples.
2424
* You can convert an existing capacity pool into a cool-access capacity pool to create cool access volumes. However, once the capacity pool is enabled for cool access, you can't convert it back to a non-cool-access capacity pool.
25+
* When you enable cool access, data that satisfies the conditions set by the coolness period moves to the cool tier. For example, if the coolness period is set to 30 days, any data that has been cool for at least 30 days moves to the cool tier _when_ you enable cool access.
2526
* A cool-access capacity pool can contain both volumes with cool access enabled and volumes with cool access disabled.
2627
* To prevent data retrieval from the cool tier to the hot tier during sequential read operations (for example, antivirus or other file scanning operations), set the cool access retrieval policy to "Default" or "Never." For more information, see [Enable cool access on a new volume](#enable-cool-access-on-a-new-volume).
2728
* After the capacity pool is configured with the option to support cool access volumes, the setting can't be disabled at the _capacity pool_ level. However, you can turn on or turn off the cool access setting at the volume level anytime. Turning off the cool access setting at the _volume_ level stops further tiering of data. 

articles/azure-resource-manager/bicep/add-template-to-azure-pipelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: CI/CD with Azure Pipelines, Bicep, and bicepparam files
33
description: In this quickstart, you learn how to configure continuous integration in Azure Pipelines by using Bicep and bicepparam files. It shows how to use an Azure CLI task to deploy a bicepparam file.
44
ms.topic: quickstart
55
ms.custom: devx-track-bicep, devx-track-azurecli
6-
ms.date: 02/29/2024
6+
ms.date: 09/26/2024
77
---
88

99
# Quickstart: Integrate Bicep with Azure Pipelines

articles/azure-resource-manager/bicep/child-resource-name-type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Child resources in Bicep
33
description: Describes how to set the name and type for child resources in Bicep.
44
ms.topic: conceptual
55
ms.custom: devx-track-bicep
6-
ms.date: 06/23/2023
6+
ms.date: 09/26/2024
77
---
88

99
# Set name and type for child resources in Bicep

articles/azure-resource-manager/bicep/create-resource-group.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Use Bicep to create a new resource group
33
description: Describes how to use Bicep to create a new resource group in your Azure subscription.
44
ms.topic: how-to
55
ms.custom: devx-track-bicep
6-
ms.date: 09/26/2023
6+
ms.date: 09/26/2024
77
---
88

99
# Create resource groups by using Bicep

articles/azure-resource-manager/bicep/deploy-cloud-shell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Deploy Bicep files with Cloud Shell
33
description: Use Azure Resource Manager and Azure Cloud Shell to deploy resources to Azure. The resources are defined in a Bicep file.
44
ms.topic: how-to
55
ms.custom: devx-track-bicep, devx-track-arm-template
6-
ms.date: 06/23/2023
6+
ms.date: 09/26/2024
77
---
88

99
# Deploy Bicep files from Azure Cloud Shell

0 commit comments

Comments
 (0)