# File lib/fog/aws/models/compute/tag.rb, line 11 def initialize(attributes = {}) super end
# File lib/fog/aws/models/compute/tag.rb, line 15 def destroy requires :key, :resource_id service.delete_tags(resource_id, key => value) true end
# File lib/fog/aws/models/compute/tag.rb, line 21 def save requires :key, :resource_id service.create_tags(resource_id, key => value) true end