Class: Ansible::Ruby::Modules::Win_get_url
- Inherits:
-
Base
- Object
- Ansible::Ruby::Models::Base
- Base
- Ansible::Ruby::Modules::Win_get_url
- Defined in:
- lib/ansible/ruby/modules/generated/core/windows/win_get_url.rb
Overview
Fetches a file from a URL and saves to locally
Instance Method Summary collapse
-
#dest ⇒ String
The absolute path of the location to save the file at the URL.
-
#force ⇒ Boolean?
If C(yes), will always download the file.
-
#password ⇒ Object?
Basic authentication password.
-
#proxy_password ⇒ String?
Proxy authentication password.
-
#proxy_url ⇒ String?
The full URL of the proxy server to download through.
-
#proxy_username ⇒ String?
Proxy authentication username.
-
#skip_certificate_validation ⇒ Boolean?
Skip SSL certificate validation if true.
-
#url ⇒ String
The full URL of a file to download.
-
#username ⇒ Object?
Basic authentication username.
Methods inherited from Base
Methods inherited from Ansible::Ruby::Models::Base
attr_option, attr_options, attribute, #initialize, remove_existing_validations, #to_h, validates
Constructor Details
This class inherits a constructor from Ansible::Ruby::Models::Base
Instance Method Details
#dest ⇒ String
Returns The absolute path of the location to save the file at the URL. Be sure to include a filename and extension as appropriate.
15 |
# File 'lib/ansible/ruby/modules/generated/core/windows/win_get_url.rb', line 15 attribute :dest |
#force ⇒ Boolean?
Returns If C(yes), will always download the file. If C(no), will only download the file if it does not exist or the remote file has been modified more recently than the local file.
19 |
# File 'lib/ansible/ruby/modules/generated/core/windows/win_get_url.rb', line 19 attribute :force |
#password ⇒ Object?
Returns Basic authentication password.
26 |
# File 'lib/ansible/ruby/modules/generated/core/windows/win_get_url.rb', line 26 attribute :password |
#proxy_password ⇒ String?
Returns Proxy authentication password.
41 |
# File 'lib/ansible/ruby/modules/generated/core/windows/win_get_url.rb', line 41 attribute :proxy_password |
#proxy_url ⇒ String?
Returns The full URL of the proxy server to download through.
33 |
# File 'lib/ansible/ruby/modules/generated/core/windows/win_get_url.rb', line 33 attribute :proxy_url |
#proxy_username ⇒ String?
Returns Proxy authentication username.
37 |
# File 'lib/ansible/ruby/modules/generated/core/windows/win_get_url.rb', line 37 attribute :proxy_username |
#skip_certificate_validation ⇒ Boolean?
Returns Skip SSL certificate validation if true.
29 |
# File 'lib/ansible/ruby/modules/generated/core/windows/win_get_url.rb', line 29 attribute :skip_certificate_validation |
#url ⇒ String
Returns The full URL of a file to download.
11 |
# File 'lib/ansible/ruby/modules/generated/core/windows/win_get_url.rb', line 11 attribute :url |
#username ⇒ Object?
Returns Basic authentication username.
23 |
# File 'lib/ansible/ruby/modules/generated/core/windows/win_get_url.rb', line 23 attribute :username |