Sha256: f1b7ff54d2aded712beb4c15a3af2bb6660e1578e3f78df311f630795ee20c58
Contents?: true
Size: 588 Bytes
Versions: 20
Compression:
Stored size: 588 Bytes
Contents
module Fog module Compute class Google class Mock def get_global_operation(_operation) Fog::Mock.not_implemented end end class Real # Get the updated status of a global operation # @see https://developers.google.com/compute/docs/reference/latest/globalOperations/get # # @param operation [Google::Apis::ComputeV1::Operation] Return value from asynchronous act def get_global_operation(operation) @compute.get_global_operation(@project, operation) end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems