1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
module Fog
module Compute
class Google
class Mock
def set_server_scheduling(_identity, _zone, _on_host_maintenance, _automatic_restart, _preemptible)
# :no-coverage:
Fog::Mock.not_implemented
# :no-coverage:
end
end
class Real
def set_server_scheduling(identity, zone, on_host_maintenance: nil, automatic_restart: nil, preemptible: nil)
scheduling = ::Google::Apis::ComputeV1::Scheduling.new
scheduling.on_host_maintenance = on_host_maintenance unless on_host_maintenance.nil?
scheduling.automatic_restart = automatic_restart unless automatic_restart.nil?
scheduling.preemptible = preemptible unless preemptible.nil?
zone = zone.split("/")[-1]
@compute.set_instance_scheduling(@project, zone, identity, scheduling)
end
end
end
end
end
|