Skip to content

Commit 092ca8b

Browse files
authored
Merge pull request #276268 from alexbuckgit/alexbuckgit/docutune-autopr-20240524-054247-9575223-ignore-build
[BULK] - DocuTune - Fix spacing and line break issues (part 9)
2 parents 577161f + 18f34b3 commit 092ca8b

File tree

8 files changed

+14
-32
lines changed

8 files changed

+14
-32
lines changed

articles/service-health/resource-graph-samples.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ ms.custom: subject-resourcegraph-sample, devx-track-azurepowershell, devx-track-
77
---
88
# Azure Resource Graph sample queries for Azure Service Health
99

10-
This page is a collection of [Azure Resource Graph](../governance/resource-graph/overview.md) sample
11-
queries for Azure Service Health. For a complete list of Azure Resource Graph samples, see
12-
[Resource Graph samples by Category](../governance/resource-graph/samples/samples-by-category.md)
13-
and [Resource Graph samples by Table](../governance/resource-graph/samples/samples-by-table.md).
10+
This page is a collection of [Azure Resource Graph](../governance/resource-graph/overview.md) sample queries for Azure Service Health. For a complete list of Azure Resource Graph samples, see [Resource Graph samples by Category](../governance/resource-graph/samples/samples-by-category.md) and [Resource Graph samples by Table](../governance/resource-graph/samples/samples-by-table.md).
1411

1512
## Azure Service Health
1613

articles/service-health/resource-health-alert-monitor-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You also can configure who the alert should be sent to:
2828
* Select an existing action group.
2929
* a new action group (that can be used for future alerts).
3030

31-
To learn more about action groups, see [ and manage action groups](../azure-monitor/alerts/action-groups.md).
31+
To learn more about action groups, see [Azure Monitor action groups](../azure-monitor/alerts/action-groups.md).
3232

3333
For information on how to configure resource health notification alerts by using Azure Resource Manager templates, see [Resource Manager templates](./resource-health-alert-arm-template-guide.md).
3434

articles/spring-apps/enterprise/how-to-deploy-powershell.md

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,15 @@ The requirements for completing the steps in this article depend on your Azure s
3535
Install-Module -Name Az.SpringCloud
3636
```
3737

38-
* If you have multiple Azure subscriptions, choose the appropriate subscription in which the
39-
resources should be billed. Select a specific subscription by using the [Set-AzContext](/powershell/module/az.accounts/set-azcontext) cmdlet:
38+
* If you have multiple Azure subscriptions, choose the appropriate subscription in which the resources should be billed. Select a specific subscription by using the [Set-AzContext](/powershell/module/az.accounts/set-azcontext) cmdlet:
4039

4140
```azurepowershell-interactive
4241
Set-AzContext -SubscriptionId 00000000-0000-0000-0000-000000000000
4342
```
4443

4544
## Create a resource group
4645

47-
A resource group is a logical container in which Azure resources are deployed and managed as
48-
a group. Create an [Azure resource group](../../azure-resource-manager/management/overview.md)
49-
by using the [New-AzResourceGroup](/powershell/module/az.resources/new-azresourcegroup)
46+
A resource group is a logical container in which Azure resources are deployed and managed as a group. Create an [Azure resource group](../../azure-resource-manager/management/overview.md) by using the [New-AzResourceGroup](/powershell/module/az.resources/new-azresourcegroup)
5047
cmdlet. The following example creates a resource group with a specified name and location.
5148

5249
```azurepowershell-interactive
@@ -55,9 +52,7 @@ New-AzResourceGroup -Name <resource group name> -Location eastus
5552

5653
## Provision a new instance
5754

58-
To create a new instance of Azure Spring Apps, you use the
59-
[New-AzSpringCloud](/powershell/module/az.springcloud/new-azspringcloud) cmdlet. The following
60-
example creates an Azure Spring Apps service, with the name that you specified in the resource group you created previously.
55+
To create a new instance of Azure Spring Apps, you use the [New-AzSpringCloud](/powershell/module/az.springcloud/new-azspringcloud) cmdlet. The following example creates an Azure Spring Apps service, with the name that you specified in the resource group you created previously.
6156

6257
```azurepowershell-interactive
6358
New-AzSpringCloud -ResourceGroupName <resource group name> -name <service instance name> -Location eastus
@@ -85,9 +80,7 @@ New-AzSpringCloudAppDeployment -ResourceGroupName <resource group name> -Service
8580

8681
## Get a service and its properties
8782

88-
To get an Azure Spring Apps service and its properties, you use the
89-
[Get-AzSpringCloud](/powershell/module/az.springcloud/get-azspringcloud) cmdlet. The following
90-
example retrieves information about the specified Azure Spring Apps service.
83+
To get an Azure Spring Apps service and its properties, you use the [Get-AzSpringCloud](/powershell/module/az.springcloud/get-azspringcloud) cmdlet. The following example retrieves information about the specified Azure Spring Apps service.
9184

9285
```azurepowershell-interactive
9386
Get-AzSpringCloud -ResourceGroupName <resource group name> -ServiceName <service instance name>

articles/storage/common/resource-graph-samples.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@ ms.custom: subject-resourcegraph-sample
1414

