Class: Fog::Compute::AWS::Tags

Inherits:
Fog::Collection show all
Defined in:
lib/fog/aws/models/compute/tags.rb

Instance Attribute Summary

Attributes inherited from Fog::Collection

#service

Instance Method Summary collapse

Methods inherited from Fog::Collection

#clear, #create, #destroy, #inspect, #load, model, #model, #new, #reload, #table, #to_json

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Fog::Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

#initialize(attributes) ⇒ Tags

Returns a new instance of Tags.



14
15
16
17
# File 'lib/fog/aws/models/compute/tags.rb', line 14

def initialize(attributes)
  self.filters ||= {}
  super
end

Instance Method Details

#all(filters = filters) ⇒ Object



19
20
21
22
23
# File 'lib/fog/aws/models/compute/tags.rb', line 19

def all(filters = filters)
  self.filters = filters
  data = service.describe_tags(filters).body
  load(data['tagSet'])
end

#get(key) ⇒ Object



25
26
27
28
29
# File 'lib/fog/aws/models/compute/tags.rb', line 25

def get(key)
  if key
    self.class.new(:service => service).all('key' => key)
  end
end