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



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

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

#saveObject

Raises:

  • (Fog::Errors::Error)


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

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