Class: Fog::Network::OpenStack::Subnet
Instance Attribute Summary
#project
Instance Method Summary
collapse
#initialize, #save
Instance Method Details
#create ⇒ Object
20
21
22
23
24
25
26
27
|
# File 'lib/fog/openstack/models/network/subnet.rb', line 20
def create
requires :network_id, :cidr, :ip_version
merge_attributes(service.create_subnet(self.network_id,
self.cidr,
self.ip_version,
self.attributes).body['subnet'])
self
end
|
#destroy ⇒ Object
36
37
38
39
40
|
# File 'lib/fog/openstack/models/network/subnet.rb', line 36
def destroy
requires :id
service.delete_subnet(self.id)
true
end
|
#update ⇒ Object
29
30
31
32
33
34
|
# File 'lib/fog/openstack/models/network/subnet.rb', line 29
def update
requires :id
merge_attributes(service.update_subnet(self.id,
self.attributes).body['subnet'])
self
end
|