Skip to content

Commit e4235e4

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into nw-schema
2 parents 3c5b306 + 4b5abab commit e4235e4

127 files changed

Lines changed: 924 additions & 1650 deletions

File tree

Some content is hidden

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

articles/app-service/app-service-configure-premium-v4-tier.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Configure Premium V4 Tier
33
description: Learn how to better performance for your web, mobile, and API app in Azure App Service by scaling to the new Premium V4 pricing tier.
44
keywords: app service, azure app service, scale, scalable, app service plan, app service cost
55
ms.topic: how-to
6-
ms.date: 07/17/2025
6+
ms.date: 08/22/2025
77
ms.author: msangapu
88
author: msangapu-msft
99
ms.custom:
@@ -104,6 +104,7 @@ Premium V4 is available in the following regions:
104104
- East US 2
105105
- France Central
106106
- Japan East
107+
- Korea Central
107108
- North Central US
108109
- North Europe
109110
- Norway East

articles/app-service/overview-local-cache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ tags: optional
66
ms.assetid: e34d405e-c5d4-46ad-9b26-2a1eda86ce80
77
ms.topic: conceptual
88
ms.date: 04/17/2025
9-
ms.update-cycle: 1095-days
9+
ms.update-cycle: 180-days
1010
ms.custom: UpdateFrequency3
1111
ms.author: msangapu
1212
author: msangapu-msft

articles/app-service/overview-tls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how TLS and SSL work in Azure App Service, including TLS vers
44
keywords: Azure App Service, SSL, TLS, HTTPS, certificate management, TLS mutual authentication, secure bindings, SSL certificates, App Service Certificates, SSL in code, TLS versions
55
ms.topic: overview
66
ms.date: 04/17/2025
7-
ms.update-cycle: 1095-days
7+
ms.update-cycle: 180-days
88
ms.author: msangapu
99
author: msangapu-msft
1010
ms.service: azure-app-service

articles/application-gateway/for-containers/overview.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: mbender-ms
66
ms.custom: references_regions
77
ms.service: azure-appgw-for-containers
88
ms.topic: overview
9-
ms.date: 7/21/2025
9+
ms.date: 8/21/2025
1010
ms.author: mbender
1111
# Customer intent: "As a cloud architect, I want to understand how Application Gateway for Containers functions, so that I can effectively implement it for load balancing and traffic management within my Kubernetes cluster."
1212
---
@@ -114,6 +114,8 @@ Application Gateway for Containers is currently offered in the following regions
114114
- UAE North
115115
- UK South
116116
- West US
117+
- West US 2
118+
- West US 3
117119
- West Europe
118120

119121
### Implementation of Gateway API

articles/application-gateway/quick-create-bicep.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ The Bicep file used in this quickstart is from [Azure Quickstart Templates](http
3838
> [!TIP]
3939
> You can modify values of the `Name` and `Tier` parameters under `resource\applicationGateWay\properties\sku` to use a different SKU. For example: `Basic`.
4040
41+
> [!NOTE]
42+
> In regions that support availability zones, if you don't specify zones during creation via CLI, PowerShell, ARM/Bicep, or the REST API—Azure Application Gateway automatically enables zone redundancy, distributing instances across multiple availability zones for enhanced resiliency
43+
4144
Multiple Azure resources are defined in the Bicep file:
4245

4346
- [**Microsoft.Network/applicationgateways**](/azure/templates/microsoft.network/applicationgateways)

articles/application-gateway/quick-create-cli.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ az group create --name myResourceGroupAG --location eastus
4444

4545
## Create network resources
4646

47-
For Azure to communicate between the resources that you create, it needs a virtual network. The application gateway subnet can contain only application gateways. No other resources are allowed. You can either create a new subnet for Application Gateway or use an existing one. In this example, you create two subnets: one for the application gateway, and another for the backend servers. You can configure the Frontend IP of the Application Gateway to be Public or Private as per your use case. In this example, you'll choose a Public Frontend IP address.
47+
For Azure to communicate between the resources that you create, it needs a virtual network. The application gateway subnet can contain only application gateways. No other resources are allowed. You can either create a new subnet for Application Gateway or use an existing one. In this example, you create two subnets: one for the application gateway, and another for the backend servers. You can configure the Frontend IP of the Application Gateway to be Public or Private as per your use case. In this example, you'll choose a Public Frontend IP address.
4848

4949
> [!NOTE]
5050
> Application Gateway frontend now supports dual-stack IP addresses (Public Preview). You can now create up to four frontend IP addresses: Two IPv4 addresses (public and private) and two IPv6 addresses (public and private).
@@ -175,6 +175,9 @@ It can take up to 30 minutes for Azure to create the application gateway. After
175175
- **appGatewayFrontendIP**: Located on the **Frontend IP configurations** page. It assigns *myAGPublicIPAddress* to **appGatewayHttpListener**.
176176
- **rule1**: Located on the **Rules** page. It specifies the default routing rule that's associated with **appGatewayHttpListener**.
177177

178+
> [!NOTE]
179+
> In regions that support availability zones, if you don't specify zones during creation via CLI, PowerShell, ARM/Bicep, or the REST API—Azure Application Gateway automatically enables zone redundancy, distributing instances across multiple availability zones for enhanced resiliency
180+
178181
## Test the application gateway
179182

180183
Although Azure doesn't require an NGINX web server to create the application gateway, you installed it in this quickstart to verify whether Azure successfully created the application gateway. To get the public IP address of the new application gateway, use `az network public-ip show`.

articles/application-gateway/quick-create-powershell.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,9 @@ New-AzApplicationGateway `
171171
> [!TIP]
172172
> You can modify values of the `Name` and `Tier` parameters to use a different SKU. For example: `Basic`.
173173
174+
> [!NOTE]
175+
> In regions that support availability zones, if you don't specify zones during creation via CLI, PowerShell, ARM/Bicep, or the REST API—Azure Application Gateway automatically enables zone redundancy, distributing instances across multiple availability zones for enhanced resiliency
176+
174177
### Backend servers
175178

176179
Now that you have created the Application Gateway, create the backend virtual machines which will host the websites. A backend can be composed of NICs, virtual machine scale sets, public IP address, internal IP address, fully qualified domain names (FQDN), and multitenant backends like Azure App Service.

articles/application-gateway/quick-create-template.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ The template used in this quickstart is from [Azure Quickstart Templates](https:
4747
> [!TIP]
4848
> You can modify values of the `Name` and `Tier` parameters under `resource\applicationGateWay\properties\sku` to use a different SKU. For example: `Basic`. For information about deploying custom templates, see [Create and deploy ARM templates](../azure-resource-manager/templates/quickstart-create-templates-use-the-portal.md).
4949
50+
> [!NOTE]
51+
> In regions that support availability zones, if you don't specify zones during creation via CLI, PowerShell, ARM/Bicep, or the REST API—Azure Application Gateway automatically enables zone redundancy, distributing instances across multiple availability zones for enhanced resiliency
52+
5053
Multiple Azure resources are defined in the template:
5154

5255
- [**Microsoft.Network/applicationgateways**](/azure/templates/microsoft.network/applicationgateways)

articles/application-gateway/tutorial-autoscale-ps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.custom: mvc, devx-track-azurepowershell
1313
---
1414
# Tutorial: Create an application gateway that improves web application access
1515

16-
If you're an IT admin concerned with improving web application access, you can optimize your application gateway to scale based on customer demand and span multiple [availability zones](../reliability/availability-zones-overview.md). This tutorial helps you configure Azure Application Gateway v2 features that do that: autoscaling, zone redundancy, and static VIPs. You'll use Azure PowerShell cmdlets and the Azure Resource Manager deployment model to solve the problem.
16+
If you're an IT administrator aiming to improve web application access, you can optimize your application gateway to scale dynamically based on customer demand and span multiple [availability zones](../reliability/availability-zones-overview.md). This tutorial helps you configure key Azure Application Gateway v2 features, including autoscaling, zone redundancy, and static VIPs, to achieve those improvements. You'll use Azure PowerShell cmdlets and the Azure Resource Manager deployment model to solve the problem.
1717

1818
In this tutorial, you learn how to:
1919

@@ -28,7 +28,7 @@ In this tutorial, you learn how to:
2828
2929
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
3030

31-
For more information on availability zone support in Application Gateway v2, see [Reliability for Application Gateway v2](../reliability/reliability-application-gateway-v2.md).
31+
For more information about availability zone support in Application Gateway v2, see [Reliability for Application Gateway v2](../reliability/reliability-application-gateway-v2.md).
3232

3333
## Prerequisites
3434

articles/azure-functions/functions-bindings-event-grid-trigger.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Azure Event Grid trigger for Azure Functions
33
description: Learn to run code when Event Grid events in Azure Functions are dispatched.
44
ms.topic: reference
5-
ms.date: 04/02/2023
5+
ms.date: 08/20/2025
66
ms.devlang: csharp
77
# ms.devlang: csharp, java, javascript, powershell, python
88
ms.custom: devx-track-csharp, fasttrack-edit, devx-track-python, devx-track-extended-java, devx-track-js, devx-track-ts
@@ -44,11 +44,11 @@ The type of the input parameter used with an Event Grid trigger depends on these
4444

4545
When running your C# function in an isolated worker process, you need to define a custom type for event properties. The following example defines a `MyEventType` class.
4646

47-
:::code language="csharp" source="~/azure-functions-dotnet-worker/samples/Extensions/EventGrid/EventGridFunction.cs" range="35-48":::
47+
:::code language="csharp" source="~/azure-functions-dotnet-worker/samples/Extensions/EventGrid/EventGridFunction.cs" range="33-45":::
4848

4949
The following example shows how the custom type is used in both the trigger and an Event Grid output binding:
5050

51-
:::code language="csharp" source="~/azure-functions-dotnet-worker/samples/Extensions/EventGrid/EventGridFunction.cs" range="11-33":::
51+
:::code language="csharp" source="~/azure-functions-dotnet-worker/samples/Extensions/EventGrid/EventGridFunction.cs" range="11-29":::
5252

5353
# [In-process model](#tab/in-process)
5454

@@ -342,7 +342,7 @@ Both [in-process](functions-dotnet-class-library.md) and [isolated worker proces
342342

343343
Here's an `EventGridTrigger` attribute in a method signature:
344344

345-
:::code language="csharp" source="~/azure-functions-dotnet-worker/samples/Extensions/EventGrid/EventGridFunction.cs" range="13-16":::
345+
:::code language="csharp" source="~/azure-functions-dotnet-worker/samples/Extensions/EventGrid/EventGridFunction.cs" range="11-14":::
346346

347347
# [In-process model](#tab/in-process)
348348

0 commit comments

Comments
 (0)