fog/fog-google

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

Summary

Maintainability
A
15 mins
Test Coverage
module Fog
  module Compute
    class Google
      class Mock
        def list_snapshots
          # :no-coverage:
          Fog::Mock.not_implemented
          # :no-coverage:
        end
      end

      class Real
        def list_snapshots(project = @project, filter: nil, max_results: nil,
                           order_by: nil, page_token: nil)
          @compute.list_snapshots(project,
                                  :filter => filter, :max_results => max_results,
                                  :order_by => order_by, :page_token => page_token)
        end
      end
    end
  end
end