Class: Ansible::Ruby::Modules::Win_regedit
- Inherits:
-
Base
- Object
- Ansible::Ruby::Models::Base
- Base
- Ansible::Ruby::Modules::Win_regedit
- Defined in:
- lib/ansible/ruby/modules/generated/extras/windows/win_regedit.rb
Overview
Add, Edit, or Remove Registry Keys and Values using ItemProperties Cmdlets
Instance Method Summary collapse
-
#data ⇒ Object?
Registry Value Data.
-
#datatype ⇒ :binary, ...
Registry Value Data Type.
-
#key ⇒ Object
Name of Registry Key.
-
#state ⇒ :present, ...
State of Registry Value.
-
#value ⇒ Object
Name of Registry Value.
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
#data ⇒ Object?
Returns Registry Value Data. Binary data should be expressed a yaml byte array or as comma separated hex values. An easy way to generate this is to run C(regedit.exe) and use the I(Export) option to save the registry values to a file. In the exported file binary values will look like C(hex:be,ef,be,ef). The C(hex:) prefix is optional.
19 |
# File 'lib/ansible/ruby/modules/generated/extras/windows/win_regedit.rb', line 19 attribute :data |
#datatype ⇒ :binary, ...
Returns Registry Value Data Type.
22 |
# File 'lib/ansible/ruby/modules/generated/extras/windows/win_regedit.rb', line 22 attribute :datatype |
#key ⇒ Object
Returns Name of Registry Key.
11 |
# File 'lib/ansible/ruby/modules/generated/extras/windows/win_regedit.rb', line 11 attribute :key |
#state ⇒ :present, ...
Returns State of Registry Value.
26 |
# File 'lib/ansible/ruby/modules/generated/extras/windows/win_regedit.rb', line 26 attribute :state |
#value ⇒ Object
Returns Name of Registry Value.
15 |
# File 'lib/ansible/ruby/modules/generated/extras/windows/win_regedit.rb', line 15 attribute :value |