Skip to content

Commit d286d52

Browse files
authored
Merge pull request #107658 from roygara/smallFix
Small fix
2 parents cfed879 + 5420ec1 commit d286d52

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

articles/virtual-machines/linux/disks-upload-vhd-to-managed-disk-cli.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to upload a vhd to an Azure managed disk and copy a manag
44
services: "virtual-machines,storage"
55
author: roygara
66
ms.author: rogarana
7-
ms.date: 09/20/2019
7+
ms.date: 03/13/2020
88
ms.topic: article
99
ms.service: virtual-machines
1010
ms.subservice: disks
@@ -23,7 +23,7 @@ Currently, direct upload is supported for standard HDD, standard SSD, and premiu
2323
- Download the latest [version of AzCopy v10](../../storage/common/storage-use-azcopy-v10.md#download-and-install-azcopy).
2424
- [Install the Azure CLI](/cli/azure/install-azure-cli).
2525
- A vhd file, stored locally
26-
- If you intend to upload a vhd from on-premises: A vhd that [has been prepared for Azure](../windows/prepare-for-upload-vhd-image.md), stored locally.
26+
- If you intend to upload a vhd from on-premises: A fixed size vhd that [has been prepared for Azure](../windows/prepare-for-upload-vhd-image.md), stored locally.
2727
- Or, a managed disk in Azure, if you intend to perform a copy action.
2828

2929
## Create an empty managed disk
@@ -75,8 +75,6 @@ This upload has the same throughput as the equivalent [standard HDD](disks-types
7575
AzCopy.exe copy "c:\somewhere\mydisk.vhd""sas-URI" --blob-type PageBlob
7676
```
7777

78-
If your SAS expires during upload, and you haven't called `revoke-access` yet, you can get a new SAS to continue the upload using `grant-access`, again.
79-
8078
After the upload is complete, and you no longer need to write any more data to the disk, revoke the SAS. Revoking the SAS will change the state of the managed disk and allow you to attach the disk to a VM.
8179

8280
```bash

articles/virtual-machines/windows/disks-upload-vhd-to-managed-disk-powershell.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Upload a vhd to Azure using Azure PowerShell
33
description: Learn how to upload a vhd to an Azure managed disk and copy a managed disk across regions, using Azure PowerShell, via direct upload.
44
author: roygara
55
ms.author: rogarana
6-
ms.date: 05/06/2019
6+
ms.date: 03/13/2020
77
ms.topic: article
88
ms.service: virtual-machines-linux
99
ms.tgt_pltfrm: linux
@@ -22,7 +22,7 @@ Currently, direct upload is supported for standard HDD, standard SSD, and premiu
2222

2323
- Download the latest [version of AzCopy v10](../../storage/common/storage-use-azcopy-v10.md#download-and-install-azcopy).
2424
- [Install Azure PowerShell module](/powershell/azure/install-Az-ps).
25-
- If you intend to upload a VHD from on-premises: A VHD that [has been prepared for Azure](prepare-for-upload-vhd-image.md), stored locally.
25+
- If you intend to upload a VHD from on-premises: A fixed size VHD that [has been prepared for Azure](prepare-for-upload-vhd-image.md), stored locally.
2626
- Or, a managed disk in Azure, if you intend to perform a copy action.
2727

2828
## Create an empty managed disk
@@ -72,8 +72,6 @@ This upload has the same throughput as the equivalent [standard HDD](disks-types
7272
AzCopy.exe copy "c:\somewhere\mydisk.vhd" $diskSas.AccessSAS --blob-type PageBlob
7373
```
7474

75-
If your SAS expires during the upload, and you haven't called `revoke-access` yet, you can get a new SAS to continue the upload using `grant-access`, again.
76-
7775
After the upload is complete, and you no longer need to write any more data to the disk, revoke the SAS. Revoking the SAS will change the state of the managed disk and allow you to attach the disk to a VM.
7876

7977
```powershell

0 commit comments

Comments
 (0)