Class: Fog::HP::Network::Subnet

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

Instance Method Summary collapse

Instance Method Details

#destroyObject



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

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

#saveObject



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

def save
  requires :network_id, :cidr, :ip_version
  identity ? update : create
end