Sha256: f47d4c6d35fb6a431d2b09007af1d99f76756d8fa517446e96d86e7b7aa0f6fb
Contents?: true
Size: 488 Bytes
Versions: 21
Compression:
Stored size: 488 Bytes
Contents
module Fog module Compute class Google class Mock def delete_global_operation(_operation) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real # @see https://developers.google.com/compute/docs/reference/latest/globalOperations/delete def delete_global_operation(operation) @compute.delete_global_operation(@project, operation) end end end end end
Version data entries
21 entries across 21 versions & 2 rubygems