Class: OvirtSDK4::VnicProfile
- Inherits:
-
Identified
- Object
- Struct
- Identified
- OvirtSDK4::VnicProfile
- 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. -
#custom_properties ⇒ Array<CustomProperty>
Returns the value of the
custom_properties
attribute. -
#custom_properties=(list) ⇒ Object
Sets the value of the
custom_properties
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 = {}) ⇒ VnicProfile
constructor
Creates a new instance of the VnicProfile class.
-
#migratable ⇒ Boolean
Returns the value of the
migratable
attribute. -
#migratable=(value) ⇒ Object
Sets the value of the
migratable
attribute. -
#name ⇒ String
Returns the value of the
name
attribute. -
#name=(value) ⇒ Object
Sets the value of the
name
attribute. -
#network ⇒ Network
Returns the value of the
network
attribute. -
#network=(value) ⇒ Object
Sets the value of the
network
attribute. -
#network_filter ⇒ NetworkFilter
Returns the value of the
network_filter
attribute. -
#network_filter=(value) ⇒ Object
Sets the value of the
network_filter
attribute. -
#pass_through ⇒ VnicPassThrough
Returns the value of the
pass_through
attribute. -
#pass_through=(value) ⇒ Object
Sets the value of the
pass_through
attribute. -
#permissions ⇒ Array<Permission>
Returns the value of the
permissions
attribute. -
#permissions=(list) ⇒ Object
Sets the value of the
permissions
attribute. -
#port_mirroring ⇒ Boolean
Returns the value of the
port_mirroring
attribute. -
#port_mirroring=(value) ⇒ Object
Sets the value of the
port_mirroring
attribute. -
#qos ⇒ Qos
Returns the value of the
qos
attribute. -
#qos=(value) ⇒ Object
Sets the value of the
qos
attribute.
Methods included from Type
Constructor Details
#initialize(opts = {}) ⇒ VnicProfile
Creates a new instance of the OvirtSDK4::VnicProfile class.
27386 27387 27388 27389 27390 27391 27392 27393 27394 27395 27396 |
# File 'lib/ovirtsdk4/types.rb', line 27386 def initialize(opts = {}) super(opts) self.custom_properties = opts[:custom_properties] self.migratable = opts[:migratable] self.network = opts[:network] self.network_filter = opts[:network_filter] self.pass_through = opts[:pass_through] self. = opts[:permissions] self.port_mirroring = opts[:port_mirroring] self.qos = opts[:qos] end |
Instance Method Details
#==(other) ⇒ Object
Returns true
if self
and other
have the same attributes and values.
27401 27402 27403 27404 27405 27406 27407 27408 27409 27410 27411 |
# File 'lib/ovirtsdk4/types.rb', line 27401 def ==(other) super && @custom_properties == other.custom_properties && @migratable == other.migratable && @network == other.network && @network_filter == other.network_filter && @pass_through == other.pass_through && @permissions == other. && @port_mirroring == other.port_mirroring && @qos == other.qos end |
#comment ⇒ String
Returns the value of the comment
attribute.
27099 27100 27101 |
# File 'lib/ovirtsdk4/types.rb', line 27099 def comment @comment end |
#comment=(value) ⇒ Object
Sets the value of the comment
attribute.
27108 27109 27110 |
# File 'lib/ovirtsdk4/types.rb', line 27108 def comment=(value) @comment = value end |
#custom_properties ⇒ Array<CustomProperty>
Returns the value of the custom_properties
attribute.
27117 27118 27119 |
# File 'lib/ovirtsdk4/types.rb', line 27117 def custom_properties @custom_properties end |
#custom_properties=(list) ⇒ Object
Sets the value of the custom_properties
attribute.
27126 27127 27128 27129 27130 27131 27132 27133 27134 27135 27136 |
# File 'lib/ovirtsdk4/types.rb', line 27126 def custom_properties=(list) if list.class == Array list = List.new(list) list.each_with_index do |value, index| if value.is_a?(Hash) list[index] = CustomProperty.new(value) end end end @custom_properties = list end |
#description ⇒ String
Returns the value of the description
attribute.
27143 27144 27145 |
# File 'lib/ovirtsdk4/types.rb', line 27143 def description @description end |
#description=(value) ⇒ Object
Sets the value of the description
attribute.
27152 27153 27154 |
# File 'lib/ovirtsdk4/types.rb', line 27152 def description=(value) @description = value end |
#hash ⇒ Object
Generates a hash value for this object.
27416 27417 27418 27419 27420 27421 27422 27423 27424 27425 27426 |
# File 'lib/ovirtsdk4/types.rb', line 27416 def hash super + @custom_properties.hash + @migratable.hash + @network.hash + @network_filter.hash + @pass_through.hash + @permissions.hash + @port_mirroring.hash + @qos.hash end |
#id ⇒ String
Returns the value of the id
attribute.
27161 27162 27163 |
# File 'lib/ovirtsdk4/types.rb', line 27161 def id @id end |
#id=(value) ⇒ Object
Sets the value of the id
attribute.
27170 27171 27172 |
# File 'lib/ovirtsdk4/types.rb', line 27170 def id=(value) @id = value end |
#migratable ⇒ Boolean
Returns the value of the migratable
attribute.
27179 27180 27181 |
# File 'lib/ovirtsdk4/types.rb', line 27179 def migratable @migratable end |
#migratable=(value) ⇒ Object
Sets the value of the migratable
attribute.
27188 27189 27190 |
# File 'lib/ovirtsdk4/types.rb', line 27188 def migratable=(value) @migratable = value end |
#name ⇒ String
Returns the value of the name
attribute.
27197 27198 27199 |
# File 'lib/ovirtsdk4/types.rb', line 27197 def name @name end |
#name=(value) ⇒ Object
Sets the value of the name
attribute.
27206 27207 27208 |
# File 'lib/ovirtsdk4/types.rb', line 27206 def name=(value) @name = value end |
#network ⇒ Network
Returns the value of the network
attribute.
27215 27216 27217 |
# File 'lib/ovirtsdk4/types.rb', line 27215 def network @network end |
#network=(value) ⇒ Object
Sets the value of the network
attribute.
The value
parameter can be an instance of Network 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.
27228 27229 27230 27231 27232 27233 |
# File 'lib/ovirtsdk4/types.rb', line 27228 def network=(value) if value.is_a?(Hash) value = Network.new(value) end @network = value end |
#network_filter ⇒ NetworkFilter
Returns the value of the network_filter
attribute.
27240 27241 27242 |
# File 'lib/ovirtsdk4/types.rb', line 27240 def network_filter @network_filter end |
#network_filter=(value) ⇒ Object
Sets the value of the network_filter
attribute.
The value
parameter can be an instance of NetworkFilter 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.
27253 27254 27255 27256 27257 27258 |
# File 'lib/ovirtsdk4/types.rb', line 27253 def network_filter=(value) if value.is_a?(Hash) value = NetworkFilter.new(value) end @network_filter = value end |
#pass_through ⇒ VnicPassThrough
Returns the value of the pass_through
attribute.
27265 27266 27267 |
# File 'lib/ovirtsdk4/types.rb', line 27265 def pass_through @pass_through end |
#pass_through=(value) ⇒ Object
Sets the value of the pass_through
attribute.
The value
parameter can be an instance of OvirtSDK4::VnicPassThrough 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.
27278 27279 27280 27281 27282 27283 |
# File 'lib/ovirtsdk4/types.rb', line 27278 def pass_through=(value) if value.is_a?(Hash) value = VnicPassThrough.new(value) end @pass_through = value end |
#permissions ⇒ Array<Permission>
Returns the value of the permissions
attribute.
27290 27291 27292 |
# File 'lib/ovirtsdk4/types.rb', line 27290 def @permissions end |
#permissions=(list) ⇒ Object
Sets the value of the permissions
attribute.
27299 27300 27301 27302 27303 27304 27305 27306 27307 27308 27309 |
# File 'lib/ovirtsdk4/types.rb', line 27299 def (list) if list.class == Array list = List.new(list) list.each_with_index do |value, index| if value.is_a?(Hash) list[index] = Permission.new(value) end end end @permissions = list end |
#port_mirroring ⇒ Boolean
Returns the value of the port_mirroring
attribute.
27316 27317 27318 |
# File 'lib/ovirtsdk4/types.rb', line 27316 def port_mirroring @port_mirroring end |
#port_mirroring=(value) ⇒ Object
Sets the value of the port_mirroring
attribute.
27325 27326 27327 |
# File 'lib/ovirtsdk4/types.rb', line 27325 def port_mirroring=(value) @port_mirroring = value end |
#qos ⇒ Qos
Returns the value of the qos
attribute.
27334 27335 27336 |
# File 'lib/ovirtsdk4/types.rb', line 27334 def qos @qos end |
#qos=(value) ⇒ Object
Sets the value of the qos
attribute.
The value
parameter can be an instance of Qos 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.
27347 27348 27349 27350 27351 27352 |
# File 'lib/ovirtsdk4/types.rb', line 27347 def qos=(value) if value.is_a?(Hash) value = Qos.new(value) end @qos = value end |