Sha256: c3eb4c260ade02f4527ae748abf8896839d72086f290021866db21db85244b39
Contents?: true
Size: 565 Bytes
Versions: 1
Compression:
Stored size: 565 Bytes
Contents
module Fog module Google class Monitoring class Real include Fog::Google::Shared attr_accessor :client attr_reader :monitoring def initialize(options) shared_initialize(options[:google_project], GOOGLE_MONITORING_API_VERSION, GOOGLE_MONITORING_BASE_URL) options[:google_api_scope_url] = GOOGLE_MONITORING_API_SCOPE_URLS.join(" ") @client = initialize_google_client(options) @monitoring = @client.discovered_api("monitoring", api_version) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-google-0.6.0 | lib/fog/google/monitoring/real.rb |