Sha256: 7b05f0c79f934b4ef40db64e95e4d3fa7a6702eb5e3a16393eb592978d2f210a

Contents?: true

Size: 770 Bytes

Versions: 20

Compression:

Stored size: 770 Bytes

Contents

module Fog
  module Google
    class SQL
      ##
      # Lists all instance operations that have been performed on the given Cloud SQL instance
      # in the reverse chronological order of the start time
      #
      # @see https://cloud.google.com/sql/docs/mysql/admin-api/v1beta4/operations/list

      class Real
        def list_operations(instance_id, max_results: nil, page_token: nil)
          @sql.list_operations(@project,
                               instance_id,
                               :max_results => max_results,
                               :page_token => page_token)
        end
      end

      class Mock
        def list_operations(_instance_id, _options: {})
          Fog::Mock.not_implemented
        end
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
fog-google-1.9.1 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.9.0 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.8.2 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.8.1 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.8.0 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.7.1 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.7.0 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.6.0 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.5.0 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.4.0 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.3.3 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.3.2 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.3.1 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.3.0 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.2.2 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.2.1 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.2.0 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.1.0 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.0.1 lib/fog/google/requests/sql/list_operations.rb
fog-google-1.0.0 lib/fog/google/requests/sql/list_operations.rb