Sha256: 4c6664be015edf4f48288917f45d4d76fe9e9472680d3f35a50a6c52df82cfc1
Contents?: true
Size: 543 Bytes
Versions: 21
Compression:
Stored size: 543 Bytes
Contents
module Fog module Google class SQL ## # Retrieves an instance operation that has been performed on an instance # # @see https://cloud.google.com/sql/docs/mysql/admin-api/v1beta4/operations/get class Real def get_operation(operation_id) @sql.get_operation(@project, operation_id) end end class Mock def get_operation(_operation_id) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end end end end
Version data entries
21 entries across 21 versions & 2 rubygems