Skip to content

Commit a60693e

Browse files
committed
fixing merge conflict
2 parents bd60bcd + 68dc7e5 commit a60693e

File tree

55 files changed

+519
-145
lines changed

Some content is hidden

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

55 files changed

+519
-145
lines changed

articles/automation/add-user-assigned-identity.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ PATCH
120120
"identity": {
121121
"type": "SystemAssigned, UserAssigned",
122122
"userAssignedIdentities": {
123-
"/subscriptions/ffffffff-eeee-dddd-cccc-bbbbbbbbbbb0/resourceGroups/resource-group-name/providers/Microsoft.ManagedIdentity/userAssignedIdentities/firstIdentity": {},
124-
"/subscriptions/ffffffff-eeee-dddd-cccc-bbbbbbbbbbb0/resourceGroups/resource-group-name/providers/Microsoft.ManagedIdentity/userAssignedIdentities/secondIdentity": {}
123+
"/subscriptions/00a000aa-00a0-00aa-00aa-0a0aa000aa00/resourceGroups/resource-group-name/providers/Microsoft.ManagedIdentity/userAssignedIdentities/firstIdentity": {},
124+
"/subscriptions/00a000aa-00a0-00aa-00aa-0a0aa000aa00/resourceGroups/resource-group-name/providers/Microsoft.ManagedIdentity/userAssignedIdentities/secondIdentity": {}
125125
}
126126
}
127127
}
@@ -130,7 +130,7 @@ PATCH
130130
The syntax of the API is as follows:
131131

132132
```http
133-
https://management.azure.com/subscriptions/ffffffff-eeee-dddd-cccc-bbbbbbbbbbb0/resourceGroups/resource-group-name/providers/Microsoft.Automation/automationAccounts/automation-account-name?api-version=2020-01-13-preview
133+
https://management.azure.com/subscriptions/00a000aa-00a0-00aa-00aa-0a0aa000aa00/resourceGroups/resource-group-name/providers/Microsoft.Automation/automationAccounts/automation-account-name?api-version=2020-01-13-preview
134134
```
135135

136136
#### Example
@@ -176,15 +176,15 @@ Perform the following steps.
176176
```json
177177
{
178178
"type": "SystemAssigned, UserAssigned",
179-
"principalId": "ffffffff-eeee-dddd-cccc-bbbbbbbbbbb0",
180-
"tenantId": "ffffffff-eeee-dddd-cccc-bbbbbbbbbbb0",
179+
"principalId": "00a000aa-00a0-00aa-00aa-0a0aa000aa00",
180+
"tenantId": "00a000aa-00a0-00aa-00aa-0a0aa000aa00",
181181
"userAssignedIdentities": {
182182
"/subscriptions/ContosoID/resourcegroups/ContosoLab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ContosoUAMI1": {
183-
"PrincipalId": "ffffffff-eeee-dddd-cccc-bbbbbbbbbbb0",
183+
"PrincipalId": "00a000aa-00a0-00aa-00aa-0a0aa000aa00",
184184
"ClientId": "00001111-aaaa-2222-bbbb-3333cccc4444"
185185
},
186186
"/subscriptions/ContosoID/resourcegroups/ContosoLab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ContosoUAMI2": {
187-
"PrincipalId": "ffffffff-eeee-dddd-cccc-bbbbbbbbbbb0",
187+
"PrincipalId": "00a000aa-00a0-00aa-00aa-0a0aa000aa00",
188188
"ClientId": "00001111-aaaa-2222-bbbb-3333cccc4444"
189189
}
190190
}

articles/automation/enable-managed-identity-for-automation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ Perform the following steps.
185185
186186
```json
187187
{
188-
"PrincipalId": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa",
189-
"TenantId": "bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb",
188+
"PrincipalId": "00a000aa-00a0-00aa-00aa-0a0aa000aa00",
189+
"TenantId": "00a000aa-00a0-00aa-00aa-0a0aa000aa00",
190190
"Type": 0,
191191
"UserAssignedIdentities": null
192192
}

articles/container-apps/metrics.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: container-apps
55
author: craigshoemaker
66
ms.service: azure-container-apps
77
ms.topic: how-to
8-
ms.date: 11/01/2024
8+
ms.date: 04/28/2025
99
ms.author: cshoe
1010
---
1111

