Sha256: 9fc878b17328fe1a8fb7216039d1ae7b8ae75d39060860f10145ff8d68c8b03e

Contents?: true

Size: 565 Bytes

Versions: 21

Compression:

Stored size: 565 Bytes

Contents

module Fog
  module Compute
    class Google
      class Mock
        def deprecate_image(_image_name, _deprecation_status = {}, _project = @project)
          # :no-coverage:
          Fog::Mock.not_implemented
          # :no-coverage:
        end
      end

      class Real
        def deprecate_image(image_name, deprecation_status = {}, project = @project)
          @compute.deprecate_image(
            project, image_name,
            ::Google::Apis::ComputeV1::DeprecationStatus.new(deprecation_status)
          )
        end
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 2 rubygems

Version Path
fog-google-1.10.0 lib/fog/compute/google/requests/deprecate_image.rb