Skip to content

Commit fef2854

Browse files
committed
example formatting
1 parent 9c82cc5 commit fef2854

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/storage/blobs/point-in-time-restore-manage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,15 +116,15 @@ Restore-AzStorageBlobRange -ResourceGroupName $rgName `
116116

117117
### Restore a single range of block blobs
118118

119-
To restore a range of blobs, call the Restore-AzStorageBlobRange command and specify one or more lexicographical ranges of container and blob names for the `-BlobRestoreRange` parameter. The start of the range is in inclusive, and the end of the range is exclusive.
119+
To restore a range of blobs, call the Restore-AzStorageBlobRange command and specify a lexicographical range of container and blob names for the `-BlobRestoreRange` parameter. The start of the range is in inclusive, and the end of the range is exclusive.
120120

121121
For example, to restore the blobs in a single container named *sample-container*, you can specify a range that starts with *sample-container* and ends with *sample-container1*. There is no requirement for the containers named in the start and end ranges to exist. Because the end of the range is exclusive, even if the storage account includes a container named *sample-container1*, only the container named *sample-container* will be restored by the restore operation:
122122

123123
```powershell
124124
$range = New-AzStorageBlobRangeToRestore -StartRange sample-container -EndRange sample-container1
125125
```
126126

127-
To specify a subset of blobs in a container to restore, use a forward slash (/) to separate the container name from the blob pattern. For example, the following range selects blobs in the container whose names begin with the letters d through f:
127+
To specify a subset of blobs in a container to restore, use a forward slash (/) to separate the container name from the blob pattern. For example, the following range selects blobs in the container whose names begin with the letters *d* through *f*:
128128

129129
```powershell
130130
$range = New-AzStorageBlobRangeToRestore -StartRange sample-container/d -EndRange sample-container/g
@@ -142,7 +142,7 @@ Restore-AzStorageBlobRange -ResourceGroupName $rgName `
142142

143143
### Restore multiple ranges of block blobs
144144

145-
To restore multiple ranges of block blobs, specify an array of ranges for the `-BlobRestoreRange` parameter:
145+
To restore multiple ranges of block blobs, specify an array of ranges for the `-BlobRestoreRange` parameter. The following example restores the complete contents of *container1* and *container4*:
146146

147147
```powershell
148148
$range1 = New-AzStorageBlobRangeToRestore -StartRange container1 -EndRange container2

0 commit comments

Comments
 (0)