Skip to content

Commit 512d955

Browse files
Merge pull request #286543 from ggailey777/freshness
[Functions][Freshness] UUF and other freshness for Sept 2024
2 parents 1ee6d67 + 2534827 commit 512d955

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

articles/azure-functions/functions-bindings-cosmosdb-v2-input.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1532,7 +1532,20 @@ Both [in-process](functions-dotnet-class-library.md) and [isolated worker proces
15321532

15331533
_Applies only to the Python v2 programming model._
15341534

1535-
For Python v2 functions defined using a decorator, the following properties on the `cosmos_db_input`:
1535+
Python v2 functions are defined using the `cosmos_db_input` decorator, which supports these properties, depending on the extension version:
1536+
1537+
### [Extension 4.x+](#tab/extensionv4)
1538+
1539+
| Property | Description |
1540+
|-------------|-----------------------------|
1541+
|`arg_name` | The variable name used in function code that represents the list of documents with changes. |
1542+
|`database_name` | The name of the Azure Cosmos DB database with the collection being monitored. |
1543+
|`container_name` | The name of the Azure Cosmos DB collection being monitored. |
1544+
|`connection` | The connection string of the Azure Cosmos DB being monitored. |
1545+
|`partition_key` | The partition key of the Azure Cosmos DB being monitored. |
1546+
|`id` | The ID of the document to retrieve. |
1547+
1548+
### [Functions 2.x+](#tab/functionsv2)
15361549

15371550
| Property | Description |
15381551
|-------------|-----------------------------|
@@ -1543,6 +1556,8 @@ For Python v2 functions defined using a decorator, the following properties on t
15431556
|`partition_key` | The partition key of the Azure Cosmos DB being monitored. |
15441557
|`id` | The ID of the document to retrieve. |
15451558

1559+
---
1560+
15461561
For Python functions defined by using *function.json*, see the [Configuration](#configuration) section.
15471562
::: zone-end
15481563

articles/azure-functions/functions-compare-logic-apps-ms-flow-webjobs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The following table helps you determine whether Power Automate or Logic Apps is
4242
| **Design tool** |In-browser and mobile app, UI only |In-browser, [Visual Studio Code](../logic-apps/quickstart-create-logic-apps-visual-studio-code.md), and [Visual Studio](../logic-apps/quickstart-create-logic-apps-with-visual-studio.md) with code view available |
4343
| **Application lifecycle management (ALM)** |Power Platform [provides tools](/power-platform/alm/tools-apps-used-alm) that integrate with DevOps and [GitHub Actions](/power-platform/alm/devops-github-actions) to let you build automated pipelines in the ALM cycle. |Azure DevOps: source control, testing, support, automation, and manageability in [Azure Resource Manager](../logic-apps/logic-apps-azure-resource-manager-templates-overview.md) |
4444
| **Admin experience** |Manage Power Automate environments and data loss prevention (DLP) policies, track licensing: [Admin center](https://admin.powerplatform.microsoft.com) |Manage resource groups, connections, access management, and logging: [Azure portal](https://portal.azure.com) |
45-
| **Security** |Microsoft 365 security audit logs, DLP, [encryption at rest](https://wikipedia.org/wiki/Data_at_rest#Encryption) for sensitive data |Security assurance of Azure: [Azure security](https://www.microsoft.com/en-us/trustcenter/Security/AzureSecurity), [Microsoft Defender for Cloud](https://azure.microsoft.com/services/security-center/), [audit logs](https://azure.microsoft.com/blog/azure-audit-logs-ux-refresh/) |
45+
| **Security** |Microsoft 365 security audit logs, DLP, [encryption at rest](https://wikipedia.org/wiki/Data_at_rest#Encryption) for sensitive data |Security assurance of Azure: [Azure security](https://www.microsoft.com/en-us/trustcenter/Security/AzureSecurity), [Microsoft Defender for Cloud](https://azure.microsoft.com/services/security-center/), [audit logs](/azure/security/fundamentals/log-audit) |
4646

4747
## Compare Azure Functions and Azure Logic Apps
4848

articles/azure-functions/functions-create-function-app-portal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Create your first function in the Azure portal
33
description: Learn how to create your first Azure Function for serverless execution using the Azure portal.
44
ms.topic: how-to
5-
ms.date: 07/03/2024
5+
ms.date: 09/11/2024
66
ms.custom: devx-track-csharp, mvc, devcenter, cc996988-fb4f-47, devdivchpfy22, devx-track-extended-java, devx-track-js, devx-track-python, build-2024, devx-track-ts
77
zone_pivot_groups: programming-languages-set-functions
88
---
@@ -78,7 +78,7 @@ You must have a function app to host the execution of your functions. A function
7878

7979
Use these steps to create your function app and related Azure resources, whether or not you're able to edit your code in the Azure portal.
8080
::: zone pivot="programming-language-csharp"
81-
To be able to create a C# script app that you can edit in the portal, you must choose **6 (LTS)** for .NET **Version**.
81+
To be able to create a C# script app that you can edit in the portal, choose **8 (LTS), in-process model** for .NET **Version**.
8282
::: zone-end
8383

8484
[!INCLUDE [Create function app Azure portal](../../includes/functions-create-function-app-portal.md)]

articles/azure-functions/functions-deployment-slots.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ Keep in mind the following points:
4545

4646
- Settings related to event sources and bindings must be configured as [deployment slot settings](#manage-settings) *before you start a swap*. Marking them as "sticky" ahead of time ensures events and outputs are directed to the proper instance.
4747

48+
- When you create a new staging slot, all existing settings from the production slot are created in the new slot, regardless of the *stickiness* of the setting.
49+
4850
## Manage settings
4951

5052
Some configuration settings are slot-specific. The following lists detail which settings change when you swap slots, and which remain the same.

0 commit comments

Comments
 (0)