Skip to content

Commit 3252fa3

Browse files
authored
Merge pull request #292609 from MicrosoftDocs/main
1/3/2024 PM Publish
2 parents c0bbef1 + 8dbbde3 commit 3252fa3

35 files changed

+561
-1175
lines changed

articles/azure-cache-for-redis/managed-redis/managed-redis-architecture.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ Each SKU of Azure Managed Redis is configured to run a specific number of Redis
7474
| Tiers | Flash Optimized | Memory Optimized | Balanced | Compute Optimized |
7575
|:-----------:|:-------------------:|:--------------------:|:--------------------:|:--------------------:|
7676
| Size (GB) | vCPUs/primary shards | vCPUs/primary shards | vCPUs/primary shards | vCPUs/primary shards |
77-
| 0.5 | - | - | 2/1 | - |
78-
| 1 | - | - | 2/1 | - |
79-
| 3 | - | - | 2/1 | 4/2 |
80-
| 6 | - | - | 2/1 | 4/2 |
81-
| 12 | - | 2/1 | 4/2 | 8/6 |
77+
| 0.5 | - | - | 2/2 | - |
78+
| 1 | - | - | 2/2 | - |
79+
| 3 | - | - | 2/2 | 4/2 |
80+
| 6 | - | - | 2/2 | 4/2 |
81+
| 12 | - | 2/2 | 4/2 | 8/6 |
8282
| 24 | - | 4/2 | 8/6 | 16/12 |
8383
| 60 | - | 8/6 | 16/12 | 32/24 |
8484
| 120 | - | 16/12 | 32/24 | 64/48 |

articles/azure-cache-for-redis/managed-redis/managed-redis-how-to-import-export-data.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,7 @@ Export allows you to export the data stored in Azure Managed Redis. You can use
8585

