mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
b554eb0bb4
Conflicts with work freeformz is doing, reverting in favor of those changes for now.
This reverts commit 9907d4ed59
.
35 lines
508 B
Ruby
35 lines
508 B
Ruby
require 'fog/model'
|
|
|
|
module Fog
|
|
module Terremark
|
|
module Shared
|
|
|
|
class Vdc < Fog::Model
|
|
|
|
identity :id
|
|
|
|
attribute :name
|
|
|
|
def networks
|
|
connection.networks(:vdc_id => @id)
|
|
end
|
|
|
|
def addresses
|
|
connection.addresses(:vdc_id => @id)
|
|
end
|
|
|
|
private
|
|
|
|
def href=(new_href)
|
|
@id = new_href.split('/').last.to_i
|
|
end
|
|
|
|
def type=(new_type); end
|
|
|
|
def rel=(new_rel); end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|