Complete the code to set the storage account's access tier to Hot.
storage_account = azure.storage.Account(access_tier='[1]')
The Hot tier is used for frequently accessed data in Azure Storage accounts.
Complete the code to set the blob's access tier to Cool for infrequently accessed data.
blob_client.set_tier(tier='[1]')
The Cool tier is optimized for data that is infrequently accessed but requires lower latency than Archive.
Fix the error in setting the blob's tier to Archive for long-term storage.
blob_client.set_tier(tier='[1]')
The Archive tier is for long-term storage of rarely accessed data with flexible latency requirements.
Fill both blanks to create a storage account with the Cool tier and enable blob soft delete.
storage_account = azure.storage.Account(access_tier='[1]', blob_soft_delete=[2])
The Cool tier is for infrequently accessed data, and enabling blob soft delete helps protect against accidental deletions.
Fill all three blanks to set a blob's tier to Hot, enable versioning, and set access tier change to immediate.
blob_client.set_tier(tier='[1]', versioning=[2], rehydrate_priority='[3]')
Hot tier is for frequent access, versioning keeps blob versions, and 'Standard' priority means immediate access tier change.