Class: OvirtSDK4::OpenstackVolumeAuthenticationKey
- Inherits:
-
Identified
- Object
- Struct
- Identified
- OvirtSDK4::OpenstackVolumeAuthenticationKey
- 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. -
#comment ⇒ String
Returns the value of the
comment
attribute. -
#comment=(value) ⇒ Object
Sets the value of the
comment
attribute. -
#creation_date ⇒ DateTime
Returns the value of the
creation_date
attribute. -
#creation_date=(value) ⇒ Object
Sets the value of the
creation_date
attribute. -
#description ⇒ String
Returns the value of the
description
attribute. -
#description=(value) ⇒ Object
Sets the value of the
description
attribute. -
#hash ⇒ Object
Generates a hash value for this object.
-
#id ⇒ String
Returns the value of the
id
attribute. -
#id=(value) ⇒ Object
Sets the value of the
id
attribute. -
#initialize(opts = {}) ⇒ OpenstackVolumeAuthenticationKey
constructor
Creates a new instance of the OpenstackVolumeAuthenticationKey class.
-
#name ⇒ String
Returns the value of the
name
attribute. -
#name=(value) ⇒ Object
Sets the value of the
name
attribute. -
#openstack_volume_provider ⇒ OpenStackVolumeProvider
Returns the value of the
openstack_volume_provider
attribute. -
#openstack_volume_provider=(value) ⇒ Object
Sets the value of the
openstack_volume_provider
attribute. -
#usage_type ⇒ OpenstackVolumeAuthenticationKeyUsageType
Returns the value of the
usage_type
attribute. -
#usage_type=(value) ⇒ Object
Sets the value of the
usage_type
attribute. -
#uuid ⇒ String
Returns the value of the
uuid
attribute. -
#uuid=(value) ⇒ Object
Sets the value of the
uuid
attribute. -
#value ⇒ String
Returns the value of the
value
attribute. -
#value=(value) ⇒ Object
Sets the value of the
value
attribute.
Methods included from Type
Constructor Details
#initialize(opts = {}) ⇒ OpenstackVolumeAuthenticationKey
Creates a new instance of the OvirtSDK4::OpenstackVolumeAuthenticationKey class.
12653 12654 12655 12656 12657 12658 12659 12660 |
# File 'lib/ovirtsdk4/types.rb', line 12653 def initialize(opts = {}) super(opts) self.creation_date = opts[:creation_date] self.openstack_volume_provider = opts[:openstack_volume_provider] self.usage_type = opts[:usage_type] self.uuid = opts[:uuid] self.value = opts[:value] end |
Instance Method Details
#==(other) ⇒ Object
Returns true
if self
and other
have the same attributes and values.
12665 12666 12667 12668 12669 12670 12671 12672 |
# File 'lib/ovirtsdk4/types.rb', line 12665 def ==(other) super && @creation_date == other.creation_date && @openstack_volume_provider == other.openstack_volume_provider && @usage_type == other.usage_type && @uuid == other.uuid && @value == other.value end |
#comment ⇒ String
Returns the value of the comment
attribute.
12463 12464 12465 |
# File 'lib/ovirtsdk4/types.rb', line 12463 def comment @comment end |
#comment=(value) ⇒ Object
Sets the value of the comment
attribute.
12472 12473 12474 |
# File 'lib/ovirtsdk4/types.rb', line 12472 def comment=(value) @comment = value end |
#creation_date ⇒ DateTime
Returns the value of the creation_date
attribute.
12481 12482 12483 |
# File 'lib/ovirtsdk4/types.rb', line 12481 def creation_date @creation_date end |
#creation_date=(value) ⇒ Object
Sets the value of the creation_date
attribute.
12490 12491 12492 |
# File 'lib/ovirtsdk4/types.rb', line 12490 def creation_date=(value) @creation_date = value end |
#description ⇒ String
Returns the value of the description
attribute.
12499 12500 12501 |
# File 'lib/ovirtsdk4/types.rb', line 12499 def description @description end |
#description=(value) ⇒ Object
Sets the value of the description
attribute.
12508 12509 12510 |
# File 'lib/ovirtsdk4/types.rb', line 12508 def description=(value) @description = value end |
#hash ⇒ Object
Generates a hash value for this object.
12677 12678 12679 12680 12681 12682 12683 12684 |
# File 'lib/ovirtsdk4/types.rb', line 12677 def hash super + @creation_date.hash + @openstack_volume_provider.hash + @usage_type.hash + @uuid.hash + @value.hash end |
#id ⇒ String
Returns the value of the id
attribute.
12517 12518 12519 |
# File 'lib/ovirtsdk4/types.rb', line 12517 def id @id end |
#id=(value) ⇒ Object
Sets the value of the id
attribute.
12526 12527 12528 |
# File 'lib/ovirtsdk4/types.rb', line 12526 def id=(value) @id = value end |
#name ⇒ String
Returns the value of the name
attribute.
12535 12536 12537 |
# File 'lib/ovirtsdk4/types.rb', line 12535 def name @name end |
#name=(value) ⇒ Object
Sets the value of the name
attribute.
12544 12545 12546 |
# File 'lib/ovirtsdk4/types.rb', line 12544 def name=(value) @name = value end |
#openstack_volume_provider ⇒ OpenStackVolumeProvider
Returns the value of the openstack_volume_provider
attribute.
12553 12554 12555 |
# File 'lib/ovirtsdk4/types.rb', line 12553 def openstack_volume_provider @openstack_volume_provider end |
#openstack_volume_provider=(value) ⇒ Object
Sets the value of the openstack_volume_provider
attribute.
The value
parameter can be an instance of OvirtSDK4::OpenStackVolumeProvider 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.
12566 12567 12568 12569 12570 12571 |
# File 'lib/ovirtsdk4/types.rb', line 12566 def openstack_volume_provider=(value) if value.is_a?(Hash) value = OpenStackVolumeProvider.new(value) end @openstack_volume_provider = value end |
#usage_type ⇒ OpenstackVolumeAuthenticationKeyUsageType
Returns the value of the usage_type
attribute.
12578 12579 12580 |
# File 'lib/ovirtsdk4/types.rb', line 12578 def usage_type @usage_type end |
#usage_type=(value) ⇒ Object
Sets the value of the usage_type
attribute.
12587 12588 12589 |
# File 'lib/ovirtsdk4/types.rb', line 12587 def usage_type=(value) @usage_type = value end |
#uuid ⇒ String
Returns the value of the uuid
attribute.
12596 12597 12598 |
# File 'lib/ovirtsdk4/types.rb', line 12596 def uuid @uuid end |
#uuid=(value) ⇒ Object
Sets the value of the uuid
attribute.
12605 12606 12607 |
# File 'lib/ovirtsdk4/types.rb', line 12605 def uuid=(value) @uuid = value end |
#value ⇒ String
Returns the value of the value
attribute.
12614 12615 12616 |
# File 'lib/ovirtsdk4/types.rb', line 12614 def value @value end |
#value=(value) ⇒ Object
Sets the value of the value
attribute.
12623 12624 12625 |
# File 'lib/ovirtsdk4/types.rb', line 12623 def value=(value) @value = value end |