
Ultimate access to all questions.
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?
{
"rule": [
{
"action": {"type": "Delete"},
"condition": {"age": 30, "isLive": false}
},
{
"action": {"type": "SetStorageClass", "storageClass": "COLDLINE"},
"condition": {"age": 365, "matchesStorageClass": "MULTI_REGIONAL"}
}
]
}
```_
{
"rule": [
{
"action": {"type": "Delete"},
"condition": {"age": 30, "isLive": false}
},
{
"action": {"type": "SetStorageClass", "storageClass": "COLDLINE"},
"condition": {"age": 365, "matchesStorageClass": "MULTI_REGIONAL"}
}
]
}
```_
A
Archive objects older than 30 days and move objects to Coldline Storage after 365 days if the storage class is Multi-regional.
B
Delete objects older than 30 days and move objects to Coldline Storage after 365 days if the storage class is Multi-regional.
C
Delete archived objects older than 30 days and move objects to Coldline Storage after 365 days if the storage class is Multi-regional.
D
Move objects to Coldline Storage after 365 days if the storage class is Multi-regional. The first rule has no effect on the bucket.