Sha256: 26e64f1efd76b4527db26194caeae4ee5a4a911b1bcf129c3c07b18f020394a4
Contents?: true
Size: 1.39 KB
Versions: 43
Compression:
Stored size: 1.39 KB
Contents
require 'fog/vcloud/models/compute/helpers/status' module Fog module Vcloud class Compute class Vapp < Fog::Vcloud::Model include Fog::Vcloud::Compute::Helpers::Status identity :href, :aliases => :Href attribute :links, :aliases => :Link, :type => :array ignore_attributes :xmlns, :xmlns_i, :xmlns_xsi, :xmlns_xsd attribute :name attribute :type attribute :status attribute :description, :aliases => :Description attribute :deployed, :type => :boolean attribute :children, :aliases => :Children, :squash => :Vm attribute :lease_settings, :aliases => :LeaseSettingsSection attribute :network_configs, :aliases => :NetworkConfigSection has_up :vdc def servers @servers ||= Fog::Vcloud::Compute::Servers. new( :service => service, :href => href, :vapp => self ) end def networks @networks ||= Fog::Vcloud::Compute::Networks. new( :service => service, :href => href ) end def ready? reload_status # always ensure we have the correct status status != '0' end private def reload_status vapp = service.get_vapp(href) self.status = vapp.status end end end end end
Version data entries
43 entries across 41 versions & 6 rubygems
Version | Path |
---|---|
ns-fog-1.22.3 | lib/fog/vcloud/models/compute/vapp.rb |
ns-fog-1.22.2 | lib/fog/vcloud/models/compute/vapp.rb |
fog-1.22.1 | lib/fog/vcloud/models/compute/vapp.rb |