Class: Runbook::Statements::Download

Inherits:
Runbook::Statement show all
Defined in:
lib/runbook/statements/download.rb

Instance Attribute Summary collapse

Attributes inherited from Runbook::Statement

#parent

Instance Method Summary collapse

Methods inherited from Runbook::Statement

#render, #run

Methods included from Hooks::Invoker

#_execute_after_hooks, #_execute_around_hooks, #_execute_before_hooks, #invoke_with_hooks

Methods inherited from Node

#dynamic!, #dynamic?, #visited!, #visited?

Constructor Details

#initialize(from, to: nil, ssh_config: nil, options: {}) ⇒ Download

Returns a new instance of Download.



5
6
7
8
9
10
# File 'lib/runbook/statements/download.rb', line 5

def initialize(from, to: nil, ssh_config: nil, options: {})
  @from = from
  @to = to
  @ssh_config = ssh_config
  @options = options
end

Instance Attribute Details

#fromObject (readonly)

Returns the value of attribute from.



3
4
5
# File 'lib/runbook/statements/download.rb', line 3

def from
  @from
end

#optionsObject (readonly)

Returns the value of attribute options.



3
4
5
# File 'lib/runbook/statements/download.rb', line 3

def options
  @options
end

#ssh_configObject (readonly)

Returns the value of attribute ssh_config.



3
4
5
# File 'lib/runbook/statements/download.rb', line 3

def ssh_config
  @ssh_config
end

#toObject (readonly)

Returns the value of attribute to.



3
4
5
# File 'lib/runbook/statements/download.rb', line 3

def to
  @to
end