Class: OvirtSDK4::Fault
- Defined in:
- lib/ovirtsdk4/types.rb,
lib/ovirtsdk4/types.rb
Instance Method Summary collapse
-
#==(other) ⇒ Object
Returns
true
ifself
andother
have the same attributes and values. -
#detail ⇒ String
Returns the value of the
detail
attribute. -
#detail=(value) ⇒ Object
Sets the value of the
detail
attribute. -
#hash ⇒ Object
Generates a hash value for this object.
-
#initialize(opts = {}) ⇒ Fault
constructor
Creates a new instance of the Fault class.
-
#reason ⇒ String
Returns the value of the
reason
attribute. -
#reason=(value) ⇒ Object
Sets the value of the
reason
attribute.
Methods included from Type
Constructor Details
#initialize(opts = {}) ⇒ Fault
Creates a new instance of the OvirtSDK4::Fault class.
4244 4245 4246 4247 4248 |
# File 'lib/ovirtsdk4/types.rb', line 4244 def initialize(opts = {}) super(opts) self.detail = opts[:detail] self.reason = opts[:reason] end |
Instance Method Details
#==(other) ⇒ Object
Returns true
if self
and other
have the same attributes and values.
4253 4254 4255 4256 4257 |
# File 'lib/ovirtsdk4/types.rb', line 4253 def ==(other) super && @detail == other.detail && @reason == other.reason end |
#detail ⇒ String
Returns the value of the detail
attribute.
4201 4202 4203 |
# File 'lib/ovirtsdk4/types.rb', line 4201 def detail @detail end |
#detail=(value) ⇒ Object
Sets the value of the detail
attribute.
4210 4211 4212 |
# File 'lib/ovirtsdk4/types.rb', line 4210 def detail=(value) @detail = value end |
#hash ⇒ Object
Generates a hash value for this object.
4262 4263 4264 4265 4266 |
# File 'lib/ovirtsdk4/types.rb', line 4262 def hash super + @detail.hash + @reason.hash end |
#reason ⇒ String
Returns the value of the reason
attribute.
4219 4220 4221 |
# File 'lib/ovirtsdk4/types.rb', line 4219 def reason @reason end |
#reason=(value) ⇒ Object
Sets the value of the reason
attribute.
4228 4229 4230 |
# File 'lib/ovirtsdk4/types.rb', line 4228 def reason=(value) @reason = value end |