Class: Fog::HP::Network::SecurityGroup

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/hp/models/network/security_group.rb

Instance Method Summary collapse

Instance Method Details

#destroyObject



15
16
17
18
19
# File 'lib/fog/hp/models/network/security_group.rb', line 15

def destroy
  requires :id
  service.delete_security_group(id)
  true
end

#saveObject

Raises:

  • (Fog::Errors::Error)


21
22
23
24
25
# File 'lib/fog/hp/models/network/security_group.rb', line 21

def save
  raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted?
  merge_attributes(service.create_security_group(attributes).body['security_group'])
  true
end