mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
29 lines
740 B
Ruby
29 lines
740 B
Ruby
module Fog
|
|
module Vcloud
|
|
class Compute
|
|
class Vapp < Fog::Vcloud::Model
|
|
|
|
identity :href
|
|
|
|
ignore_attributes :xmlns, :xmlns_xsi, :xmlns_xsd
|
|
|
|
attribute :name
|
|
attribute :type
|
|
attribute :status
|
|
attribute :description
|
|
attribute :deployed, :type => :boolean
|
|
attribute :children, :aliases => :Children, :squash => :Vm
|
|
attribute :lease_settings, :aliases => :LeaseSettingsSection
|
|
attribute :other_links, :aliases => :Link
|
|
|
|
def servers
|
|
@servers ||= Fog::Vcloud::Compute::Servers.
|
|
new( :connection => connection,
|
|
:href => href,
|
|
:vapp => self
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|