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



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

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

#saveObject



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

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