Skip to content

Commit 11f7288

Browse files
author
Stephen Tramer
committed
Fix typos [Closes MicrosoftDocs#1096]
1 parent 47be7d2 commit 11f7288

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs-conceptual/azps-2.2.0/migrate-az-1.0.0.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ uses the `PSDatalakeStoreAccount` returned from `Get-AzDataLakeStoreAccount` sho
282282

283283
Should be changed to
284284
```azurepowershell-interactive
285-
New-AzMMediaService -Tag @{TagName="TagValue"}
285+
New-AzMediaService -Tag @{TagName="TagValue"}
286286
```
287287

288288
### Az.Monitor (previously AzureRM.Insights)
@@ -393,7 +393,7 @@ $b.ICloudBlob.Snapshot()
393393
Az:
394394

395395
```azurepowershell-interactive
396-
$b = Get-AzureStorageBlob -Container $containerName -Blob $blobName -Context $ctx
396+
$b = Get-AzStorageBlob -Container $containerName -Blob $blobName -Context $ctx
397397
$task = $b.ICloudBlob.SnapshotAsync()
398398
$task.Wait()
399399
$snapshot = $task.Result
@@ -411,7 +411,7 @@ $snapshot = $Share.Snapshot()
411411
Az:
412412

413413
```azurepowershell-interactive
414-
$Share = Get-AzureStorageShare -Name $containerName -Context $ctx
414+
$Share = Get-AzStorageShare -Name $containerName -Context $ctx
415415
$task = $Share.SnapshotAsync()
416416
$task.Wait()
417417
$snapshot = $task.Result
@@ -429,7 +429,7 @@ $b.ICloudBlob.Undelete()
429429
Az:
430430

431431
```azurepowershell-interactive
432-
$b = Get-AzureStorageBlob -Container $containerName -Blob $blobName -IncludeDeleted -Context $ctx
432+
$b = Get-AzStorageBlob -Container $containerName -Blob $blobName -IncludeDeleted -Context $ctx
433433
$task = $b.ICloudBlob.UndeleteAsync()
434434
$task.Wait()
435435
```
@@ -449,11 +449,11 @@ $pageBlob.ICloudBlob.SetPremiumBlobTier("P4")
449449
Az:
450450

451451
```azurepowershell-interactive
452-
$blockBlob = Get-AzureStorageBlob -Container $containerName -Blob $blockBlobName -Context $ctx
452+
$blockBlob = Get-AzStorageBlob -Container $containerName -Blob $blockBlobName -Context $ctx
453453
$task = $blockBlob.ICloudBlob.SetStandardBlobTierAsync("hot")
454454
$task.Wait()
455455
456-
$pageBlob = Get-AzureStorageBlob -Container $containerName -Blob $pageBlobName -Context $ctx
456+
$pageBlob = Get-AzStorageBlob -Container $containerName -Blob $pageBlobName -Context $ctx
457457
$task = $pageBlob.ICloudBlob.SetPremiumBlobTierAsync("P4")
458458
$task.Wait()
459459
```

0 commit comments

Comments
 (0)