Class: Fog::HP::Network::SecurityGroupRule

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

Instance Method Summary collapse

Instance Method Details

#destroyObject



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

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

#saveObject

Raises:

  • (Fog::Errors::Error)


25
26
27
28
29
# File 'lib/fog/hp/models/network/security_group_rule.rb', line 25

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