2012-09-21 00:24:19 +02:00
|
|
|
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
|
2014-01-14 21:25:34 -05:00
|
|
|
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'
|
2012-09-21 00:24:19 +02:00
|
|
|
|
|
|
|
def initialize(attributes)
|
2012-12-19 22:28:04 +00:00
|
|
|
# Old 'connection' is renamed as service and should be used instead
|
|
|
|
prepare_service_value(attributes)
|
2012-09-21 00:24:19 +02:00
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def save
|
|
|
|
identity ? update : create
|
|
|
|
end
|
|
|
|
|
2014-01-15 09:56:42 -05:00
|
|
|
def subnets
|
|
|
|
service.subnets.select {|s| s.network_id == self.id }
|
|
|
|
end
|
|
|
|
|
2012-09-21 00:24:19 +02:00
|
|
|
def create
|
2012-12-22 23:24:36 +00:00
|
|
|
merge_attributes(service.create_network(self.attributes).body['network'])
|
2012-09-21 00:24:19 +02:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
requires :id
|
2014-01-14 21:25:34 -05:00
|
|
|
merge_attributes(service.update_network(self.id, self.attributes).body['network'])
|
2012-09-21 00:24:19 +02:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
requires :id
|
2012-12-22 23:24:36 +00:00
|
|
|
service.delete_network(self.id)
|
2012-09-21 00:24:19 +02:00
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-12-19 22:28:04 +00:00
|
|
|
end
|