Skip to content

Commit 698c075

Browse files
committed
Merge branch 'main' into release-preview-site-manager
2 parents 9b0278b + 34f7e26 commit 698c075

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

articles/cost-management-billing/automate/understand-usage-details-fields.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Microsoft Cost Management
44
description: This article describes the fields in the usage data files.
55
author: bandersmsft
66
ms.author: banders
7-
ms.date: 04/15/2024
7+
ms.date: 04/18/2024
88
ms.topic: conceptual
99
ms.service: cost-management-billing
1010
ms.subservice: cost-management
@@ -76,7 +76,7 @@ MPA accounts have all MCA terms, in addition to the MPA terms, as described in t
7676
| MeterName | All | The name of the meter. Purchases and Marketplace usage might be shown as blank or `unassigned`.|
7777
| MeterRegion | All | Name of the datacenter location for services priced based on location. See Location. |
7878
| MeterSubCategory | All | Name of the meter subclassification category. Purchases and Marketplace usage might be shown as blank or `unassigned`.|
79-
| OfferId¹ | All | Name of the Azure offer, which is the type of Azure subscription that you have. For more information, see supported [Microsoft Azure offer details](https://azure.microsoft.com/support/legal/offer-details/). |
79+
| OfferId¹ | EA, pay-as-you-go | Name of the Azure offer, which is the type of Azure subscription that you have. For more information, see supported [Microsoft Azure offer details](https://azure.microsoft.com/support/legal/offer-details/). |
8080
| pay-as-you-goPrice² ³| All | The market price, also referred to as retail or list price, for a given product or service. For more information, see [Pricing behavior in cost details](automation-ingest-usage-details-overview.md#pricing-behavior-in-cost-details). |
8181
| PartnerEarnedCreditApplied | MPA | Indicates whether the partner earned credit was applied. |
8282
| PartnerEarnedCreditRate | MPA | Rate of discount applied if there's a partner earned credit (PEC), based on partner admin link access. |

articles/hdinsight-aks/release-notes/hdinsight-aks-release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ For more information, see [Control network traffic from HDInsight on AKS Cluster
6262
Upgrade your clusters and cluster pools with the latest software updates. This means that you can enjoy the latest cluster package hotfixes, security updates, and AKS patches, without recreating clusters. For more information, see [Upgrade your HDInsight on AKS clusters and cluster pools](../in-place-upgrade.md).
6363

6464
> [!IMPORTANT]
65-
> To take benefit of all these **latest features**, you are required to create a new cluster pool with 1.1 and clsuter version 1.1.1.
65+
> To take benefit of all these **latest features**, you are required to create a new cluster pool with 1.1 and cluster version 1.1.1.
6666
6767
### Known issues
6868

articles/operator-nexus/how-to-apply-access-control-list-to-network-to-network-interconnects.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Before applying ACLs to NNIs, utilize the following commands to view ACL details
2626
To view the specifics of a particular ACL, execute the following command:
2727

2828
```azurecli
29-
az networkfabric acl show --name acl-ingress --resource-group myResourceGroup
29+
az networkfabric acl show --name "<acl-ingress-name>" --resource-group "<resource-group-name>"
3030
```
3131

3232
This command furnishes detailed information regarding the ACL's configuration, administrative state, default action, and matching conditions.
@@ -36,37 +36,37 @@ This command furnishes detailed information regarding the ACL's configuration, a
3636
To list all ACLs within a resource group, use the command:
3737

3838
```azurecli
39-
az networkfabric acl list --resource-group myResourceGroup
39+
az networkfabric acl list --resource-group "<resource-group-name>"
4040
```
4141

4242
This command presents a comprehensive list of ACLs along with their configuration states and other pertinent details.
4343

4444
#### Applying Ingress ACL to NNI
4545

4646
```azurecli
47-
az networkfabric nni update --resource-group "example-rg" --resource-name "example-nnimgmt" --fabric "examplefabric" --ingress-acl-id "/subscriptions/xxxxx-xxxx-xxxx-xxxx-xxxxx/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/accesscontrollists/example-Ipv4ingressACL"
47+
az networkfabric nni update --resource-group "<resource-group-name>" --resource-name "<nni-name>" --fabric "<fabric-name>" --ingress-acl-id "<ingress-acl-resource-id>"
4848
```
4949

5050
| Parameter | Description |
5151
|-------------------|--------------------------------------------------|
52-
| --ingress-acl-id | Apply the ACL as ingress by specifying its ID. |
52+
| --ingress-acl-id | Apply the ACL as ingress by specifying its resource ID. |
5353

5454
#### Applying Egress ACL to NNI
5555

5656
```azurecli
57-
az networkfabric nni update --resource-group "example-rg" --resource-name "example-nnimgmt" --fabric "examplefabric" --egress-acl-id "/subscriptions/xxxxx-xxxx-xxxx-xxxx-xxxxx/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/accesscontrollists/example-Ipv4ingressACL"
57+
az networkfabric nni update --resource-group "example-rg" --resource-name "<nni-name>" --fabric "<fabric-name>" --egress-acl-id "<egress-acl-resource-id>"
5858
```
5959

6060
| Parameter | Description |
6161
|------------------|------------------------------------------------|
62-
| --egress-acl-id | Apply the ACL as egress by specifying its ID. |
62+
| --egress-acl-id | Apply the ACL as egress by specifying its resource ID. |
6363

6464
#### Applying Ingress and Egress ACLs to NNI:
6565

6666
```azurecli
67-
az networkfabric nni update --resource-group "example-rg" --resource-name "example-nnimgmt" --fabric "examplefabric" --ingress-acl-id "/subscriptions/xxxxx-xxxx-xxxx-xxxx-xxxxx/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/accesscontrollists/example-Ipv4ingressACL" --egress-acl-id "/subscriptions/xxxxx-xxxx-xxxx-xxxx-xxxxx/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/accesscontrollists/example-Ipv4egressACL"
67+
az networkfabric nni update --resource-group "example-rg" --resource-name "<nni-name>" --fabric "<fabric-name>" --ingress-acl-id "<ingress-acl-resource-id>" --egress-acl-id ""<egress-acl-resource-id>""
6868
```
6969

7070
| Parameter | Description |
7171
|-------------------|----------------------------------------------------------------------------------------------------------------|
72-
| --ingress-acl-id, --egress-acl-id | To apply both ingress and egress ACLs simultaneously, create two new ACLs and include their respective IDs. |
72+
| --ingress-acl-id, --egress-acl-id | To apply both ingress and egress ACLs simultaneously, create two new ACLs and include their respective resource IDs. |

articles/spring-apps/enterprise/how-to-prepare-app-deployment.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to prepare an application for deployment to Azure Spring
44
author: KarlErickson
55
ms.service: spring-apps
66
ms.topic: how-to
7-
ms.date: 07/06/2021
7+
ms.date: 04/28/2024
88
ms.author: karler
99
ms.custom: devx-track-java, devx-track-extended-java
1010
zone_pivot_groups: programming-languages-spring-apps
@@ -172,6 +172,7 @@ The following table lists the supported Spring Boot and Spring Cloud combination
172172

173173
For more information, see the following pages:
174174

175+
* [Version support for Java, Spring Boot, and more](concept-app-customer-responsibilities.md#version-support-for-all-plans)
175176
* [Spring Boot support](https://spring.io/projects/spring-boot#support)
176177
* [Spring Cloud Config support](https://spring.io/projects/spring-cloud-config#support)
177178
* [Spring Cloud Netflix support](https://spring.io/projects/spring-cloud-netflix#support)

0 commit comments

Comments
 (0)