Cloud Digital Leader Google Cloud products, services, and solutions • Complete Question Bank
Complete Cloud Digital Leader Google Cloud products, services, and solutions 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.
Unified ML platform for building and deploying models
Train custom models with minimal code
Natural language understanding for chatbots
Image recognition and analysis
Text analysis and entity extraction
Drag a concept onto its matching description — or click a concept then click the description.
Move workloads without modification
Tool to migrate VMs to GCP
Physical device for large offline data transfers
Online data transfer from other cloud or on-prem
Automated data import into BigQuery
Refer to the exhibit. ``` gcloud functions deploy hello-world \ --runtime python39 \ --trigger-http \ --allow-unauthenticated \ --memory 256MB \ --timeout 540s ```
Refer to the exhibit.
```json
{
"bindings": [
{
"role": "roles/bigquery.dataViewer",
"members": [
"user:alice@example.com"
]
},
{
"role": "roles/bigquery.dataOwner",
"members": [
"user:bob@example.com"
]
},
{
"role": "roles/bigquery.jobUser",
"members": [
"group:analysts@example.com"
]
}
]
}
```Refer to the exhibit.
```
resource "google_compute_network" "vpc" {
name = "my-vpc"
auto_create_subnetworks = false
}
resource "google_compute_subnetwork" "subnet" {
name = "my-subnet"
network = google_compute_network.vpc.name
region = "us-central1"
ip_cidr_range = "10.0.1.0/24"
}
```{
"lifecycle": {
"rule": [
{
"action": {"type": "Delete"},
"condition": {
"daysSinceCustomTime": 30
}
}
]
}
}Refer to the exhibit.
```
apiVersion: serving.knative.dev/v1
kind: Service
metadata:
name: hello
spec:
template:
spec:
containers:
- image: gcr.io/cloudrun/hello
env:
- name: FOO
value: bar
resources:
limits:
memory: "512Mi"
cpu: "1"
traffic:
- percent: 100
revisionName: hello-00001
```