A healthcare provider uses a Standard General Purpose v2 (GPv2) storage account to store patient medical records in a container named `patient-records`.
You need to define an Azure Blob Storage lifecycle management policy that meets the following requirements:
* Automatically transitions block blobs from the Hot tier to the Cool tier 180 days after they were last modified.
* Automatically transitions block blobs to the Archive tier 365 days after they were last modified.
* Automatically deletes block blobs 3650 days after they were last modified.
* Restricts the policy rules to apply only to blobs in the `patient-records` container that have a blob index tag named `ArchiveStatus` set to a value of `Ready`.
Which two of the following configuration fragments or statements are correct for this policy implementation? Select two.
- "actions": {
"baseBlob": {
"tierToCool": {
"daysAfterModificationGreaterThan": 180
},
"tierToArchive": {
"daysAfterModificationGreaterThan": 365
},
"delete": {
"daysAfterModificationGreaterThan": 3650
}
}
}Answer - "filters": {
"blobTypes": [ "blockBlob" ],
"prefixMatch": [ "patient-records/" ],
"blobIndexMatch": [
{
"name": "ArchiveStatus",
"op": "==",
"value": "Ready"
}
]
}Answer - C"filters": {
"blobTypes": [ "blockBlob" ],
"prefixMatch": [ "patient-records/" ],
"blobIndexMatch": [
{
"name": "archivestatus",
"op": "==",
"value": "ready"
}
]
} - DThe lifecycle management policy requires you to generate a Shared Access Signature (SAS) token with container-level write, delete, and list permissions, and assign this token in the policy's properties to authorize execution.