Method: OvirtSDK4::FencingPolicy#skip_if_connectivity_broken=
- Defined in:
- lib/ovirtsdk4/types.rb
#skip_if_connectivity_broken=(value) ⇒ Object
Sets the value of the skip_if_connectivity_broken
attribute.
The value
parameter can be an instance of SkipIfConnectivityBroken 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.
4308 4309 4310 4311 4312 4313 |
# File 'lib/ovirtsdk4/types.rb', line 4308 def skip_if_connectivity_broken=(value) if value.is_a?(Hash) value = SkipIfConnectivityBroken.new(value) end @skip_if_connectivity_broken = value end |