Skip to content

Commit

Permalink
Adding HTTP proxy support to the SCP action. Two new optional paramet…
Browse files Browse the repository at this point in the history
…ers introduced - proxyHost & proxyPort. Resolves CloudSlang#997.

Signed-off-by: Petr Panuska petr.panuska@hpe.com
  • Loading branch information
pe-pan committed Nov 21, 2017
1 parent 6a24566 commit 7f51b78
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
#! @input known_hosts_path: Path to the known_hosts file.
#! @input timeout: Optional - Time in milliseconds to wait for the command to complete.
#! Default: '90000'
#! @input proxyHost: Optional - HTTP proxy host.
#! @input proxyPort: Optional - HTTP proxy port.
#! Default: '8080'
#!
#! @output return_result: Confirmation message.
#! @output return_code: '0' if operation finished with SUCCESS, different than '0' otherwise.
Expand Down Expand Up @@ -131,9 +134,13 @@ operation:
- timeout:
default: '90000'
required: false
- proxyHost:
required: false
- proxyPort:
required: false

java_action:
gav: 'io.cloudslang.content:cs-rft:0.0.3'
gav: 'io.cloudslang.content:cs-rft:0.0.5'
class_name: io.cloudslang.content.rft.actions.RemoteSecureCopyAction
method_name: copyTo

Expand Down

0 comments on commit 7f51b78

Please sign in to comment.