PDE • Practice Test 14
Free PDE practice test — 15 questions with explanations. Set 14. No signup required.
A data engineer configures the above lifecycle rule on a Cloud Storage bucket that stores daily log files. After 60 days, they notice that files older than 30 days have been transitioned to Nearline, but files older than 90 days are still present. What is the most likely cause?
Refer to the exhibit.
```
# Cloud Storage Object Lifecycle Rule (JSON)
{
"lifecycle": {
"rule": [
{
"action": {"type": "SetStorageClass", "storageClass": "NEARLINE"},
"condition": {"age": 30, "matchesStorageClass": ["STANDARD"]}
},
{
"action": {"type": "Delete"},
"condition": {"age": 90}
}
]
}
}
```