1515
# Azure Resource Graph sample queries for Azure Storage
1616

17-
This page is a collection of [Azure Resource Graph](../../governance/resource-graph/overview.md)
18-
sample queries for Azure Storage. For a complete list of Azure Resource Graph samples, see
19-
[Resource Graph samples by Category](../../governance/resource-graph/samples/samples-by-category.md)
20-
and [Resource Graph samples by Table](../../governance/resource-graph/samples/samples-by-table.md).
17+
This page is a collection of [Azure Resource Graph](../../governance/resource-graph/overview.md) sample queries for Azure Storage. For a complete list of Azure Resource Graph samples, see [Resource Graph samples by Category](../../governance/resource-graph/samples/samples-by-category.md) and [Resource Graph samples by Table](../../governance/resource-graph/samples/samples-by-table.md).
2118

2219
## Sample queries
2320

articles/virtual-machines/linux/hibernate-resume-troubleshooting-linux.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ systemctl status hibernation-setup-tool
3737
A successful status should return "Inactive (dead)”, and the log messages should say "Swap file for VM hibernation set up successfully"
3838

3939
Example:
40+
4041
```
4142
azureuser@:~$ systemctl status hibernation-setup-tool
4243
● hibernation-setup-tool.service - Hibernation Setup Tool
@@ -47,12 +48,12 @@ azureuser@:~$ systemctl status hibernation-setup-tool
4748
4849
linuxhib2 hibernation-setup-tool[1131]: INFO: update-grub2 finished successfully.
4950
linuxhib2 hibernation-setup-tool[1131]: INFO: udev rule to hibernate with systemd set up in /etc/udev/rules.d/99-vm-hibernation.rules. Telling udev about it.
50-
51-
51+
...
52+
...
5253
linuxhib2 hibernation-setup-tool[1131]: INFO: systemctl finished successfully.
5354
linuxhib2 hibernation-setup-tool[1131]: INFO: Swap file for VM hibernation set up successfully
54-
5555
```
56+
5657
If the guest OS isn't configured for hibernation, take the appropriate action to resolve the issue. For example, if the guest failed to configure hibernation due to insufficient space, resize the OS disk to resolve the issue.
5758

5859

articles/virtual-machines/resource-graph-samples.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ ms.custom: subject-resourcegraph-sample, devx-track-azurepowershell, devx-track-
1010
---
1111
# Azure Resource Graph sample queries for Azure Virtual Machines
1212

13-
This page is a collection of [Azure Resource Graph](../governance/resource-graph/overview.md)
14-
sample queries for Azure Virtual Machines. For a complete list of Azure Resource Graph samples, see
15-
[Resource Graph samples by Category](../governance/resource-graph/samples/samples-by-category.md)
16-
and [Resource Graph samples by Table](../governance/resource-graph/samples/samples-by-table.md).
13+
This page is a collection of [Azure Resource Graph](../governance/resource-graph/overview.md) sample queries for Azure Virtual Machines. For a complete list of Azure Resource Graph samples, see [Resource Graph samples by Category](../governance/resource-graph/samples/samples-by-category.md) and [Resource Graph samples by Table](../governance/resource-graph/samples/samples-by-table.md).
1714

1815
## Sample queries
1916

articles/virtual-machines/security-controls-policy-image-builder.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ ms.custom: subject-policy-compliancecontrols
1515

1616
**Applies to:** :heavy_check_mark: Linux VMs :heavy_check_mark: Windows VMs :heavy_check_mark: Flexible scale sets :heavy_check_mark: Uniform scale sets
1717

18-
[Regulatory Compliance in Azure Policy](../governance/policy/concepts/regulatory-compliance.md)
19-
provides initiative definitions, known as _built-ins_, for the compliance domains and security controls related to different compliance standards. Microsoft creates and manages these built-ins.
18+
[Regulatory Compliance in Azure Policy](../governance/policy/concepts/regulatory-compliance.md) provides initiative definitions, known as _built-ins_, for the compliance domains and security controls related to different compliance standards. Microsoft creates and manages these built-ins.
2019

2120
In this article, you can refer to a list of the compliance domains and security controls for Azure VM Image Builder. You can assign the built-ins for a security control individually, to help make your Azure resources compliant with the specific standard.
2221

articles/virtual-machines/workloads/mainframe-rehosting/overview.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,7 @@ Learn how to [move mainframe storage to Azure](./concepts/mainframe-storage-azur
9494

9595
### Backup and recovery
9696

97-
Maintaining your own disaster recovery site can be an expensive proposition. Azure has easy-to-implement and cost-effective options for
98-
[backup](../../../backup/backup-overview.md), [recovery](../../../site-recovery/site-recovery-overview.md), and [redundancy](../../../storage/common/storage-redundancy.md)
99-
at local or regional levels, or via geo-redundancy.
97+
Maintaining your own disaster recovery site can be an expensive proposition. Azure has easy-to-implement and cost-effective options for [backup](../../../backup/backup-overview.md), [recovery](../../../site-recovery/site-recovery-overview.md), and [redundancy](../../../storage/common/storage-redundancy.md) at local or regional levels, or via geo-redundancy.
10098

10199
## Azure Government for mainframe migrations
102100

0 commit comments

Comments
 (0)