Skip to content

Commit b5ef5b4

Browse files
Merge pull request #297688 from MicrosoftDocs/main
Merged by Learn.Build PR Management system
2 parents c2ea096 + 0f93f88 commit b5ef5b4

File tree

10 files changed

+25
-58
lines changed

10 files changed

+25
-58
lines changed

articles/application-gateway/ingress-controller-install-existing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: greg-lindsay
66
ms.service: azure-application-gateway
77
ms.custom: devx-track-arm-template, devx-track-azurecli
88
ms.topic: how-to
9-
ms.date: 2/28/2025
9+
ms.date: 4/4/2025
1010
ms.author: greglin
1111
---
1212

@@ -264,15 +264,15 @@ Use [Cloud Shell](https://shell.azure.com/) to install the AGIC Helm package:
264264
1. Install the Helm chart with the `helm-config.yaml` configuration from the previous step:
265265

266266
```bash
267-
helm install agic-controller oci://mcr.microsoft.com/azure-application-gateway/charts/ingress-azure --version 1.8.0 -f helm-config.yaml
267+
helm install agic-controller oci://mcr.microsoft.com/azure-application-gateway/charts/ingress-azure --version 1.8.1 -f helm-config.yaml
268268
```
269269

270270
Alternatively, you can combine `helm-config.yaml` and the Helm command in one step:
271271

272272
```bash
273273
helm install oci://mcr.microsoft.com/azure-application-gateway/charts/ingress-azure \
274274
--name agic-controller \
275-
--version 1.8.0 \
275+
--version 1.8.1 \
276276
--namespace default \
277277
--debug \
278278
--set appgw.name=applicationgatewayABCD \

articles/application-gateway/ingress-controller-install-new.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: application-gateway
55
author: greg-lindsay
66
ms.service: azure-application-gateway
77
ms.topic: how-to
8-
ms.date: 10/15/2024
8+
ms.date: 4/4/2025
99
ms.author: greglin
1010
---
1111

@@ -288,7 +288,7 @@ If you use [Cloud Shell](https://shell.azure.com/), you don't need to install He
288288
1. Install the AGIC package:
289289
290290
```bash
291-
helm install agic-controller oci://mcr.microsoft.com/azure-application-gateway/charts/ingress-azure --version 1.8.0 -f helm-config.yaml
291+
helm install agic-controller oci://mcr.microsoft.com/azure-application-gateway/charts/ingress-azure --version 1.8.1 -f helm-config.yaml
292292
```
293293
294294
## Install a sample app

articles/application-gateway/ingress-controller-update-ingress-controller.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: application-gateway
55
author: greg-lindsay
66
ms.service: azure-application-gateway
77
ms.topic: how-to
8-
ms.date: 2/28/2025
8+
ms.date: 4/4/2025
99
ms.author: greglin
1010
---
1111

@@ -39,7 +39,7 @@ You can upgrade the Azure Application Gateway Ingress Controller (AGIC) for Kube
3939
helm upgrade \
4040
odd-billygoat \
4141
oci://mcr.microsoft.com/azure-application-gateway/charts/ingress-azure \
42-
--version 1.8.0
42+
--version 1.8.1
4343
```
4444

4545
## Roll back

articles/azure-functions/functions-add-output-binding-cosmos-db-vs-code.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@ In the [previous quickstart article](./create-first-function-vs-code-csharp.md),
7878

7979
|Prompt| Selection|
8080
|--|--|
81-
|**Enter new app setting name**| Type `CosmosDbConnectionSetting`.|
82-
|**Enter value for "CosmosDbConnectionSetting"**| Paste the connection string of your Azure Cosmos DB account you copied. You can also configure [Microsoft Entra identity](./functions-bindings-cosmosdb-v2-trigger.md#connections) as an alternative.|
81+
|**Enter new app setting name**| Type `CosmosDbConnectionString`.|
82+
|**Enter value for "CosmosDbConnectionString"**| Paste the connection string of your Azure Cosmos DB account you copied. You can also configure [Microsoft Entra identity](./functions-bindings-cosmosdb-v2-trigger.md#connections) as an alternative.|
8383

84-
This creates an application setting named connection `CosmosDbConnectionSetting` in your function app in Azure. Now, you can download this setting to your local.settings.json file.
84+
This creates an application setting named connection `CosmosDbConnectionString` in your function app in Azure. Now, you can download this setting to your local.settings.json file.
8585

8686
1. Press <kbd>F1</kbd> again to open the command palette, then search for and run the command `Azure Functions: Download Remote Settings...`.
8787

@@ -136,7 +136,7 @@ The `MyDocument` class defines an object that gets written to the database. The
136136

137137
The `MultiResponse` class allows you to both write to the specified collection in the Azure Cosmos DB and return an HTTP success message. Because you need to return a `MultiResponse` object, you need to also update the method signature.
138138

139-
Specific attributes specify the name of the container and the name of its parent database. The connection string for your Azure Cosmos DB account is set by the `CosmosDbConnectionSetting`.
139+
Specific attributes specify the name of the container and the name of its parent database. The connection string for your Azure Cosmos DB account is set by the `CosmosDbConnectionString`.
140140
::: zone-end
141141
::: zone pivot="programming-language-javascript"
142142
Binding attributes are defined directly in your function code. The [Azure Cosmos DB output configuration](./functions-bindings-cosmosdb-v2-output.md#configuration) describes the fields required for an Azure Cosmos DB output binding.
@@ -155,10 +155,10 @@ Binding attributes are defined directly in the *function_app.py* file. You use t
155155

156156
```python
157157
@app.cosmos_db_output(arg_name="outputDocument", database_name="my-database",
158-
container_name="my-container", connection="CosmosDbConnectionSetting")
158+
container_name="my-container", connection="CosmosDbConnectionString")
159159
```
160160

161-
In this code, `arg_name` identifies the binding parameter referenced in your code, `database_name` and `container_name` are the database and collection names that the binding writes to, and `connection` is the name of an application setting that contains the connection string for the Azure Cosmos DB account, which is in the `CosmosDbConnectionSetting` setting in the *local.settings.json* file.
161+
In this code, `arg_name` identifies the binding parameter referenced in your code, `database_name` and `container_name` are the database and collection names that the binding writes to, and `connection` is the name of an application setting that contains the connection string for the Azure Cosmos DB account, which is in the `CosmosDbConnectionString` setting in the *local.settings.json* file.
162162
::: zone-end
163163

164164
## Add code that uses the output binding

articles/azure-netapp-files/azure-government.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ All [Azure NetApp Files features](whats-new.md) available on Azure public cloud
2525
| Azure NetApp Files features | Azure public cloud availability | Azure Government availability |
2626
|:--- |:--- |:--- |
2727
| Azure NetApp Files large volumes | Generally available (GA) | Generally available [(select regions)](large-volumes-requirements-considerations.md#supported-regions) |
28-
| Azure NetApp Files file access logs | Public preview | Public preview [(select regions)](manage-file-access-logs.md#supported-regions) |
28+
| Azure NetApp Files file access logs | Public preview | No |
2929

3030
## Portal access
3131

articles/azure-netapp-files/manage-file-access-logs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: azure-netapp-files
55
author: b-ahibbard
66
ms.service: azure-netapp-files
77
ms.topic: how-to
8-
ms.date: 04/01/2025
8+
ms.date: 04/04/2025
99
ms.author: anfdocs
1010
ms.custom: references_regions
1111
---
@@ -106,13 +106,13 @@ Availability for file access log is limited to the following regions:
106106
- Central US
107107
- East US
108108
- East US 2
109+
- Japan East
109110
- Japan West
110111
- North Europe
111112
- South Central US
112113
- Switzerland North
113114
- Switzerland West
114115
- UK South
115-
- US Gov Virginia
116116
- West Europe
117117
- West US
118118
- West US 2

articles/azure-resource-manager/management/azure-subscription-service-limits.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,6 @@ The following limits apply when you use Azure Resource Manager and Azure resourc
6363

6464
[!INCLUDE [azure-resource-groups-limits](../../../includes/azure-resource-groups-limits.md)]
6565

66-
<a name='azure-active-directory-limits'></a>
67-
68-
## Microsoft Entra ID limits
69-
70-
[!INCLUDE [entra-service-limits](../../../includes/entra-service-limits-include.md)]
71-
7266
## Azure API Center limits
7367

7468
[!INCLUDE [api-center-service-limits](../../api-center/includes/api-center-service-limits.md)]
@@ -404,10 +398,6 @@ For limits specific to Media Services v2 (legacy), see [Media Services v2 (legac
404398

405399
[!INCLUDE [mobile-services-limits](../../../includes/mobile-services-limits.md)]
406400

407-
## Microsoft Entra service limits
408-
409-
[!INCLUDE [microsoft-entra-service-limits](../../../includes/entra-service-limits-include.md)]
410-
411401
## Azure networking limits
412402

413403
[!INCLUDE [azure-virtual-network-limits](../../../includes/azure-virtual-network-limits.md)]
@@ -482,6 +472,12 @@ Unless stated otherwise, the following limits apply to Azure VPN Gateway resourc
482472

483473
[!INCLUDE [dev-box-limits](../../../includes/dev-box-limits.md)]
484474

475+
<a name='azure-active-directory-limits'></a>
476+
477+
## Microsoft Entra service limits
478+
479+
See [Microsoft Entra service limits](/entra/identity/users/directory-service-limits-restrictions) for Microsoft Entra service limits.
480+
485481
## Microsoft Purview limits
486482

487483
See [Classic Microsoft Purview data governance limits](../../purview/how-to-manage-quotas.md#classic-microsoft-purview-data-governance-limits) for the most current Microsoft Purview quotas.

articles/azure-vmware/architecture-network-design-considerations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The following ASNs are reserved for internal Azure VMware Solution infrastructur
4646

4747
- **Transport ASNs (T0 Gateways):** 64513 (NSX Edges), 64600 – 64940
4848

49-
- **Management ASNs:** 65000 – 65412
49+
- **Management ASNs:** 65000 – 65412, 398656-398670, 400572-400581
5050

5151
### Impact of Using Reserved ASNs
5252

articles/cost-management-billing/costs/save-share-views.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Cost analysis is used to explore costs and get quick answers for things like fin
1818

1919
## Save and share cost views
2020

21-
A *view* is a saved query in Cost Management. When you save a view, all settings in cost analysis are saved, including filters, grouping, granularity, the main chart type, and donut charts. Underlying data isn't saved. Only you can see private views, while everyone with Cost Management Reader access or greater to the scope can see shared views.
21+
A *view* is a saved query in Cost Management. When you save a view, all settings in cost analysis are saved, including filters, grouping, granularity, the main chart type, and donut charts. A view is saved only within the scope in which it was created. Underlying data isn't saved. Only you can see the private views you saved per scope, while shared views, saved within a scope, can be seen by anyone with Cost Management Reader access or greater to the scope.
2222

2323
Check out the [Sharing and saving views](https://www.youtube.com/watch?v=kQkXXj-SmvQ) video.
2424

@@ -36,7 +36,7 @@ You can also pin the current view to an Azure portal dashboard. Pinning only inc
3636
1. After you save a view, it's available to select from the **View** menu.
3737
:::image type="content" source="./media/save-share-views/view-list.png" alt-text="Screen shot showing the View list." lightbox="./media/save-share-views/view-list.png" :::
3838

39-
You can save up to 100 private views across all scopes for yourself and up to 100 shared views per scope that anyone with Cost Management Reader or greater access can use.
39+
You can save up to 100 private views, across all scopes you have access to, for yourself and up to 100 shared views per scope that anyone with Cost Management Reader or greater access can use.
4040

4141
### To share a view
4242

0 commit comments

Comments
 (0)