Class: VagrantPlugins::VSphere::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/vSphere/config.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



35
36
37
38
# File 'lib/vSphere/config.rb', line 35

def initialize
  @custom_attributes = {}
  @extra_config = {}
end

Instance Attribute Details

#addressTypeObject

Returns the value of attribute addressType.



23
24
25
# File 'lib/vSphere/config.rb', line 23

def addressType
  @addressType
end

#clone_from_vmObject

Returns the value of attribute clone_from_vm.



13
14
15
# File 'lib/vSphere/config.rb', line 13

def clone_from_vm
  @clone_from_vm
end

#compute_resource_nameObject

Returns the value of attribute compute_resource_name.



11
12
13
# File 'lib/vSphere/config.rb', line 11

def compute_resource_name
  @compute_resource_name
end

#cpu_countObject

Returns the value of attribute cpu_count.



26
27
28
# File 'lib/vSphere/config.rb', line 26

def cpu_count
  @cpu_count
end

#cpu_reservationObject

Returns the value of attribute cpu_reservation.



27
28
29
# File 'lib/vSphere/config.rb', line 27

def cpu_reservation
  @cpu_reservation
end

#custom_attributesObject (readonly)

Returns the value of attribute custom_attributes.



33
34
35
# File 'lib/vSphere/config.rb', line 33

def custom_attributes
  @custom_attributes
end

#customization_spec_nameObject

Returns the value of attribute customization_spec_name.



17
18
19
# File 'lib/vSphere/config.rb', line 17

def customization_spec_name
  @customization_spec_name
end

#data_center_nameObject

Returns the value of attribute data_center_name.



10
11
12
# File 'lib/vSphere/config.rb', line 10

def data_center_name
  @data_center_name
end

#data_store_nameObject

Returns the value of attribute data_store_name.



18
19
20
# File 'lib/vSphere/config.rb', line 18

def data_store_name
  @data_store_name
end

#extra_configObject

Returns the value of attribute extra_config.



29
30
31
# File 'lib/vSphere/config.rb', line 29

def extra_config
  @extra_config
end

#hostObject

Returns the value of attribute host.



6
7
8
# File 'lib/vSphere/config.rb', line 6

def host
  @host
end

#insecureObject

Returns the value of attribute insecure.



7
8
9
# File 'lib/vSphere/config.rb', line 7

def insecure
  @insecure
end

#linked_cloneObject

Returns the value of attribute linked_clone.



19
20
21
# File 'lib/vSphere/config.rb', line 19

def linked_clone
  @linked_clone
end

#macObject

Returns the value of attribute mac.



24
25
26
# File 'lib/vSphere/config.rb', line 24

def mac
  @mac
end

#mem_reservationObject

Returns the value of attribute mem_reservation.



28
29
30
# File 'lib/vSphere/config.rb', line 28

def mem_reservation
  @mem_reservation
end

#memory_mbObject

Returns the value of attribute memory_mb.



25
26
27
# File 'lib/vSphere/config.rb', line 25

def memory_mb
  @memory_mb
end

#nameObject

Returns the value of attribute name.



15
16
17
# File 'lib/vSphere/config.rb', line 15

def name
  @name
end

#notesObject

Returns the value of attribute notes.



31
32
33
# File 'lib/vSphere/config.rb', line 31

def notes
  @notes
end

#passwordObject

Returns the value of attribute password.



9
10
11
# File 'lib/vSphere/config.rb', line 9

def password
  @password
end

#proxy_hostObject

Returns the value of attribute proxy_host.



20
21
22
# File 'lib/vSphere/config.rb', line 20

def proxy_host
  @proxy_host
end

#proxy_portObject

Returns the value of attribute proxy_port.



21
22
23
# File 'lib/vSphere/config.rb', line 21

def proxy_port
  @proxy_port
end

#real_nic_ipObject

Returns the value of attribute real_nic_ip.



30
31
32
# File 'lib/vSphere/config.rb', line 30

def real_nic_ip
  @real_nic_ip
end

#resource_pool_nameObject

Returns the value of attribute resource_pool_name.



12
13
14
# File 'lib/vSphere/config.rb', line 12

def resource_pool_name
  @resource_pool_name
end

#template_nameObject

Returns the value of attribute template_name.



14
15
16
# File 'lib/vSphere/config.rb', line 14

def template_name
  @template_name
end

#userObject

Returns the value of attribute user.



8
9
10
# File 'lib/vSphere/config.rb', line 8

def user
  @user
end

#vlanObject

Returns the value of attribute vlan.



22
23
24
# File 'lib/vSphere/config.rb', line 22

def vlan
  @vlan
end

#vm_base_pathObject

Returns the value of attribute vm_base_path.



16
17
18
# File 'lib/vSphere/config.rb', line 16

def vm_base_path
  @vm_base_path
end

Instance Method Details

#custom_attribute(key, value) ⇒ Object



40
41
42
# File 'lib/vSphere/config.rb', line 40

def custom_attribute(key, value)
  @custom_attributes[key.to_sym] = value
end

#validate(machine) ⇒ Object



44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/vSphere/config.rb', line 44

def validate(machine)
  errors = _detected_errors

  if password == :ask || password.nil?
    self.password = machine.ui.ask('vSphere Password (will be hidden): ', echo: false)
  end

  # TODO: add blank?
  errors << I18n.t('vsphere.config.host') if host.nil?
  errors <<  I18n.t('vsphere.config.user') if user.nil?
  errors <<  I18n.t('vsphere.config.password') if password.nil?
  errors <<  I18n.t('vsphere.config.template') if template_name.nil?

  # Only required if we're cloning from an actual template
  errors << I18n.t('vsphere.config.compute_resource') if compute_resource_name.nil? && !clone_from_vm

  { 'vSphere Provider' => errors }
end