PCDOE Managing Google Cloud costs • Complete Question Bank
Complete PCDOE Managing Google Cloud costs 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.
Actual measured service performance
Target reliability level for a service
Contractual commitment to customers
Allowed downtime before SLO breach
Manual, repetitive operational work
Drag a concept onto its matching description — or click a concept then click the description.
Discount for 1- or 3-year resource commitment
Automatic discounts for running instances most of month
Short-lived, low-cost instances for batch jobs
Adjusting machine type to match workload needs
Notifications when spending exceeds thresholds
The output of `gcloud compute instances list --format="table(name,zone,machineType,preemptible,status)"` shows: ``` NAME ZONE MACHINE_TYPE PREEMPTIBLE STATUS instance-1 us-central1-a n1-standard-4 true RUNNING instance-2 us-central1-b n1-standard-8 false RUNNING instance-3 us-central1-a n1-standard-2 false TERMINATED ```
Below is a budget alert configuration in JSON format:
```json
{
"budgetId": "abc-123",
"displayName": "monthly-budget",
"amount": {
"specifiedAmount": {
"units": "5000",
"currencyCode": "USD"
}
},
"thresholdRules": [
{
"thresholdPercent": 0.5,
"spendBasis": "CURRENT_SPEND"
}
],
"notifications": {
"pubsubTopic": "projects/my-project/topics/budget-alerts",
"emailRecipients": ["admin@example.com"]
}
}
```{
"budgetName": "projects/my-project/budgets/my-budget",
"costAmount": 1500.00,
"budgetAmount": 1000.00,
"alertThresholdExceeded": 1.0,
"budgetFilter": {
"projects": ["projects/dev-123"],
"creditTypesTreatment": "INCLUDE_ALL_CREDITS"
}
}