1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/google/models/compute/operations.rb

30 lines
732 B
Ruby
Raw Normal View History

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?
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)
end
return nil if response.nil?
new(response.body)
end
end
end
end
end