class OvirtSDK4::DataCenter
Public Class Methods
Creates a new instance of the {DataCenter} 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 [Array<Cluster>, Array<Hash>] :clusters The values of attribute `clusters`.
@option opts [String] :comment The value of attribute `comment`.
@option opts [String] :description The value of attribute `description`.
@option opts [String] :id The value of attribute `id`.
@option opts [Array<IscsiBond>, Array<Hash>] :iscsi_bonds The values of attribute `iscsi_bonds`.
@option opts [Boolean] :local The value of attribute `local`.
@option opts [MacPool, Hash] :mac_pool The value of attribute `mac_pool`.
@option opts [String] :name The value of attribute `name`.
@option opts [Array<Network>, Array<Hash>] :networks The values of attribute `networks`.
@option opts [Array<Permission>, Array<Hash>] :permissions The values of attribute `permissions`.
@option opts [Array<Qos>, Array<Hash>] :qoss The values of attribute `qoss`.
@option opts [QuotaModeType] :quota_mode The value of attribute `quota_mode`.
@option opts [Array<Quota>, Array<Hash>] :quotas The values of attribute `quotas`.
@option opts [DataCenterStatus] :status The value of attribute `status`.
@option opts [Array<StorageDomain>, Array<Hash>] :storage_domains The values of attribute `storage_domains`.
@option opts [StorageFormat] :storage_format The value of attribute `storage_format`.
@option opts [Array<Version>, Array<Hash>] :supported_versions The values of attribute `supported_versions`.
@option opts [Version, Hash] :version The value of attribute `version`.
OvirtSDK4::Identified::new
# File lib/ovirtsdk4/types.rb, line 36075 def initialize(opts = {}) super(opts) self.clusters = opts[:clusters] self.iscsi_bonds = opts[:iscsi_bonds] self.local = opts[:local] self.mac_pool = opts[:mac_pool] self.networks = opts[:networks] self.permissions = opts[:permissions] self.qoss = opts[:qoss] self.quota_mode = opts[:quota_mode] self.quotas = opts[:quotas] self.status = opts[:status] self.storage_domains = opts[:storage_domains] self.storage_format = opts[:storage_format] self.supported_versions = opts[:supported_versions] self.version = opts[:version] end
Public Instance Methods
Returns `true` if `self` and `other` have the same attributes and values.
# File lib/ovirtsdk4/types.rb, line 36096 def ==(other) super && @clusters == other.clusters && @iscsi_bonds == other.iscsi_bonds && @local == other.local && @mac_pool == other.mac_pool && @networks == other.networks && @permissions == other.permissions && @qoss == other.qoss && @quota_mode == other.quota_mode && @quotas == other.quotas && @status == other.status && @storage_domains == other.storage_domains && @storage_format == other.storage_format && @supported_versions == other.supported_versions && @version == other.version end
Returns the value of the `clusters` attribute.
@return [Array<Cluster>]
# File lib/ovirtsdk4/types.rb, line 35634 def clusters @clusters end
Sets the value of the `clusters` attribute.
@param list [Array<Cluster>]
# File lib/ovirtsdk4/types.rb, line 35643 def clusters=(list) if list.class == Array list = List.new(list) list.each_with_index do |value, index| if value.is_a?(Hash) list[index] = Cluster.new(value) end end end @clusters = list end
Returns the value of the `comment` attribute.
@return [String]
# File lib/ovirtsdk4/types.rb, line 35660 def comment @comment end
Sets the value of the `comment` attribute.
@param value [String]
# File lib/ovirtsdk4/types.rb, line 35669 def comment=(value) @comment = value end
Returns the value of the `description` attribute.
@return [String]
# File lib/ovirtsdk4/types.rb, line 35678 def description @description end
Sets the value of the `description` attribute.
@param value [String]
# File lib/ovirtsdk4/types.rb, line 35687 def description=(value) @description = value end
Generates a hash value for this object.
OvirtSDK4::Identified#hash
# File lib/ovirtsdk4/types.rb, line 36117 def hash super + @clusters.hash + @iscsi_bonds.hash + @local.hash + @mac_pool.hash + @networks.hash + @permissions.hash + @qoss.hash + @quota_mode.hash + @quotas.hash + @status.hash + @storage_domains.hash + @storage_format.hash + @supported_versions.hash + @version.hash end
Returns the value of the `id` attribute.
@return [String]
# File lib/ovirtsdk4/types.rb, line 35696 def id @id end
Sets the value of the `id` attribute.
@param value [String]
# File lib/ovirtsdk4/types.rb, line 35705 def id=(value) @id = value end
Returns the value of the `iscsi_bonds` attribute.
@return [Array<IscsiBond>]
# File lib/ovirtsdk4/types.rb, line 35714 def iscsi_bonds @iscsi_bonds end
Sets the value of the `iscsi_bonds` attribute.
@param list [Array<IscsiBond>]
# File lib/ovirtsdk4/types.rb, line 35723 def iscsi_bonds=(list) if list.class == Array list = List.new(list) list.each_with_index do |value, index| if value.is_a?(Hash) list[index] = IscsiBond.new(value) end end end @iscsi_bonds = list end
Returns the value of the `local` attribute.
@return [Boolean]
# File lib/ovirtsdk4/types.rb, line 35740 def local @local end
Sets the value of the `local` attribute.
@param value [Boolean]
# File lib/ovirtsdk4/types.rb, line 35749 def local=(value) @local = value end
Returns the value of the `mac_pool` attribute.
@return [MacPool]
# File lib/ovirtsdk4/types.rb, line 35758 def mac_pool @mac_pool end
Sets the value of the `mac_pool` attribute.
@param value [MacPool, Hash]
The `value` parameter can be an instance of {OvirtSDK4::MacPool} 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 35771 def mac_pool=(value) if value.is_a?(Hash) value = MacPool.new(value) end @mac_pool = value end
Returns the value of the `name` attribute.
@return [String]
# File lib/ovirtsdk4/types.rb, line 35783 def name @name end
Sets the value of the `name` attribute.
@param value [String]
# File lib/ovirtsdk4/types.rb, line 35792 def name=(value) @name = value end
Returns the value of the `networks` attribute.
@return [Array<Network>]
# File lib/ovirtsdk4/types.rb, line 35801 def networks @networks end
Sets the value of the `networks` attribute.
@param list [Array<Network>]
# File lib/ovirtsdk4/types.rb, line 35810 def networks=(list) if list.class == Array list = List.new(list) list.each_with_index do |value, index| if value.is_a?(Hash) list[index] = Network.new(value) end end end @networks = list end
Returns the value of the `permissions` attribute.
@return [Array<Permission>]
# File lib/ovirtsdk4/types.rb, line 35827 def permissions @permissions end
Sets the value of the `permissions` attribute.
@param list [Array<Permission>]
# File lib/ovirtsdk4/types.rb, line 35836 def permissions=(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
Returns the value of the `qoss` attribute.
@return [Array<Qos>]
# File lib/ovirtsdk4/types.rb, line 35853 def qoss @qoss end
Sets the value of the `qoss` attribute.
@param list [Array<Qos>]
# File lib/ovirtsdk4/types.rb, line 35862 def qoss=(list) if list.class == Array list = List.new(list) list.each_with_index do |value, index| if value.is_a?(Hash) list[index] = Qos.new(value) end end end @qoss = list end
Returns the value of the `quota_mode` attribute.
@return [QuotaModeType]
# File lib/ovirtsdk4/types.rb, line 35879 def quota_mode @quota_mode end
Sets the value of the `quota_mode` attribute.
@param value [QuotaModeType]
# File lib/ovirtsdk4/types.rb, line 35888 def quota_mode=(value) @quota_mode = value end
Returns the value of the `quotas` attribute.
@return [Array<Quota>]
# File lib/ovirtsdk4/types.rb, line 35897 def quotas @quotas end
Sets the value of the `quotas` attribute.
@param list [Array<Quota>]
# File lib/ovirtsdk4/types.rb, line 35906 def quotas=(list) if list.class == Array list = List.new(list) list.each_with_index do |value, index| if value.is_a?(Hash) list[index] = Quota.new(value) end end end @quotas = list end
Returns the value of the `status` attribute.
@return [DataCenterStatus]
# File lib/ovirtsdk4/types.rb, line 35923 def status @status end
Sets the value of the `status` attribute.
@param value [DataCenterStatus]
# File lib/ovirtsdk4/types.rb, line 35932 def status=(value) @status = value end
Returns the value of the `storage_domains` attribute.
@return [Array<StorageDomain>]
# File lib/ovirtsdk4/types.rb, line 35941 def storage_domains @storage_domains end
Sets the value of the `storage_domains` attribute.
@param list [Array<StorageDomain>]
# File lib/ovirtsdk4/types.rb, line 35950 def storage_domains=(list) if list.class == Array list = List.new(list) list.each_with_index do |value, index| if value.is_a?(Hash) list[index] = StorageDomain.new(value) end end end @storage_domains = list end
Returns the value of the `storage_format` attribute.
@return [StorageFormat]
# File lib/ovirtsdk4/types.rb, line 35967 def storage_format @storage_format end
Sets the value of the `storage_format` attribute.
@param value [StorageFormat]
# File lib/ovirtsdk4/types.rb, line 35976 def storage_format=(value) @storage_format = value end
Returns the value of the `supported_versions` attribute.
@return [Array<Version>]
# File lib/ovirtsdk4/types.rb, line 35985 def supported_versions @supported_versions end
Sets the value of the `supported_versions` attribute.
@param list [Array<Version>]
# File lib/ovirtsdk4/types.rb, line 35994 def supported_versions=(list) if list.class == Array list = List.new(list) list.each_with_index do |value, index| if value.is_a?(Hash) list[index] = Version.new(value) end end end @supported_versions = list end
Returns the value of the `version` attribute.
@return [Version]
# File lib/ovirtsdk4/types.rb, line 36011 def version @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 36024 def version=(value) if value.is_a?(Hash) value = Version.new(value) end @version = value end