fog/fog-google

View on GitHub
lib/fog/compute/google/requests/deprecate_image.rb

Summary

Maintainability
A
0 mins
Test Coverage
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