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/vcloud/models/compute/vapp.rb

42 lines
1 KiB
Ruby
Raw Normal View History

require 'fog/vcloud/models/compute/helpers/status'
2011-09-26 11:20:17 -04:00
module Fog
module Vcloud
class Compute
class Vapp < Fog::Vcloud::Model
include Fog::Vcloud::Compute::Helpers::Status
2011-09-26 11:20:17 -04:00
identity :href
ignore_attributes :xmlns, :xmlns_xsi, :xmlns_xsd
attribute :name
attribute :type
attribute :status
attribute :description, :aliases => :Description
2011-09-26 11:20:17 -04:00
attribute :deployed, :type => :boolean
2011-09-26 11:20:17 -04:00
attribute :children, :aliases => :Children, :squash => :Vm
attribute :lease_settings, :aliases => :LeaseSettingsSection
2011-09-26 11:20:17 -04:00
attribute :other_links, :aliases => :Link
def servers
@servers ||= Fog::Vcloud::Compute::Servers.
new( :connection => connection,
:href => href,
:vapp => self
)
end
def networks
@networks ||= Fog::Vcloud::Compute::Networks.
new( :connection => connection,
:href => href
)
end
2011-09-26 11:20:17 -04:00
end
end
end
end