mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
46 lines
No EOL
971 B
Ruby
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 |