8686
> [!IMPORTANT]
8787
>
88-
> - Export works with page blobs that are supported by both classic and Resource Manager storage accounts.
89-
> - Azure Managed Redis does not support exporting to ADLS Gen2 storage accounts.
90-
> - If your cache data export to Firewall-enabled storage accounts fails, refer to [What if I have firewall enabled on my storage account?](#what-if-i-have-firewall-enabled-on-my-storage-account)
88+
> If your cache data export to Firewall-enabled storage accounts fails, refer to [What if I have firewall enabled on my storage account?](#what-if-i-have-firewall-enabled-on-my-storage-account)
9189
>
9290
> For more information, see [Azure storage account overview](/azure/storage/common/storage-account-overview).
9391
>

articles/azure-functions/functions-scenarios.md

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.custom:
88
- devx-track-python
99
ms.collection:
1010
- ce-skilling-ai-copilot
11-
ms.date: 07/25/2024
11+
ms.date: 12/19/2024
1212
zone_pivot_groups: programming-languages-set-functions
1313
---
1414

@@ -55,8 +55,7 @@ public static async Task Run([BlobTrigger("catalog-uploads/{name}", Source = Blo
5555
}
5656
```
5757

58-
+ [Upload and analyze a file with Azure Functions and Blob Storage](../storage/blobs/blob-upload-function-trigger.md?tabs=dotnet)
59-
+ [Automate resizing uploaded images using Event Grid](../event-grid/resize-images-on-storage-blob-upload-event.md?tabs=dotnet)
58+
+ [Upload and analyze a file with Azure Functions and Blob Storage](../storage/blobs/blob-upload-function-trigger.md)
6059
+ [Trigger Azure Functions on blob containers using an event subscription](functions-event-grid-blob-trigger.md?pivots=programming-language-csharp)
6160
::: zone-end
6261

@@ -65,15 +64,18 @@ public static async Task Run([BlobTrigger("catalog-uploads/{name}", Source = Blo
6564
::: zone-end
6665

6766
::: zone pivot="programming-language-javascript"
68-
+ [Upload and analyze a file with Azure Functions and Blob Storage](../storage/blobs/blob-upload-function-trigger.md?tabs=nodejsv10)
69-
+ [Automate resizing uploaded images using Event Grid](../event-grid/resize-images-on-storage-blob-upload-event.md?tabs=nodejsv10)
67+
+ [Upload and analyze a file with Azure Functions and Blob Storage](../storage/blobs/blob-upload-function-trigger-javascript.md)
7068
+ [Trigger Azure Functions on blob containers using an event subscription](functions-event-grid-blob-trigger.md?pivots=programming-language-javascript)
7169
::: zone-end
7270

7371
::: zone pivot="programming-language-powershell"
7472
+ [Trigger Azure Functions on blob containers using an event subscription](functions-event-grid-blob-trigger.md?pivots=programming-language-powershell)
7573
::: zone-end
7674

75+
::: zone pivot="programming-language-typescript"
76+
+ [Trigger Azure Functions on blob containers using an event subscription](functions-event-grid-blob-trigger.md?pivots=programming-language-typescript)
77+
::: zone-end
78+
7779
::: zone pivot="programming-language-java"
7880
+ [Trigger Azure Functions on blob containers using an event subscription](functions-event-grid-blob-trigger.md?pivots=programming-language-java)
7981
::: zone-end
@@ -286,9 +288,8 @@ public static async Task<IActionResult> Run(
286288
+ Article: [Create serverless APIs in Visual Studio using Azure Functions and API Management integration](./openapi-apim-integrate-visual-studio.md)
287289
+ Training: [Expose multiple function apps as a consistent API by using Azure API Management](/training/modules/build-serverless-api-with-functions-api-management/)
288290
+ Sample: [Implement the geode pattern by deploying the API to geodes in distributed Azure regions.](https://github.com/mspnp/geode-pattern-accelerator)
289-
+ [Azure Functions HTTP trigger](functions-bindings-http-webhook.md?pivots=programming-language-csharp)
291+
+ Article: [Azure Functions HTTP trigger](functions-bindings-http-webhook.md?pivots=programming-language-csharp)
290292
+ Sample: [Web application with a C# API and Azure SQL DB on Static Web Apps and Functions](/samples/azure-samples/todo-csharp-sql-swa-func/todo-csharp-sql-swa-func/)
291-
+ [Azure Functions HTTP trigger](functions-bindings-http-webhook.md?pivots=programming-language-csharp)
292293
::: zone-end
293294

294295
::: zone pivot="programming-language-python"
@@ -302,10 +303,12 @@ public static async Task<IActionResult> Run(
302303
::: zone pivot="programming-language-powershell"
303304
+ [Azure Functions HTTP trigger](functions-bindings-http-webhook.md?pivots=programming-language-powershell)
304305
::: zone-end
305-
306+
::: zone pivot="programming-language-typescript"
307+
+ [Azure Functions HTTP trigger](functions-bindings-http-webhook.md?pivots=programming-language-typescript)
308+
::: zone-end
306309
::: zone pivot="programming-language-java"
307310
+ Training: [Develop Java serverless Functions on Azure using Maven](/training/modules/develop-azure-functions-app-with-maven-plugin/)
308-
+ [Azure Functions HTTP trigger](functions-bindings-http-webhook.md?pivots=programming-language-java)
311+
+ Article: [Azure Functions HTTP trigger](functions-bindings-http-webhook.md?pivots=programming-language-java)
309312
::: zone-end
310313

311314
## Build a serverless workflow
@@ -325,6 +328,11 @@ Functions is often the compute component in a serverless workflow topology, such
325328
+ Training: [Deploy serverless APIs with Azure Functions, Logic Apps, and Azure SQL Database](/training/modules/deploy-backend-apis/)
326329
::: zone-end
327330

331+
::: zone pivot="programming-language-typescript"
332+
+ Quickstart: [Create your first durable function in Azure using JavaScript](./durable/quickstart-ts-vscode.md)
333+
+ Training: [Deploy serverless APIs with Azure Functions, Logic Apps, and Azure SQL Database](/training/modules/deploy-backend-apis/)
334+
::: zone-end
335+
328336
::: zone pivot="programming-language-python"
329337
+ Quickstart: [Create your first durable function in Azure using Python](./durable/quickstart-python-vscode.md)
330338
+ Training: [Deploy serverless APIs with Azure Functions, Logic Apps, and Azure SQL Database](/training/modules/deploy-backend-apis/)
@@ -344,7 +352,9 @@ There are processes where you might need to log, audit, or perform some other op
344352

345353
[ ![Diagram of a function being used to respond to database changes.](./media/functions-scenarios/respond-to-database-changes.png) ](./media/functions-scenarios/respond-to-database-changes-expanded.png#lightbox)
346354

347-
Consider the following examples:
355+
::: zone pivot="programming-language-csharp,programming-language-javascript,programming-language-python"
356+
Consider these examples:
357+
::: zone-end
348358

349359
::: zone pivot="programming-language-csharp"
350360
+ Article: [Connect Azure Functions to Azure Cosmos DB using Visual Studio Code](functions-add-output-binding-cosmos-db-vs-code.md?pivots=programming-language-csharp&tabs=isolated-process)
@@ -370,7 +380,7 @@ For example, you can use triggers on Azure Storage queues as a way to chain toge
370380

371381
[ ![Diagram of Azure Functions in a reliable message system.](./media/functions-scenarios/create-reliable-message-systems.png) ](./media/functions-scenarios/create-reliable-message-systems-expanded.png#lightbox)
372382

373-
The following article shows how to write output to a storage queue.
383+
These articles show how to write output to a storage queue:
374384

375385
::: zone pivot="programming-language-csharp"
376386
+ Article: [Connect Azure Functions to Azure Storage using Visual Studio Code](functions-add-output-binding-storage-queue-vs-code.md?pivots=programming-language-csharp&tabs=isolated-process)
@@ -408,7 +418,9 @@ And these articles show how to trigger from an Azure Service Bus queue or topic.
408418
::: zone pivot="programming-language-javascript"
409419
+ [Azure Service Bus trigger for Azure Functions](functions-bindings-service-bus-trigger.md?pivots=programming-language-javascript)
410420
::: zone-end
411-
421+
::: zone pivot="programming-language-typescript"
422+
+ [Azure Service Bus trigger for Azure Functions](functions-bindings-service-bus-trigger.md?pivots=programming-language-typescript)
423+
::: zone-end
412424
::: zone pivot="programming-language-python"
413425
+ [Azure Service Bus trigger for Azure Functions](functions-bindings-service-bus-trigger.md?pivots=programming-language-python)
414426
::: zone-end

articles/azure-functions/functions-versions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ All functions in a function app must share the same language. You choose the lan
3131

3232
[!INCLUDE [functions-supported-languages](../../includes/functions-supported-languages.md)]
3333

34-
For information about the language versions of previously supported versions of the Functions runtime, see [Retired runtime versions](language-support-policy.md#retired-runtime-versions).
34+
For information about the language versions of previously supported versions of the Functions runtime, see [Retired runtime versions](language-support-policy.md#language-support-related-resources).
3535

3636
## <a name="creating-1x-apps"></a>Run on a specific version
3737

0 commit comments

Comments
 (0)