Skip to content

Commit 6b58163

Browse files
committed
Learn Editor: Update access-tiers-online-manage.md
1 parent 512dec3 commit 6b58163

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

articles/storage/blobs/access-tiers-online-manage.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You can set a blob's access tier in any of the following ways:
2020

2121
- By setting the account default access tier setting for the storage account. Blobs in the account inherit this access tier unless you explicitly override the setting for an individual blob.
2222

23-
- By explicitly setting a blob's tier on upload. You can create a blob in the hot, cool, cold, smart, or archive tier.
23+
- By explicitly setting a blob's tier on upload. You can create a blob in the hot, cool, cold, or archive tier.
2424
- By changing an existing blob's tier with a Set Blob Tier operation. Typically, you would use this operation to move from a hotter tier to a cooler one.
2525
- By copying a blob with a Copy Blob operation. Typically, you would use this operation to move from a cooler tier to a hotter one.
2626

@@ -94,7 +94,7 @@ N/A
9494

9595
When you upload a blob to Azure Storage, you have two options for setting the blob's tier on upload:
9696

97-
- You can explicitly specify the tier in which the blob will be created. This setting overrides the default access tier for the storage account. You can set the tier for a blob or set of blobs on upload to hot, cool, cold, smart or archive.
97+
- You can explicitly specify the tier in which the blob will be created. This setting overrides the default access tier for the storage account. You can set the tier for a blob or set of blobs on upload to hot, cool, cold or archive.
9898
- You can upload a blob without specifying a tier. In this case, the blob will be created in the default access tier specified for the storage account (either hot or cool).
9999

100100
If you are uploading a new blob that uses an encryption scope, you cannot change the access tier for that blob.
@@ -129,7 +129,7 @@ To upload a blob or set of blobs to a specific tier with PowerShell, call the [S
129129
$rgName = <resource-group>
130130
$storageAccount = <storage-account>
131131
$containerName = <container>
132-
# tier can be hot, cool, cold, smart, or archive
132+
# tier can be hot, cool, cold, or archive
133133
$tier = <tier>
134134
135135
# Get context object
@@ -154,7 +154,7 @@ Get-ChildItem -Path "C:\sample-blobs" -File -Recurse |
154154

155155
### [Azure CLI](#tab/azure-cli)
156156

157-
To upload a blob to a specific tier with Azure CLI, call the [az storage blob upload](/cli/azure/storage/blob#az-storage-blob-upload) command, as shown in the following example. Remember to replace the placeholder values in brackets with your own values. Replace the `<tier>` placeholder with `hot`, `cool`, `cold`, `smart`, or `archive`.
157+
To upload a blob to a specific tier with Azure CLI, call the [az storage blob upload](/cli/azure/storage/blob#az-storage-blob-upload) command, as shown in the following example. Remember to replace the placeholder values in brackets with your own values. Replace the `<tier>` placeholder with `hot`, `cool`, `cold`, or `archive`.
158158

159159
```azurecli-interactive
160160
az storage blob upload \
@@ -166,7 +166,7 @@ az storage blob upload \
166166
--auth-mode login
167167
```
168168

169-
To upload a set of blobs to a specific tier with Azure CLI, call the [az storage blob upload-batch](/cli/azure/storage/blob#az-storage-blob-upload-batch) command, as shown in the following example. Remember to replace the placeholder values in brackets with your own values. Replace the `<tier>` placeholder with `hot`, `cool`, `cold`, `smart`, or `archive`.
169+
To upload a set of blobs to a specific tier with Azure CLI, call the [az storage blob upload-batch](/cli/azure/storage/blob#az-storage-blob-upload-batch) command, as shown in the following example. Remember to replace the placeholder values in brackets with your own values. Replace the `<tier>` placeholder with `hot`, `cool`, `cold`, or `archive`.
170170

171171
```azurecli-interactive
172172
az storage blob upload-batch \

0 commit comments

Comments
 (0)