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
Ferran Rodenas 0c34ca84f5 [openstack|network] Add support for OpenStack Quantum
Added support for OpenStack Network Connectivity (Quantum).
2012-09-22 00:14:40 +02:00

46 lines
No EOL
971 B
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
def initialize(attributes)
@connection = attributes[:connection]
super
end
def save
identity ? update : create
end
def create
merge_attributes(connection.create_network(self.attributes).body['network'])
self
end
def update
requires :id
merge_attributes(connection.update_network(self.id,
self.attributes).body['network'])
self
end
def destroy
requires :id
connection.delete_network(self.id)
true
end
end
end
end
end