Class: Ansible::Ruby::Modules::Subversion
- Inherits:
-
Base
- Object
- Ansible::Ruby::Models::Base
- Base
- Ansible::Ruby::Modules::Subversion
- Defined in:
- lib/ansible/ruby/modules/generated/core/source_control/subversion.rb
Instance Method Summary collapse
-
#dest ⇒ String
Absolute path where the repository should be deployed.
-
#executable ⇒ Object?
Path to svn executable to use.
-
#export ⇒ :yes, ...
If C(yes), do export instead of checkout/update.
-
#force ⇒ :yes, ...
If C(yes), modified files will be discarded.
-
#password ⇒ Object?
–password parameter passed to svn.
-
#repo ⇒ String
The subversion URL to the repository.
-
#revision ⇒ String?
Specific revision to checkout.
-
#switch ⇒ :yes, ...
If C(no), do not call svn switch before update.
-
#username ⇒ Object?
–username parameter passed to svn.
Methods inherited from Base
Methods inherited from Ansible::Ruby::Models::Base
attr_option, attr_options, attribute, #initialize, #to_h, validates
Constructor Details
This class inherits a constructor from Ansible::Ruby::Models::Base
Instance Method Details
#dest ⇒ String
Returns Absolute path where the repository should be deployed.
14 |
# File 'lib/ansible/ruby/modules/generated/core/source_control/subversion.rb', line 14 attribute :dest |
#executable ⇒ Object?
Returns Path to svn executable to use. If not supplied, the normal mechanism for resolving binary paths will be used.
32 |
# File 'lib/ansible/ruby/modules/generated/core/source_control/subversion.rb', line 32 attribute :executable |
#export ⇒ :yes, ...
Returns If C(yes), do export instead of checkout/update.
35 |
# File 'lib/ansible/ruby/modules/generated/core/source_control/subversion.rb', line 35 attribute :export |
#force ⇒ :yes, ...
Returns If C(yes), modified files will be discarded. If C(no), module will fail if it encounters modified files. Prior to 1.9 the default was ‘yes`.
22 |
# File 'lib/ansible/ruby/modules/generated/core/source_control/subversion.rb', line 22 attribute :force |
#password ⇒ Object?
Returns –password parameter passed to svn.
29 |
# File 'lib/ansible/ruby/modules/generated/core/source_control/subversion.rb', line 29 attribute :password |
#repo ⇒ String
Returns The subversion URL to the repository.
10 |
# File 'lib/ansible/ruby/modules/generated/core/source_control/subversion.rb', line 10 attribute :repo |
#revision ⇒ String?
Returns Specific revision to checkout.
18 |
# File 'lib/ansible/ruby/modules/generated/core/source_control/subversion.rb', line 18 attribute :revision |
#switch ⇒ :yes, ...
Returns If C(no), do not call svn switch before update.
39 |
# File 'lib/ansible/ruby/modules/generated/core/source_control/subversion.rb', line 39 attribute :switch |
#username ⇒ Object?
Returns –username parameter passed to svn.
26 |
# File 'lib/ansible/ruby/modules/generated/core/source_control/subversion.rb', line 26 attribute :username |