@@ -26,7 +26,7 @@ Container Apps provides these basic metrics.
2626
| Network In Bytes | Replica, Revision | Network received bytes | `RxBytes` | Bytes |
2727
| Network Out Bytes | Replica, Revision | Network transmitted bytes | `TxBytes` | Bytes |
2828
| Replica count | Revision | Number of active replicas | `Replicas` | Count |
29-
| Replica Restart Count | Replica, Revision | Restarts count of container app replicas | `RestartCount` | Count |
29+
| Total Replica Restart Count | Replica, Revision | Total number of restarts since the replica came online | `RestartCount` | Count |
3030
| Requests | Replica, Revision, Status Code, Status Code Category | Requests processed | `Requests` | Count |
3131
| Reserved Cores | Revision | Number of reserved cores for container app revisions | `CoresQuotaUsed` | Count |
3232
| Resiliency Connection Timeouts | Revision | Total connection timeouts | `ResiliencyConnectTimeouts` | Count |
@@ -42,9 +42,6 @@ Container Apps provides these basic metrics.
4242

4343
The metrics namespace is `Microsoft.App/containerapps`.
4444

45-
> [!NOTE]
46-
> Replica restart count is the aggregate restart count over the specified time range, not the number of restarts that occurred at a point in time.
47-
4845
Container Apps environments provides this basic metric. You can only view this metric in [Azure Monitor metrics](https://ms.portal.azure.com/?feature.allrts=true#view/Microsoft_Azure_Monitoring/AzureMonitoringBrowseBlade/~/metrics).
4946

5047
| Title | Dimensions | Description | Metric ID | Unit |

articles/devtest-labs/devtest-lab-add-vm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This article describes how to create Azure virtual machines (VMs) in Azure DevTe
3939
- **Virtual machine size**: Keep the default value for the base, or select **Change Size** to select a different size. For more information about default VM sizes, see [Default VM sizes](#default-vm-sizes).
4040
- **Allow hibernation**: Select this option to enable hibernation for the virtual machine.
4141
>[!NOTE]
42-
>If you enable hibernation, you must also select **Public IP** in **Advanced Settings**. **Private** and **Shared** IPs aren't supported if hibernation is enabled.
42+
>If you enable hibernation, you must also select either **Public IP** or **Private IP** in **Advanced Settings**. Hibernation for **Shared IPs** isn't currently supported.
4343
- **OS disk type**: Keep the default value for the base, or select a different option from the dropdown list.
4444
- **Security type**: You can select **Trusted launch** to enable trusted launch for Generation 2 VMs. If you select **Trusted launch**, select the **Enable secure boot**, **Enable vTPM**, and **Integrity monitoring** checkboxes as needed. For more information, see [Trusted Launch for Azure virtual machines](/azure/virtual-machines/trusted-launch).
4545
- **Artifacts**: Optionally, select **Add or Remove Artifacts** to select and configure artifacts to add to the VM. For instructions, see [Add artifacts](#add-artifacts).

articles/devtest-labs/devtest-lab-gen2-vm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ You need at least [user](devtest-lab-add-devtest-user.md#devtest-labs-user) acce
4545
- **Password**: If you don't choose to use a secret, enter a VM password between 8 and 123 characters long.
4646
- **Save as default password**: Select this checkbox to save the password in the Key Vault associated with the lab.
4747
- **Virtual machine size**: Keep the default value for the base, or select **Change Size** to select different sizes.
48-
- **Allow hibernation**: Select this option to enable hibernation for the virtual machine. If you enable Hibernation, you also must select **Public IP** in the Advanced settings as Private and Shared IP are currently not supported if Hibernation is enabled.
48+
- **Allow hibernation**: Select this option to enable hibernation for the virtual machine. If you enable Hibernation, you also must select either **Public IP** or **Private IP** in the Advanced settings. Hibernation for **Shared IPs** isn't currently supported.
4949
- **OS disk type**: Keep the default value for the base, or select a different option from the dropdown list.
5050
- **Security type**: Select **Trusted Launch** to enable it for Generation 2 VMs. On selecting Trusted Launch, the options Secure boot, vTPM, and Integrity Monitoring will appear. Based on your needs, select the appropriate options among them for your deployment. For more information, see [Trusted Launch-enabled security features](/azure/virtual-machines/trusted-launch#secure-boot).
5151
- **Artifacts**: This field shows the number of artifacts already configured for this VM base. Optionally, select **Add or Remove Artifacts** to select and configure artifacts to add to the VM.

articles/devtest-labs/devtest-lab-hibernate-vm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ You need at least [user](devtest-lab-add-devtest-user.md#devtest-labs-user) acce
5555
- **Password**: If you don't choose to use a secret, enter a VM password between 8 and 123 characters long.
5656
- **Save as default password**: Select this checkbox to save the password in the Key Vault associated with the lab.
5757
- **Virtual machine size**: Keep the default value for the base, or select **Change Size** to select different sizes.
58-
- **Allow hibernation**: Select this option to enable hibernation for the virtual machine. If you enable Hibernation, you also must select **Public IP** in the Advanced settings as Private and Shared IP are currently not supported if Hibernation is enabled.
58+
- **Allow hibernation**: Select this option to enable hibernation for the virtual machine. If you enable Hibernation, you also must select either **Public IP** or **Private IP** in the Advanced settings. Hibernation for **Shared IPs** isn't currently supported.
5959
- **OS disk type**: Keep the default value for the base, or select a different option from the dropdown list.
6060
- **Security type**: Select **Trusted Launch** to enable it for Gen2 VMs. On selecting Trusted Launch When the options Secure boot, vTPM, and Integrity Monitoring appear, select the appropriate options for your deployment. For more information, see [Trusted Launch-enabled security features](/azure/virtual-machines/trusted-launch#secure-boot).
6161
- **Artifacts**: This field shows the number of artifacts already configured for this VM base. Optionally, select **Add or Remove Artifacts** to select and configure artifacts to add to the VM.

articles/devtest-labs/devtest-lab-trusted-launch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ You need at least [user](devtest-lab-add-devtest-user.md#devtest-labs-user) acce
4545
- **Password**: If you don't choose to use a secret, enter a VM password between 8 and 123 characters long.
4646
- **Save as default password**: Select this checkbox to save the password in the Key Vault associated with the lab.
4747
- **Virtual machine size**: Keep the default value for the base, or select **Change Size** to select different sizes.
48-
- **Allow hibernation**: Select this option to enable hibernation for this virtual machine. If you enable Hibernation, you also must select **Public IP** in the Advanced settings as Private and Shared IP are currently not supported if Hibernation is enabled.
48+
- **Allow hibernation**: Select this option to enable hibernation for this virtual machine. If you enable Hibernation, you also must select either **Public IP** or **Private IP** in the Advanced settings. Hibernation for **Shared IPs** isn't currently supported.
4949
- **OS disk type**: Keep the default value for the base, or select a different option from the dropdown list.
5050
- **Security type**: Select **Trusted Launch** to enable it for Generation 2 VMs. On selecting Trusted Launch, the options Secure boot, vTPM, and Integrity Monitoring will appear. Based on your needs, select the appropriate options among them for your deployment. For more information, see [Trusted Launch-enabled security features](/azure/virtual-machines/trusted-launch#secure-boot).
5151
- **Artifacts**: This field shows the number of artifacts already configured for this VM base. Optionally, select **Add or Remove Artifacts** to select and configure artifacts to add to the VM.

articles/devtest-labs/tutorial-create-custom-lab.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ To add a VM to the lab, follow these steps. For more information, see [Create la
8080
- **Virtual machine size**: Keep the default value for the base, or select **Change Size** to select a different size.
8181
- **Allow hibernation**: You can select this checkbox to enable hibernation for this VM. For this tutorial, keep the checkbox deselected.
8282
>[!NOTE]
83-
>If you enable hibernation, you must also select **Public** for **IP Address** in the **Advanced settings**, because **Private** and **Shared** IPs aren't supported if hibernation is enabled.
83+
>If you enable hibernation, you must also select either **Public** or **Private** for **IP Address** in the **Advanced settings**, because hibernation for **Shared** IPs isn't currently supported.
8484
- **OS disk type**: You can select a disk type from the dropdown list. For this tutorial, keep the default value.
8585
- **Artifacts**: You can select **Add or Remove Artifacts** to select and configure artifacts to add to the VM. For more information, see [Add artifacts](devtest-lab-add-vm.md#add-optional-artifacts).
8686

articles/event-hubs/compare-tiers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Compare Azure Event Hubs tiers
33
description: This article compares supported tiers of Azure Event Hubs.
44
ms.topic: article
5-
ms.date: 02/15/2024
5+
ms.date: 04/29/2025
66
---
77

88
# Compare Azure Event Hubs tiers

articles/event-hubs/event-hubs-quickstart-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Run the following command to create an Event Hubs namespace in the resource grou
4343

4444
```azurepowershell-interactive
4545
$namespaceName="myNamespace$(Get-Random)"
46-
New-AzEventHubNamespace -ResourceGroupName $rgName -NamespaceName $namespaceName -Location $region
46+
New-AzEventHubNamespace -ResourceGroupName $rgName -Name $namespaceName -Location $region
4747
```
4848

4949
You see the output similar to the following one. You see the name of the namespace in the `Name` field.

0 commit comments

Comments
 (0)