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