Method: OvirtSDK4::FencingPolicy#skip_if_sd_active=
- Defined in:
- lib/ovirtsdk4/types.rb
#skip_if_sd_active=(value) ⇒ Object
Sets the value of the skip_if_sd_active
attribute.
The value
parameter can be an instance of SkipIfSdActive or a hash.
If it is a hash then a new instance will be created passing the hash as the
opts
parameter to the constructor.
4369 4370 4371 4372 4373 4374 |
# File 'lib/ovirtsdk4/types.rb', line 4369 def skip_if_sd_active=(value) if value.is_a?(Hash) value = SkipIfSdActive.new(value) end @skip_if_sd_active = value end |