Cloud Digital Leader Trust and security with Google Cloud • Complete Question Bank
Complete Cloud Digital Leader Trust and security with Google Cloud question bank — all 0 questions with answers and detailed explanations.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag a concept onto its matching description — or click a concept then click the description.
Managed relational database (MySQL, PostgreSQL, SQL Server)
Globally distributed, strongly consistent relational database
NoSQL document database for mobile and web apps
NoSQL wide-column database for large analytical workloads
Managed in-memory cache (Redis/Memcached)
Drag a concept onto its matching description — or click a concept then click the description.
Frequently accessed data, low latency
Data accessed less than once a month
Data accessed less than once a quarter
Data accessed less than once a year
Automatic placement of objects into appropriate classes
Refer to the exhibit.
```
gcloud projects set-iam-policy my-project policy.yaml
```
policy.yaml:
```
{
"bindings": [
{
"role": "roles/compute.admin",
"members": [
"user:admin@example.com"
],
"condition": {
"title": "workstation_ip",
"expression": "request.host == '203.0.113.1'"
}
}
]
}
```Refer to the exhibit. ``` Error: # gcloud compute instances create my-instance --zone us-central1-a ERROR: (gcloud.compute.instances.create) Could not fetch resource: - Account 'my-service-account@project-id.iam.gserviceaccount.com' requires permission 'compute.instances.create' on project 'my-project' ```
Refer to the exhibit.
```
$ gcloud logging read "resource.type=project AND severity=ERROR" --limit 5
timestamp: 2023-10-05T10:30:00Z
protoPayload:
methodName: "storage.objects.get"
authenticationInfo:
principalEmail: "user@example.com"
resourceName: "projects/_/buckets/my-bucket/objects/secret.pdf"
```Refer to the exhibit.
{
"bindings": [
{
"role": "roles/storage.objectViewer",
"members": [
"user:alice@example.com",
"user:bob@example.com"
]
},
{
"role": "roles/storage.objectAdmin",
"members": [
"user:carol@example.com"
],
"condition": {
"title": "restrict_to_sensitive_bucket",
"expression": "resource.name.startsWith('projects/_/buckets/sensitive-data/objects/')"
}
}
],
"etag": "BwW3ZJf4G7A="
}