
Ultimate access to all questions.
Your operations team has set up a lifecycle management rule on a multi-regional bucket with versioning enabled. Given the following lifecycle configuration, which statement is accurate?
{
"rule":[
{
"action":{
"type":"Delete"
},
"condition":{
"age":60,
"isLive":false
}
},
{
"action":{
"type":"SetStorageClass",
"storageClass":"COLDLINE"
},
"condition":{
"age":366,
"matchesStorageClass":"MULTI_REGIONAL"
}
}
]
}
```_
{
"rule":[
{
"action":{
"type":"Delete"
},
"condition":{
"age":60,
"isLive":false
}
},
{
"action":{
"type":"SetStorageClass",
"storageClass":"COLDLINE"
},
"condition":{
"age":366,
"matchesStorageClass":"MULTI_REGIONAL"
}
}
]
}
```_
A
Move objects to Coldline Storage after 366 days if the storage class is Multi-regional. The first rule does not affect the bucket.
B
Archive objects older than 60 days and move objects to Coldline Storage after 366 days if the storage class is Multi-regional.
C
Delete objects older than 60 days and move objects to Coldline Storage after 366 days if the storage class is Multi-regional.
D
Delete archived objects older than 60 days and move objects to Coldline Storage after 366 days if the storage class is Multi-regional.