Sha256: a94d177c5c74d0177f40def90fb7f4b4c497c04e7c7a4436d1a573d77676c26f
Contents?: true
Size: 652 Bytes
Versions: 21
Compression:
Stored size: 652 Bytes
Contents
module Fog module Compute class Google class Mock def delete_region_operation(_region, _operation) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real # Deletes the specified region-specific Operations resource. # @see https://developers.google.com/compute/docs/reference/latest/regionOperations/delete def delete_region_operation(region, operation) region = region.split("/")[-1] if region.start_with? "http" @compute.delete_region_operation(@project, region, operation) end end end end end
Version data entries
21 entries across 21 versions & 2 rubygems