2013-11-27 07:01:59 -05:00
|
|
|
require 'fog/core/collection'
|
|
|
|
require 'fog/google/models/compute/operation'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Google
|
|
|
|
|
|
|
|
class Operations < Fog::Collection
|
|
|
|
|
|
|
|
model Fog::Compute::Google::Operation
|
|
|
|
|
2014-03-17 03:55:33 -04:00
|
|
|
def get(identity, zone=nil, region=nil)
|
|
|
|
puts "Getting operation #{identity} zone=#{zone} region=#{region}"
|
|
|
|
if not zone.nil?
|
2013-11-27 07:01:59 -05:00
|
|
|
response = service.get_zone_operation(zone, identity)
|
2014-03-17 03:55:33 -04:00
|
|
|
elsif not region.nil?
|
|
|
|
response = service.get_region_operation(region, identity)
|
|
|
|
else
|
|
|
|
response = service.get_global_operation(identity)
|
2013-11-27 07:01:59 -05:00
|
|
|
end
|
|
|
|
return nil if response.nil?
|
|
|
|
new(response.body)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|