Sha256: 3365826c1208bdd9c679776702ca4bb50a9011e04937766e68ece6bc0281bc32
Contents?: true
Size: 515 Bytes
Versions: 13
Compression:
Stored size: 515 Bytes
Contents
module Fog module DNS class Google class Real include Fog::Google::Shared attr_accessor :client attr_reader :dns def initialize(options) shared_initialize(options[:google_project], GOOGLE_DNS_API_VERSION, GOOGLE_DNS_BASE_URL) options[:google_api_scope_url] = GOOGLE_DNS_API_SCOPE_URLS.join(" ") @client = initialize_google_client(options) @dns = @client.discovered_api("dns", api_version) end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems