Class: Fog::Vcloud::Compute::CatalogItem

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/vcloud/models/compute/catalog_item.rb

Instance Attribute Summary

Attributes inherited from Model

#loaded

Attributes inherited from Model

#collection, #service

Instance Method Summary collapse

Methods inherited from Model

has_up, #link_up, #load_unless_loaded!, #reload

Methods inherited from Model

#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#customization_optionsObject



16
17
18
19
20
21
22
23
24
# File 'lib/fog/vcloud/models/compute/catalog_item.rb', line 16

def customization_options
  load_unless_loaded!
  if data = service.get_customization_options( link[:href] ).body
    data.delete_if { |key, value| [:xmlns_i, :xmlns].include?(key) }
    data
  else
    nil
  end
end

#password_enabled?Boolean

Returns:

  • (Boolean)


26
27
28
29
30
31
32
33
# File 'lib/fog/vcloud/models/compute/catalog_item.rb', line 26

def password_enabled?
  load_unless_loaded!
  customization_options = service.get_vapp_template(self.entity[:href]).body[:Children][:Vm][:GuestCustomizationSection]
  return false if customization_options[:AdminPasswordEnabled] == "false"
  return true if customization_options[:AdminPasswordEnabled] == "true" \
    and customization_options[:AdminPasswordAuto] == "false" \
    and ( options[:password].nil? or options[:password].empty? )
end