A SysOps admin has set up a lifecycle rule on a multi-regional bucket with object versioning enabled. What is the effect of the following lifecycle configuration? ```json { "rule": [ { "action": {"type": "Delete"}, "condition": {"age": 30, "isLive": false} }, { "action": {"type": "SetStorageClass", "storageClass": "COLDLINE"}, "condition": {"age": 365, "matchesStorageClass": "MULTI_REGIONAL"} } ] } ``` | Google Associate Cloud Engineer Quiz - LeetQuiz