Skip to content

Commit 9ccfe43

Browse files
authored
Merge pull request #244743 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents ec9c59c + 9f9e397 commit 9ccfe43

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

articles/communication-services/samples/chat-hero-sample.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In this Sample quickstart, we'll learn how the sample works before we run the sa
2626

2727
## Overview
2828

29-
The sample has both a client-side application and a server-side application. The **client-side application** is a React/Redux web application that uses Microsoft's Fluent UI framework. This application sends requests to an ASP.NET Core **server-side application** that helps the client-side application connect to Azure.
29+
The sample has both a client-side application and a server-side application. The **client-side application** is a React/Redux web application that uses Microsoft's Fluent UI framework. This application sends requests to a Node.js **server-side application** that helps the client-side application connect to Azure.
3030

3131
Here's what the sample looks like:
3232

articles/external-attack-surface-management/understanding-billable-assets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ For example: if www.contoso.com has resolved to 1.2.3.4 and 5.6.7.8 in the past
4444
- www.contoso.com / 5.6.7.8
4545

4646

47-
The list is then analyzed to identify duplicate entries and eliminate duplicate hosts. If a host is a subdomain of a parent host that resolves to the same IP address, we exclude the child from the billable host count. For example, if both www.contoso.com and contoso.com resolve to 1.2.3.4, then we exclude www.contoso.com/ 1.2.3.4 from our Host Count list.
47+
The list is then analyzed to identify duplicate entries and eliminate duplicate hosts. If a host is a subdomain of a parent host that resolves to the same IP address, we exclude the child from the billable host count. For example, if both www.contoso.com and contoso.com resolve to 1.2.3.4, then we exclude www.contoso.com 1.2.3.4 from our Host Count list.
4848

4949

5050

articles/managed-instance-apache-cassandra/configure-hybrid-cluster.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ This quickstart demonstrates how to use the Azure CLI commands to configure a hy
121121
> filename="cert$num.pem"
122122
> cert=$(jq '.pem' <<< $item)
123123
> echo -e $cert >> $filename
124-
> sed -e '1d' -e '$d' -i $filename
124+
> sed -e 's/^"//' -e 's/"$//' -i $filename
125125
> done
126126
> ```
127127

articles/virtual-machines/linux/cli-manage.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ For more detailed help with specific command line switches and options, you can
5353
| Task | Azure CLI commands |
5454
| --- | --- |
5555
| Add a data disk to a VM | `az vm disk attach --resource-group myResourceGroup --vm-name myVM --disk myDataDisk --size-gb 128 --new` |
56+
| List attached disks to a VM | `az vm show --resource-group groupName --name vmName --query "storageProfile"` |
5657
| Remove a data disk from a VM | `az vm disk detach --resource-group myResourceGroup --vm-name myVM --disk myDataDisk` |
5758
| Resize a disk | `az disk update --resource-group myResourceGroup --name myDataDisk --size-gb 256` |
5859
| Snapshot a disk | `az snapshot create --resource-group myResourceGroup --name mySnapshot --source myDataDisk` |

0 commit comments

Comments
 (0)