mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
28 lines
728 B
Ruby
28 lines
728 B
Ruby
|
module Fog
|
||
|
module Compute
|
||
|
class Ecloud
|
||
|
class Rnat < Fog::Ecloud::Model
|
||
|
identity :href
|
||
|
|
||
|
attribute :name, :aliases => :Name
|
||
|
attribute :type, :aliases => :Type
|
||
|
attribute :other_links, :aliases => :Links
|
||
|
attribute :default, :aliases => :Default, :type => :boolean
|
||
|
attribute :public_ip, :aliases => :PublicIp
|
||
|
|
||
|
def networks
|
||
|
@networks = Fog::Compute::Ecloud::Networks.new(:connection => connection, :href => href)
|
||
|
end
|
||
|
|
||
|
def associations
|
||
|
@associations = Fog::Compute::Ecloud::Associations.new(:connection => connection, :href => href)
|
||
|
end
|
||
|
|
||
|
def id
|
||
|
href.scan(/\d+/)[0]
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|