Class: Fog::Compute::AWS::Tags
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::AWS::Tags
- Defined in:
- lib/fog/aws/models/compute/tags.rb
Instance Method Summary collapse
- #all(filters = filters) ⇒ Object
- #get(key) ⇒ Object
-
#initialize(attributes) ⇒ Tags
constructor
A new instance of Tags.
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.(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 |