You have an Azure subscription with a Standard General Purpose v2 (GPv2) storage account named `medicalrecordsstore`. The container named `patients` contains the following block blobs:
* `patients/recordA.json`: Modified days ago. Tag: `ArchiveStatus` = `Ready`. No active lease.
* `patients/recordB.json`: Modified days ago. Tag: `archivestatus` = `Ready`. No active lease.
* `patients/recordC.json`: Modified days ago. Tag: `ArchiveStatus` = `Ready`. Has an active lease.
You implement the following lifecycle management policy:
{
"rules": [
{
"enabled": true,
"name": "archiveRule",
"type": "Lifecycle",
"definition": {
"actions": {
"baseBlob": {
"tierToArchive": {
"daysAfterModificationGreaterThan": 100
}
}
},
"filters": {
"blobTypes": ["blockBlob"],
"prefixMatch": ["patients/"],
"blobIndexMatch": [
{
"name": "ArchiveStatus",
"op": "==",
"value": "Ready"
}
]
}
}
}
]
}
After the policy runs, which blobs will be successfully transitioned to the Archive tier?
- Only patients/recordA.json and patients/recordC.jsonAnswer
- Bpatients/recordA.json, patients/recordB.json, and patients/recordC.json
- COnly patients/recordA.json
- DNone of the blobs