Sha256: b88dd08ecd4a6b91983e47992fc017021faa6ed3ad2bca56718542ea17007af5
Contents?: true
Size: 521 Bytes
Versions: 13
Compression:
Stored size: 521 Bytes
Contents
module Fog module Google class SQL class Real include Fog::Google::Shared attr_accessor :client attr_reader :sql def initialize(options) shared_initialize(options[:google_project], GOOGLE_SQL_API_VERSION, GOOGLE_SQL_BASE_URL) options[:google_api_scope_url] = GOOGLE_SQL_API_SCOPE_URLS.join(" ") @client = initialize_google_client(options) @sql = @client.discovered_api("sqladmin", api_version) end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems