Sha256: 67f74d3e23a238b013a933e38ee82f5ca4c664c8a39ba045e8a7a1b10f256c7b
Contents?: true
Size: 508 Bytes
Versions: 36
Compression:
Stored size: 508 Bytes
Contents
require 'fog/joyent/models/analytics/instrumentation' module Fog module Joyent class Analytics class Instrumentations < Fog::Collection model Fog::Joyent::Analytics::Instrumentation def all data = service.list_instrumentations.body load(data) end def get(id) data = service.get_instrumentation(id).body new(data) rescue Fog::Compute::Joyent::Errors::NotFound nil end end end end end
Version data entries
36 entries across 34 versions & 6 rubygems