Cloud Digital Leader • Practice Test 33
Free Cloud Digital Leader practice test — 15 questions with explanations. Set 33. No signup required.
A data team uses the IAM policy above to grant access to a BigQuery dataset. How does this approach support business transformation in terms of agility and security?
Refer to the exhibit.
```json
{
"bindings": [
{
"role": "roles/bigquery.dataEditor",
"members": [
"user:analyst@example.com"
],
"condition": {
"title": "limited_time_access",
"expression": "request.time < timestamp('2026-01-01T00:00:00Z')"
}
},
{
"role": "roles/bigquery.dataViewer",
"members": [
"user:manager@example.com"
]
}
]
}
```