Class: Fog::Network::OpenStack::Subnet

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

Instance Attribute Summary

Attributes inherited from Model

#collection, #service

Instance Method Summary collapse

Methods inherited from Model

#inspect, #reload, #symbolize_keys, #to_json, #wait_for

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

#initialize(attributes) ⇒ Subnet

Returns a new instance of Subnet.



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

def initialize(attributes)
  # Old 'connection' is renamed as service and should be used instead
  prepare_service_value(attributes)
  super
end

Instance Method Details

#createObject



31
32
33
34
35
36
37
38
# File 'lib/fog/openstack/models/network/subnet.rb', line 31

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

#destroyObject



47
48
49
50
51
# File 'lib/fog/openstack/models/network/subnet.rb', line 47

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

#saveObject



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

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

#updateObject



40
41
42
43
44
45
# File 'lib/fog/openstack/models/network/subnet.rb', line 40

def update
  requires :id, :network_id, :cidr, :ip_version
  merge_attributes(service.update_subnet(self.id,
                                            self.attributes).body['subnet'])
  self
end