mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
cfc1d58847
[ecloud] fixed a test and removed connection deprecation notices
32 lines
876 B
Ruby
32 lines
876 B
Ruby
module Fog
|
|
module Compute
|
|
class Ecloud
|
|
class VirtualMachineAssignedIp < Fog::Ecloud::Model
|
|
identity :href
|
|
|
|
attribute :network, :aliases => :Networks
|
|
attribute :address
|
|
|
|
def id
|
|
href.scan(/\d+/)[0]
|
|
end
|
|
|
|
def network=(network)
|
|
network = network.dup
|
|
network_address = network[:Network]
|
|
@network = self.service.networks.new(network_address)
|
|
network_id = @network.href.match(/(\d+)$/)[1]
|
|
address_ip = network_address[:IpAddresses][:IpAddress]
|
|
@address = self.service.ip_addresses.new(
|
|
:href => "/cloudapi/ecloud/ipaddresses/networks/#{network_id}/#{address_ip}",
|
|
:name => address_ip
|
|
)
|
|
end
|
|
attr_reader :network
|
|
|
|
def address=(address); end
|
|
attr_reader :address
|
|
end
|
|
end
|
|
end
|
|
end
|