class OvirtSDK4::Host
Public Class Methods
Creates a new instance of the {Host} class.
@param opts [Hash] A hash containing the attributes of the object. The keys of the hash
should be symbols corresponding to the names of the attributes. The values of the hash should be the values of the attributes.
@option opts [String] :address The value of attribute `address`.
@option opts [AutoNumaStatus] :auto_numa_status The value of attribute `auto_numa_status`.
@option opts [Certificate, Hash] :certificate The value of attribute `certificate`.
@option opts [Cluster, Hash] :cluster The value of attribute `cluster`.
@option opts [String] :comment The value of attribute `comment`.
@option opts [Cpu, Hash] :cpu The value of attribute `cpu`.
@option opts [String] :description The value of attribute `description`.
@option opts [HostDevicePassthrough, Hash] :device_passthrough The value of attribute `device_passthrough`.
@option opts [Display, Hash] :display The value of attribute `display`.
@option opts [ExternalHostProvider, Hash] :external_host_provider The value of attribute `external_host_provider`.
@option opts [ExternalStatus] :external_status The value of attribute `external_status`.
@option opts [HardwareInformation, Hash] :hardware_information The value of attribute `hardware_information`.
@option opts [Array<Hook>, Array<Hash>] :hooks The values of attribute `hooks`.
@option opts [HostedEngine, Hash] :hosted_engine The value of attribute `hosted_engine`.
@option opts [String] :id The value of attribute `id`.
@option opts [IscsiDetails, Hash] :iscsi The value of attribute `iscsi`.
@option opts [Array<KatelloErratum>, Array<Hash>] :katello_errata The values of attribute `katello_errata`.
@option opts [KdumpStatus] :kdump_status The value of attribute `kdump_status`.
@option opts [Ksm, Hash] :ksm The value of attribute `ksm`.
@option opts [Version, Hash] :libvirt_version The value of attribute `libvirt_version`.
@option opts [Integer] :max_scheduling_memory The value of attribute `max_scheduling_memory`.
@option opts [Integer] :memory The value of attribute `memory`.
@option opts [String] :name The value of attribute `name`.
@option opts [Boolean] :numa_supported The value of attribute `numa_supported`.
@option opts [OperatingSystem, Hash] :os The value of attribute `os`.
@option opts [Boolean] :override_iptables The value of attribute `override_iptables`.
@option opts [Integer] :port The value of attribute `port`.
@option opts [PowerManagement, Hash] :power_management The value of attribute `power_management`.
@option opts [HostProtocol] :protocol The value of attribute `protocol`.
@option opts [String] :root_password The value of attribute `root_password`.
@option opts [SeLinux, Hash] :se_linux The value of attribute `se_linux`.
@option opts [Spm, Hash] :spm The value of attribute `spm`.
@option opts [Ssh, Hash] :ssh The value of attribute `ssh`.
@option opts [Array<Statistic>, Array<Hash>] :statistics The values of attribute `statistics`.
@option opts [HostStatus] :status The value of attribute `status`.
@option opts [String] :status_detail The value of attribute `status_detail`.
@option opts [Array<StorageConnectionExtension>, Array<Hash>] :storage_connection_extensions The values of attribute `storage_connection_extensions`.
@option opts [VmSummary, Hash] :summary The value of attribute `summary`.
@option opts [TransparentHugePages, Hash] :transparent_huge_pages The value of attribute `transparent_huge_pages`.
@option opts [HostType] :type The value of attribute `type`.
@option opts [Boolean] :update_available The value of attribute `update_available`.
@option opts [Version, Hash] :version The value of attribute `version`.
# File lib/ovirtsdk4/types.rb, line 31744 def initialize(opts = {}) super(opts) self.address = opts[:address] self.auto_numa_status = opts[:auto_numa_status] self.certificate = opts[:certificate] self.cluster = opts[:cluster] self.comment = opts[:comment] self.cpu = opts[:cpu] self.description = opts[:description] self.device_passthrough = opts[:device_passthrough] self.display = opts[:display] self.external_host_provider = opts[:external_host_provider] self.external_status = opts[:external_status] self.hardware_information = opts[:hardware_information] self.hooks = opts[:hooks] self.hosted_engine = opts[:hosted_engine] self.id = opts[:id] self.iscsi = opts[:iscsi] self.katello_errata = opts[:katello_errata] self.kdump_status = opts[:kdump_status] self.ksm = opts[:ksm] self.libvirt_version = opts[:libvirt_version] self.max_scheduling_memory = opts[:max_scheduling_memory] self.memory = opts[:memory] self.name = opts[:name] self.numa_supported = opts[:numa_supported] self.os = opts[:os] self.override_iptables = opts[:override_iptables] self.port = opts[:port] self.power_management = opts[:power_management] self.protocol = opts[:protocol] self.root_password = opts[:root_password] self.se_linux = opts[:se_linux] self.spm = opts[:spm] self.ssh = opts[:ssh] self.statistics = opts[:statistics] self.status = opts[:status] self.status_detail = opts[:status_detail] self.storage_connection_extensions = opts[:storage_connection_extensions] self.summary = opts[:summary] self.transparent_huge_pages = opts[:transparent_huge_pages] self.type = opts[:type] self.update_available = opts[:update_available] self.version = opts[:version] end
Public Instance Methods
Returns the value of the `address` attribute.
@return [String]
# File lib/ovirtsdk4/types.rb, line 30740 def address return @address end
Sets the value of the `address` attribute.
@param value [String]
# File lib/ovirtsdk4/types.rb, line 30749 def address=(value) @address = value end
Returns the value of the `auto_numa_status` attribute.
@return [AutoNumaStatus]
# File lib/ovirtsdk4/types.rb, line 30758 def auto_numa_status return @auto_numa_status end
Sets the value of the `auto_numa_status` attribute.
@param value [AutoNumaStatus]
# File lib/ovirtsdk4/types.rb, line 30767 def auto_numa_status=(value) @auto_numa_status = value end
Returns the value of the `certificate` attribute.
@return [Certificate]
# File lib/ovirtsdk4/types.rb, line 30776 def certificate return @certificate end
Sets the value of the `certificate` attribute.
@param value [Certificate, Hash]
The `value` parameter can be an instance of {OvirtSDK4::Certificate} 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.
# File lib/ovirtsdk4/types.rb, line 30789 def certificate=(value) if value.is_a?(Hash) value = Certificate.new(value) end @certificate = value end
Returns the value of the `cluster` attribute.
@return [Cluster]
# File lib/ovirtsdk4/types.rb, line 30801 def cluster return @cluster end
Sets the value of the `cluster` attribute.
@param value [Cluster, Hash]
The `value` parameter can be an instance of {OvirtSDK4::Cluster} 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.
# File lib/ovirtsdk4/types.rb, line 30814 def cluster=(value) if value.is_a?(Hash) value = Cluster.new(value) end @cluster = value end
Returns the value of the `comment` attribute.
@return [String]
# File lib/ovirtsdk4/types.rb, line 30826 def comment return @comment end
Sets the value of the `comment` attribute.
@param value [String]
# File lib/ovirtsdk4/types.rb, line 30835 def comment=(value) @comment = value end
Returns the value of the `cpu` attribute.
@return [Cpu]
# File lib/ovirtsdk4/types.rb, line 30844 def cpu return @cpu end
Sets the value of the `cpu` attribute.
@param value [Cpu, Hash]
The `value` parameter can be an instance of {OvirtSDK4::Cpu} 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.
# File lib/ovirtsdk4/types.rb, line 30857 def cpu=(value) if value.is_a?(Hash) value = Cpu.new(value) end @cpu = value end
Returns the value of the `description` attribute.
@return [String]
# File lib/ovirtsdk4/types.rb, line 30869 def description return @description end
Sets the value of the `description` attribute.
@param value [String]
# File lib/ovirtsdk4/types.rb, line 30878 def description=(value) @description = value end
Returns the value of the `device_passthrough` attribute.
@return [HostDevicePassthrough]
# File lib/ovirtsdk4/types.rb, line 30887 def device_passthrough return @device_passthrough end
Sets the value of the `device_passthrough` attribute.
@param value [HostDevicePassthrough, Hash]
The `value` parameter can be an instance of {OvirtSDK4::HostDevicePassthrough} 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.
# File lib/ovirtsdk4/types.rb, line 30900 def device_passthrough=(value) if value.is_a?(Hash) value = HostDevicePassthrough.new(value) end @device_passthrough = value end
Returns the value of the `display` attribute.
@return [Display]
# File lib/ovirtsdk4/types.rb, line 30912 def display return @display end
Sets the value of the `display` attribute.
@param value [Display, Hash]
The `value` parameter can be an instance of {OvirtSDK4::Display} 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.
# File lib/ovirtsdk4/types.rb, line 30925 def display=(value) if value.is_a?(Hash) value = Display.new(value) end @display = value end
Returns the value of the `external_host_provider` attribute.
@return [ExternalHostProvider]
# File lib/ovirtsdk4/types.rb, line 30937 def external_host_provider return @external_host_provider end
Sets the value of the `external_host_provider` attribute.
@param value [ExternalHostProvider, Hash]
The `value` parameter can be an instance of {OvirtSDK4::ExternalHostProvider} 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.
# File lib/ovirtsdk4/types.rb, line 30950 def external_host_provider=(value) if value.is_a?(Hash) value = ExternalHostProvider.new(value) end @external_host_provider = value end
Returns the value of the `external_status` attribute.
@return [ExternalStatus]
# File lib/ovirtsdk4/types.rb, line 30962 def external_status return @external_status end
Sets the value of the `external_status` attribute.
@param value [ExternalStatus]
# File lib/ovirtsdk4/types.rb, line 30971 def external_status=(value) @external_status = value end
Returns the value of the `hardware_information` attribute.
@return [HardwareInformation]
# File lib/ovirtsdk4/types.rb, line 30980 def hardware_information return @hardware_information end
Sets the value of the `hardware_information` attribute.
@param value [HardwareInformation, Hash]
The `value` parameter can be an instance of {OvirtSDK4::HardwareInformation} 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.
# File lib/ovirtsdk4/types.rb, line 30993 def hardware_information=(value) if value.is_a?(Hash) value = HardwareInformation.new(value) end @hardware_information = value end
Returns the value of the `hooks` attribute.
@return [Array<Hook>]
# File lib/ovirtsdk4/types.rb, line 31005 def hooks return @hooks end
Sets the value of the `hooks` attribute.
@param list [Array<Hook>]
# File lib/ovirtsdk4/types.rb, line 31013 def hooks=(list) if list.class == Array list = List.new(list) list.each_with_index do |value, index| if value.is_a?(Hash) list[index] = Hook.new(value) end end end @hooks = list end
Returns the value of the `hosted_engine` attribute.
@return [HostedEngine]
# File lib/ovirtsdk4/types.rb, line 31030 def hosted_engine return @hosted_engine end
Sets the value of the `hosted_engine` attribute.
@param value [HostedEngine, Hash]
The `value` parameter can be an instance of {OvirtSDK4::HostedEngine} 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.
# File lib/ovirtsdk4/types.rb, line 31043 def hosted_engine=(value) if value.is_a?(Hash) value = HostedEngine.new(value) end @hosted_engine = value end
Returns the value of the `id` attribute.
@return [String]
# File lib/ovirtsdk4/types.rb, line 31055 def id return @id end
Sets the value of the `id` attribute.
@param value [String]
# File lib/ovirtsdk4/types.rb, line 31064 def id=(value) @id = value end
Returns the value of the `iscsi` attribute.
@return [IscsiDetails]
# File lib/ovirtsdk4/types.rb, line 31073 def iscsi return @iscsi end
Sets the value of the `iscsi` attribute.
@param value [IscsiDetails, Hash]
The `value` parameter can be an instance of {OvirtSDK4::IscsiDetails} 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.
# File lib/ovirtsdk4/types.rb, line 31086 def iscsi=(value) if value.is_a?(Hash) value = IscsiDetails.new(value) end @iscsi = value end
Returns the value of the `katello_errata` attribute.
@return [Array<KatelloErratum>]
# File lib/ovirtsdk4/types.rb, line 31098 def katello_errata return @katello_errata end
Sets the value of the `katello_errata` attribute.
@param list [Array<KatelloErratum>]
# File lib/ovirtsdk4/types.rb, line 31106 def katello_errata=(list) if list.class == Array list = List.new(list) list.each_with_index do |value, index| if value.is_a?(Hash) list[index] = KatelloErratum.new(value) end end end @katello_errata = list end
Returns the value of the `kdump_status` attribute.
@return [KdumpStatus]
# File lib/ovirtsdk4/types.rb, line 31123 def kdump_status return @kdump_status end
Sets the value of the `kdump_status` attribute.
@param value [KdumpStatus]
# File lib/ovirtsdk4/types.rb, line 31132 def kdump_status=(value) @kdump_status = value end
Returns the value of the `ksm` attribute.
@return [Ksm]
# File lib/ovirtsdk4/types.rb, line 31141 def ksm return @ksm end
Sets the value of the `ksm` attribute.
@param value [Ksm, Hash]
The `value` parameter can be an instance of {OvirtSDK4::Ksm} 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.
# File lib/ovirtsdk4/types.rb, line 31154 def ksm=(value) if value.is_a?(Hash) value = Ksm.new(value) end @ksm = value end
Returns the value of the `libvirt_version` attribute.
@return [Version]
# File lib/ovirtsdk4/types.rb, line 31166 def libvirt_version return @libvirt_version end
Sets the value of the `libvirt_version` attribute.
@param value [Version, Hash]
The `value` parameter can be an instance of {OvirtSDK4::Version} 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.
# File lib/ovirtsdk4/types.rb, line 31179 def libvirt_version=(value) if value.is_a?(Hash) value = Version.new(value) end @libvirt_version = value end
Returns the value of the `max_scheduling_memory` attribute.
@return [Integer]
# File lib/ovirtsdk4/types.rb, line 31191 def max_scheduling_memory return @max_scheduling_memory end
Sets the value of the `max_scheduling_memory` attribute.
@param value [Integer]
# File lib/ovirtsdk4/types.rb, line 31200 def max_scheduling_memory=(value) @max_scheduling_memory = value end
Returns the value of the `memory` attribute.
@return [Integer]
# File lib/ovirtsdk4/types.rb, line 31209 def memory return @memory end
Sets the value of the `memory` attribute.
@param value [Integer]
# File lib/ovirtsdk4/types.rb, line 31218 def memory=(value) @memory = value end
Returns the value of the `name` attribute.
@return [String]
# File lib/ovirtsdk4/types.rb, line 31227 def name return @name end
Sets the value of the `name` attribute.
@param value [String]
# File lib/ovirtsdk4/types.rb, line 31236 def name=(value) @name = value end
Returns the value of the `numa_supported` attribute.
@return [Boolean]
# File lib/ovirtsdk4/types.rb, line 31245 def numa_supported return @numa_supported end
Sets the value of the `numa_supported` attribute.
@param value [Boolean]
# File lib/ovirtsdk4/types.rb, line 31254 def numa_supported=(value) @numa_supported = value end
Returns the value of the `os` attribute.
@return [OperatingSystem]
# File lib/ovirtsdk4/types.rb, line 31263 def os return @os end
Sets the value of the `os` attribute.
@param value [OperatingSystem, Hash]
The `value` parameter can be an instance of {OvirtSDK4::OperatingSystem} 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.
# File lib/ovirtsdk4/types.rb, line 31276 def os=(value) if value.is_a?(Hash) value = OperatingSystem.new(value) end @os = value end
Returns the value of the `override_iptables` attribute.
@return [Boolean]
# File lib/ovirtsdk4/types.rb, line 31288 def override_iptables return @override_iptables end
Sets the value of the `override_iptables` attribute.
@param value [Boolean]
# File lib/ovirtsdk4/types.rb, line 31297 def override_iptables=(value) @override_iptables = value end
Returns the value of the `port` attribute.
@return [Integer]
# File lib/ovirtsdk4/types.rb, line 31306 def port return @port end
Sets the value of the `port` attribute.
@param value [Integer]
# File lib/ovirtsdk4/types.rb, line 31315 def port=(value) @port = value end
Returns the value of the `power_management` attribute.
@return [PowerManagement]
# File lib/ovirtsdk4/types.rb, line 31324 def power_management return @power_management end
Sets the value of the `power_management` attribute.
@param value [PowerManagement, Hash]
The `value` parameter can be an instance of {OvirtSDK4::PowerManagement} 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.
# File lib/ovirtsdk4/types.rb, line 31337 def power_management=(value) if value.is_a?(Hash) value = PowerManagement.new(value) end @power_management = value end
Returns the value of the `protocol` attribute.
@return [HostProtocol]
# File lib/ovirtsdk4/types.rb, line 31349 def protocol return @protocol end
Sets the value of the `protocol` attribute.
@param value [HostProtocol]
# File lib/ovirtsdk4/types.rb, line 31358 def protocol=(value) @protocol = value end
Returns the value of the `root_password` attribute.
@return [String]
# File lib/ovirtsdk4/types.rb, line 31367 def root_password return @root_password end
Sets the value of the `root_password` attribute.
@param value [String]
# File lib/ovirtsdk4/types.rb, line 31376 def root_password=(value) @root_password = value end
Returns the value of the `se_linux` attribute.
@return [SeLinux]
# File lib/ovirtsdk4/types.rb, line 31385 def se_linux return @se_linux end
Sets the value of the `se_linux` attribute.
@param value [SeLinux, Hash]
The `value` parameter can be an instance of {OvirtSDK4::SeLinux} 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.
# File lib/ovirtsdk4/types.rb, line 31398 def se_linux=(value) if value.is_a?(Hash) value = SeLinux.new(value) end @se_linux = value end
Returns the value of the `spm` attribute.
@return [Spm]
# File lib/ovirtsdk4/types.rb, line 31410 def spm return @spm end
Sets the value of the `spm` attribute.
@param value [Spm, Hash]
The `value` parameter can be an instance of {OvirtSDK4::Spm} 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.
# File lib/ovirtsdk4/types.rb, line 31423 def spm=(value) if value.is_a?(Hash) value = Spm.new(value) end @spm = value end
Returns the value of the `ssh` attribute.
@return [Ssh]
# File lib/ovirtsdk4/types.rb, line 31435 def ssh return @ssh end
Sets the value of the `ssh` attribute.
@param value [Ssh, Hash]
The `value` parameter can be an instance of {OvirtSDK4::Ssh} 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.
# File lib/ovirtsdk4/types.rb, line 31448 def ssh=(value) if value.is_a?(Hash) value = Ssh.new(value) end @ssh = value end
Returns the value of the `statistics` attribute.
@return [Array<Statistic>]
# File lib/ovirtsdk4/types.rb, line 31460 def statistics return @statistics end
Sets the value of the `statistics` attribute.
@param list [Array<Statistic>]
# File lib/ovirtsdk4/types.rb, line 31468 def statistics=(list) if list.class == Array list = List.new(list) list.each_with_index do |value, index| if value.is_a?(Hash) list[index] = Statistic.new(value) end end end @statistics = list end
Returns the value of the `status` attribute.
@return [HostStatus]
# File lib/ovirtsdk4/types.rb, line 31485 def status return @status end
Sets the value of the `status` attribute.
@param value [HostStatus]
# File lib/ovirtsdk4/types.rb, line 31494 def status=(value) @status = value end
Returns the value of the `status_detail` attribute.
@return [String]
# File lib/ovirtsdk4/types.rb, line 31503 def status_detail return @status_detail end
Sets the value of the `status_detail` attribute.
@param value [String]
# File lib/ovirtsdk4/types.rb, line 31512 def status_detail=(value) @status_detail = value end
Returns the value of the `storage_connection_extensions` attribute.
@return [Array<StorageConnectionExtension>]
# File lib/ovirtsdk4/types.rb, line 31521 def storage_connection_extensions return @storage_connection_extensions end
Sets the value of the `storage_connection_extensions` attribute.
@param list [Array<StorageConnectionExtension>]
# File lib/ovirtsdk4/types.rb, line 31529 def storage_connection_extensions=(list) if list.class == Array list = List.new(list) list.each_with_index do |value, index| if value.is_a?(Hash) list[index] = StorageConnectionExtension.new(value) end end end @storage_connection_extensions = list end
Returns the value of the `summary` attribute.
@return [VmSummary]
# File lib/ovirtsdk4/types.rb, line 31546 def summary return @summary end
Sets the value of the `summary` attribute.
@param value [VmSummary, Hash]
The `value` parameter can be an instance of {OvirtSDK4::VmSummary} 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.
# File lib/ovirtsdk4/types.rb, line 31559 def summary=(value) if value.is_a?(Hash) value = VmSummary.new(value) end @summary = value end
Returns the value of the `transparent_huge_pages` attribute.
@return [TransparentHugePages]
# File lib/ovirtsdk4/types.rb, line 31571 def transparent_huge_pages return @transparent_huge_pages end
Sets the value of the `transparent_huge_pages` attribute.
@param value [TransparentHugePages, Hash]
The `value` parameter can be an instance of {OvirtSDK4::TransparentHugePages} 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.
# File lib/ovirtsdk4/types.rb, line 31584 def transparent_huge_pages=(value) if value.is_a?(Hash) value = TransparentHugePages.new(value) end @transparent_huge_pages = value end
Returns the value of the `type` attribute.
@return [HostType]
# File lib/ovirtsdk4/types.rb, line 31596 def type return @type end
Sets the value of the `type` attribute.
@param value [HostType]
# File lib/ovirtsdk4/types.rb, line 31605 def type=(value) @type = value end
Returns the value of the `update_available` attribute.
@return [Boolean]
# File lib/ovirtsdk4/types.rb, line 31614 def update_available return @update_available end
Sets the value of the `update_available` attribute.
@param value [Boolean]
# File lib/ovirtsdk4/types.rb, line 31623 def update_available=(value) @update_available = value end
Returns the value of the `version` attribute.
@return [Version]
# File lib/ovirtsdk4/types.rb, line 31632 def version return @version end
Sets the value of the `version` attribute.
@param value [Version, Hash]
The `value` parameter can be an instance of {OvirtSDK4::Version} 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.
# File lib/ovirtsdk4/types.rb, line 31645 def version=(value) if value.is_a?(Hash) value = Version.new(value) end @version = value end