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

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

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ Tags

Returns a new instance of Tags.



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

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

Instance Method Details

#all(filters = filters) ⇒ Object



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

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

#get(key) ⇒ Object



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

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