Skip to content

Commit 269cbbb

Browse files
authored
Merge pull request #239577 from MicrosoftDocs/main
5/29/2023 PM Publish
2 parents b32730f + 5419ba3 commit 269cbbb

File tree

9 files changed

+587
-13
lines changed

9 files changed

+587
-13
lines changed

articles/azure-functions/create-first-function-vs-code-python.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Create a Python function using Visual Studio Code - Azure Functions
33
description: Learn how to create a Python function, then publish the local project to serverless hosting in Azure Functions using the Azure Functions extension in Visual Studio Code.
44
ms.topic: quickstart
5-
ms.date: 10/24/2022
5+
ms.date: 05/29/2023
66
ms.devlang: python
77
ms.custom: devx-track-python, mode-api, devdivchpfy22, vscode-azure-extension-update-complete
88
zone_pivot_groups: python-mode-functions
@@ -14,8 +14,14 @@ In this article, you use Visual Studio Code to create a Python function that res
1414

1515
This article covers both Python programming models supported by Azure Functions. Use the selector at the top to choose your programming model.
1616

17+
::: zone pivot="python-mode-configuration"
18+
>[!NOTE]
19+
>There is now a v2 programming model for creating Python functions. To create your first function using [the new v2 programming model](create-first-function-vs-code-python.md?pivots=python-mode-decorators), select **v2** at the top of the article.
20+
::: zone-end
21+
::: zone pivot="python-mode-decorators"
1722
>[!NOTE]
1823
>The v2 programming model provides a decorator based approach to create functions. To learn more about the v2 programming model, see the [Developer Reference Guide](functions-reference-python.md).
24+
::: zone-end
1925

2026
Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
2127

articles/cosmos-db/postgresql/TOC.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,12 @@
230230
- name: PostgreSQL versions
231231
href: reference-versions.md
232232
- name: PostgreSQL extensions
233-
href: reference-extensions.md
233+
items:
234+
- name: Overview
235+
href: reference-extensions.md
236+
- name: Pg_azure_storage
237+
href: reference-pg-azure-storage.md
238+
displayName: pg_azure_storage, extensions
234239
- name: Limits and limitations
235240
href: reference-limits.md
236241
- name: Distributed SQL API
@@ -249,6 +254,7 @@
249254
href: /azure/templates/microsoft.dbforpostgresql/servergroupsv2?pivots=deployment-language-arm-template
250255
- name: Bicep
251256
href: /azure/templates/microsoft.dbforpostgresql/servergroupsv2?pivots=deployment-language-bicep
257+
252258
- name: Resources
253259
items:
254260
- name: Pricing

articles/cosmos-db/postgresql/howto-ingest-azure-blob-storage.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: mulander
66
ms.service: cosmos-db
77
ms.subservice: postgresql
88
ms.topic: how-to
9-
ms.date: 01/30/2023
9+
ms.date: 05/12/2023
1010
---
1111

1212
# How to ingest data using pg_azure_storage in Azure Cosmos DB for PostgreSQL
@@ -66,7 +66,7 @@ pg_size_pretty | 5257 kB
6666
content_type | application/x-gzip
6767
```
6868

69-
You can filter the output either by using a regular SQL `WHERE` clause, or by using the `prefix` parameter of the `blob_list` UDF. The latter will filter the returned rows on the Azure Blob Storage side.
69+
You can filter the output either by using a regular SQL `WHERE` clause, or by using the `prefix` parameter of the `blob_list` UDF. The latter filters the returned rows on the Azure Blob Storage side.
7070

7171

7272
> [!NOTE]
@@ -178,7 +178,7 @@ Currently the extension supports the following file formats:
178178

179179
### Load data with blob_get()
180180

181-
The `COPY` command is convenient, but limited in flexibility. Internally COPY uses the `blob_get` function, which you can use directly to manipulate data in much more complex scenarios.
181+
The `COPY` command is convenient, but limited in flexibility. Internally COPY uses the `blob_get` function, which you can use directly to manipulate data in more complex scenarios.
182182

183183
```sql
184184
SELECT *
@@ -345,4 +345,5 @@ INSERT 0 264308
345345
346346
Congratulations, you just learned how to load data into Azure Cosmos DB for PostgreSQL directly from Azure Blob Storage.
347347
348-
Learn how to create a [real-time dashboard](tutorial-design-database-realtime.md) with Azure Cosmos DB for PostgreSQL.
348+
- Learn how to create a [real-time dashboard](tutorial-design-database-realtime.md) with Azure Cosmos DB for PostgreSQL.
349+
- Learn more about [pg_azure_storage](reference-pg-azure-storage.md).

0 commit comments

Comments
 (0)