2011-10-05 05:58:50 -04:00
|
|
|
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
|
|
|
|
|
2011-10-05 05:58:50 -04:00
|
|
|
include Fog::Vcloud::Compute::Helpers::Status
|
|
|
|
|
2012-01-30 09:24:14 -05:00
|
|
|
identity :href, :aliases => :Href
|
|
|
|
attribute :links, :aliases => :Link, :type => :array
|
|
|
|
ignore_attributes :xmlns, :xmlns_i, :xmlns_xsi, :xmlns_xsd
|
2011-09-26 11:20:17 -04:00
|
|
|
|
|
|
|
attribute :name
|
|
|
|
attribute :type
|
|
|
|
attribute :status
|
2011-10-05 05:58:50 -04:00
|
|
|
attribute :description, :aliases => :Description
|
2011-09-26 11:20:17 -04:00
|
|
|
attribute :deployed, :type => :boolean
|
2011-10-05 05:58:50 -04:00
|
|
|
|
2011-09-26 11:20:17 -04:00
|
|
|
attribute :children, :aliases => :Children, :squash => :Vm
|
|
|
|
attribute :lease_settings, :aliases => :LeaseSettingsSection
|
2011-10-05 05:58:50 -04:00
|
|
|
|
2012-01-30 09:24:14 -05:00
|
|
|
attribute :network_configs, :aliases => :NetworkConfigSection
|
|
|
|
|
|
|
|
has_up :vdc
|
2011-09-26 11:20:17 -04:00
|
|
|
|
|
|
|
def servers
|
|
|
|
@servers ||= Fog::Vcloud::Compute::Servers.
|
|
|
|
new( :connection => connection,
|
|
|
|
:href => href,
|
|
|
|
:vapp => self
|
|
|
|
)
|
|
|
|
end
|
2011-10-05 05:58:50 -04:00
|
|
|
|
|
|
|
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
|