Sha256: 269f361633ba1502453a3c11ff5fee8848972f9c8ec7cb3d95dfaae92572c193
Contents?: true
Size: 491 Bytes
Versions: 20
Compression:
Stored size: 491 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) Fog::Mock.not_implemented end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems