Class: Fog::AWS::Compute::Tags
- Inherits:
-
Collection
- Object
- Array
- Collection
- Fog::AWS::Compute::Tags
- Defined in:
- lib/fog/compute/models/aws/tags.rb
Instance Attribute Summary
Attributes inherited from Collection
Instance Method Summary collapse
- #all(filters = filters) ⇒ Object
- #get(key) ⇒ Object
-
#initialize(attributes) ⇒ Tags
constructor
A new instance of Tags.
Methods inherited from Collection
#clear, #create, #inspect, #load, model, #model, #new, #reload, #table, #to_json
Methods included from Fog::Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Fog::Attributes::InstanceMethods
#_dump, #attributes, #identity, #identity=, #merge_attributes, #new_record?, #requires
Constructor Details
#initialize(attributes) ⇒ Tags
Returns a new instance of Tags.
14 15 16 17 |
# File 'lib/fog/compute/models/aws/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/compute/models/aws/tags.rb', line 19 def all(filters = filters) self.filters = filters data = connection.(filters).body load(data['tagSet']) end |
#get(key) ⇒ Object
25 26 27 28 29 |
# File 'lib/fog/compute/models/aws/tags.rb', line 25 def get(key) if key self.class.new(:connection => connection).all('key' => key) end end |