Sha256: 07f464a9b045115f022dbe0682078b093474d5365e4c101d4dd5c7c837b701a9
Contents?: true
Size: 818 Bytes
Versions: 21
Compression:
Stored size: 818 Bytes
Contents
module Fog module Compute class Google class Mock def get_zone_operation(_zone_name, _operation) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real # Get the updated status of a zone operation # @see https://developers.google.com/compute/docs/reference/latest/zoneOperations/get # # @param zone_name [String] Zone the operation was peformed in # @param operation [Google::Apis::ComputeV1::Operation] Return value from asynchronous actions def get_zone_operation(zone_name, operation) zone_name = zone_name.split("/")[-1] if zone_name.start_with? "http" @compute.get_zone_operation(@project, zone_name, operation) end end end end end
Version data entries
21 entries across 21 versions & 2 rubygems