Complete the code to specify the VM pricing model as pay-as-you-go.
vm_config = {
"pricingModel": "[1]"
}The pay-as-you-go pricing model charges based on actual usage without upfront commitment.
Complete the code to set the VM pricing model to use discounted capacity with possible interruptions.
vm_config = {
"pricingModel": "[1]"
}The spot pricing model offers discounted VMs but can be interrupted when capacity is needed elsewhere.
Fix the error in the code to correctly specify a reserved VM pricing model.
vm_config = {
"pricingModel": "[1]"
}Reserved pricing requires upfront commitment for a fixed term, usually offering cost savings.
Fill both blanks to create a VM configuration with a reserved pricing model and a 1-year term.
vm_config = {
"pricingModel": "[1]",
"term": "[2]"
}Reserved pricing requires specifying the commitment term, such as 1-year, for cost savings.
Fill all three blanks to define a VM with spot pricing, eviction policy set to deallocate, and a max price of $0.05 per hour.
vm_config = {
"pricingModel": "[1]",
"evictionPolicy": "[2]",
"maxPrice": [3]
}Spot VMs allow setting eviction policies and max price to control costs and behavior on interruptions.