Sha256: f3021b30fa332a07611e892053b999f1a04a00e9af5f2dc2ae6c193876c80428
Contents?: true
Size: 495 Bytes
Versions: 17
Compression:
Stored size: 495 Bytes
Contents
require 'fog/ecloud/models/compute/tag' module Fog module Compute class Ecloud class Tags < Fog::Ecloud::Collection identity :href model Fog::Compute::Ecloud::Tag def all data = service.get_tags(href).body[:DeviceTag] load(data) end def get(uri) if data = service.get_tag(uri) new(data.body) end rescue Fog::Errors::NotFound nil end end end end end
Version data entries
17 entries across 17 versions & 5 rubygems