Method: VScripts::AWS::EC2#tags_without
- Defined in:
- lib/vscripts/aws/ec2.rb
#tags_without(list = []) ⇒ Hash
Exclude tags
53 54 55 56 57 58 59 |
# File 'lib/vscripts/aws/ec2.rb', line 53 def (list = []) hash = list.each do |key| hash.delete(key) end hash end |