Class: ConfigBuilder::Model::WinRM

Inherits:
Base
  • Object
show all
Defined in:
lib/config_builder/model/winrm.rb

Overview

Vagrant WinRM credential model.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#attrs=, #call, def_model_attribute, model_attributes, new_from_hash

Instance Attribute Details

#guest_portFixnum

Returns The port on the guest that WinRM is running on. This is used by some providers to detect forwarded ports for WinRM. For example, if this is set to 5985 (the default), and Vagrant detects a forwarded port to port 5985 on the guest from port 4567 on the host, Vagrant will attempt to use port 4567 to talk to the guest if there is no other option.

Returns:

  • (Fixnum)

    The port on the guest that WinRM is running on. This is used by some providers to detect forwarded ports for WinRM. For example, if this is set to 5985 (the default), and Vagrant detects a forwarded port to port 5985 on the guest from port 4567 on the host, Vagrant will attempt to use port 4567 to talk to the guest if there is no other option.



33
# File 'lib/config_builder/model/winrm.rb', line 33

def_model_attribute :guest_port

#hostString

Returns The hostname or IP to WinRM into. By default this is empty, because the provider usually figures this out for you.

Returns:

  • (String)

    The hostname or IP to WinRM into. By default this is empty, because the provider usually figures this out for you.



20
# File 'lib/config_builder/model/winrm.rb', line 20

def_model_attribute :host

#max_triesFixnum

Returns Maximum number of retry attempts. By default this is 20.

Returns:

  • (Fixnum)

    Maximum number of retry attempts. By default this is 20.



37
# File 'lib/config_builder/model/winrm.rb', line 37

def_model_attribute :max_tries

#passwordString

Returns This sets a password that Vagrant will use to authenticate the WinRM user.

Returns:

  • (String)

    This sets a password that Vagrant will use to authenticate the WinRM user.



15
# File 'lib/config_builder/model/winrm.rb', line 15

def_model_attribute :password

#portFixnum

Returns The port to WinRM into. By default this is port 5985.

Returns:

  • (Fixnum)

    The port to WinRM into. By default this is port 5985.



24
# File 'lib/config_builder/model/winrm.rb', line 24

def_model_attribute :port

#timeoutFixnum

Returns The timeout in seconds. By default this is 1800 seconds.

Returns:

  • (Fixnum)

    The timeout in seconds. By default this is 1800 seconds.



41
# File 'lib/config_builder/model/winrm.rb', line 41

def_model_attribute :timeout

#usernameString

Returns This sets the username that Vagrant will WinRM as by default. Providers are free to override this if they detect a more appropriate user. By default this is "vagrant," since that is what most public boxes are made as.

Returns:

  • (String)

    This sets the username that Vagrant will WinRM as by default. Providers are free to override this if they detect a more appropriate user. By default this is "vagrant," since that is what most public boxes are made as.



10
# File 'lib/config_builder/model/winrm.rb', line 10

def_model_attribute :username

Instance Method Details

#to_procObject



43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/config_builder/model/winrm.rb', line 43

def to_proc
  Proc.new do |global_config|
    winrm = global_config.winrm

    with_attr(:username)   { |val| winrm.username = val }
    with_attr(:password)   { |val| winrm.password = val }
    with_attr(:host)       { |val| winrm.host = val }
    with_attr(:guest)      { |val| winrm.guest = val }
    with_attr(:guest_port) { |val| winrm.guest_port = val }
    with_attr(:max_tries)  { |val| winrm.max_tries = val }
    with_attr(:timeout)    { |val| winrm.timeout = val }
  end
end