Class: Fog::Compute::AWS::Tag

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/aws/models/compute/tag.rb

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Tag

Returns a new instance of Tag.



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

def initialize(attributes = {})
  super
end

Instance Method Details

#destroyObject



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

def destroy
  requires :key, :resource_id
  service.delete_tags(resource_id, key => value)
  true
end

#saveObject



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

def save
  requires :key, :resource_id
  service.create_tags(resource_id, key => value)
  true
end