1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack/models/network/network.rb
Sergio Rubio 8a47ca26c4 [openstack|network] Added missing Network model attributes
The following patch adds the following missing attributes:

+---------------------------+--------------------------------------+
| Field                     | Value                                |
+---------------------------+--------------------------------------+
| provider:network_type     | gre                                  |
| provider:physical_network |                                      |
| provider:segmentation_id  | 1                                    |
| router:external           | False                                |
+---------------------------+--------------------------------------+

Not sure if the code style I've used for the attributes is OK though,
I did it so I don't break the 80 col. barrier.

Added also a small test for the new and existing attributes.
2013-02-21 12:32:43 +01:00

55 lines
1.4 KiB
Ruby

require 'fog/core/model'
module Fog
module Network
class OpenStack
class Network < Fog::Model
identity :id
attribute :name
attribute :subnets
attribute :shared
attribute :status
attribute :admin_state_up
attribute :tenant_id
attribute :provider_network_type,
:aliases => 'provider:network_type'
attribute :provider_physical_network,
:aliases => 'provider:physical_network'
attribute :provider_segmentation_id,
:aliases => 'provider:segmentation_id'
attribute :router_external,
:aliases => 'router:external'
def initialize(attributes)
# Old 'connection' is renamed as service and should be used instead
prepare_service_value(attributes)
super
end
def save
identity ? update : create
end
def create
merge_attributes(service.create_network(self.attributes).body['network'])
self
end
def update
requires :id
merge_attributes(service.update_network(self.id,
self.attributes).body['network'])
self
end
def destroy
requires :id
service.delete_network(self.id)
true
end
end
end
end
end