Class: OvirtSDK4::ExternalVmImport
- 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. -
#cluster ⇒ Cluster
Returns the value of the
cluster
attribute. -
#cluster=(value) ⇒ Object
Sets the value of the
cluster
attribute. -
#cpu_profile ⇒ CpuProfile
Returns the value of the
cpu_profile
attribute. -
#cpu_profile=(value) ⇒ Object
Sets the value of the
cpu_profile
attribute. -
#drivers_iso ⇒ File
Returns the value of the
drivers_iso
attribute. -
#drivers_iso=(value) ⇒ Object
Sets the value of the
drivers_iso
attribute. -
#hash ⇒ Object
Generates a hash value for this object.
-
#host ⇒ Host
Returns the value of the
host
attribute. -
#host=(value) ⇒ Object
Sets the value of the
host
attribute. -
#initialize(opts = {}) ⇒ ExternalVmImport
constructor
Creates a new instance of the ExternalVmImport class.
-
#name ⇒ String
Returns the value of the
name
attribute. -
#name=(value) ⇒ Object
Sets the value of the
name
attribute. -
#password ⇒ String
Returns the value of the
password
attribute. -
#password=(value) ⇒ Object
Sets the value of the
password
attribute. -
#provider ⇒ ExternalVmProviderType
Returns the value of the
provider
attribute. -
#provider=(value) ⇒ Object
Sets the value of the
provider
attribute. -
#quota ⇒ Quota
Returns the value of the
quota
attribute. -
#quota=(value) ⇒ Object
Sets the value of the
quota
attribute. -
#sparse ⇒ Boolean
Returns the value of the
sparse
attribute. -
#sparse=(value) ⇒ Object
Sets the value of the
sparse
attribute. -
#storage_domain ⇒ StorageDomain
Returns the value of the
storage_domain
attribute. -
#storage_domain=(value) ⇒ Object
Sets the value of the
storage_domain
attribute. -
#url ⇒ String
Returns the value of the
url
attribute. -
#url=(value) ⇒ Object
Sets the value of the
url
attribute. -
#username ⇒ String
Returns the value of the
username
attribute. -
#username=(value) ⇒ Object
Sets the value of the
username
attribute. -
#vm ⇒ Vm
Returns the value of the
vm
attribute. -
#vm=(value) ⇒ Object
Sets the value of the
vm
attribute.
Methods included from Type
Constructor Details
#initialize(opts = {}) ⇒ ExternalVmImport
Creates a new instance of the OvirtSDK4::ExternalVmImport class.
3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 |
# File 'lib/ovirtsdk4/types.rb', line 3716 def initialize(opts = {}) super(opts) self.cluster = opts[:cluster] self.cpu_profile = opts[:cpu_profile] self.drivers_iso = opts[:drivers_iso] self.host = opts[:host] self.name = opts[:name] self.password = opts[:password] self.provider = opts[:provider] self.quota = opts[:quota] self.sparse = opts[:sparse] self.storage_domain = opts[:storage_domain] self.url = opts[:url] self.username = opts[:username] self.vm = opts[:vm] end |
Instance Method Details
#==(other) ⇒ Object
Returns true
if self
and other
have the same attributes and values.
3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 |
# File 'lib/ovirtsdk4/types.rb', line 3736 def ==(other) super && @cluster == other.cluster && @cpu_profile == other.cpu_profile && @drivers_iso == other.drivers_iso && @host == other.host && @name == other.name && @password == other.password && @provider == other.provider && @quota == other.quota && @sparse == other.sparse && @storage_domain == other.storage_domain && @url == other.url && @username == other.username && @vm == other.vm end |
#cluster ⇒ Cluster
Returns the value of the cluster
attribute.
3404 3405 3406 |
# File 'lib/ovirtsdk4/types.rb', line 3404 def cluster @cluster end |
#cluster=(value) ⇒ Object
Sets the value of the cluster
attribute.
The value
parameter can be an instance of 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.
3417 3418 3419 3420 3421 3422 |
# File 'lib/ovirtsdk4/types.rb', line 3417 def cluster=(value) if value.is_a?(Hash) value = Cluster.new(value) end @cluster = value end |
#cpu_profile ⇒ CpuProfile
Returns the value of the cpu_profile
attribute.
3429 3430 3431 |
# File 'lib/ovirtsdk4/types.rb', line 3429 def cpu_profile @cpu_profile end |
#cpu_profile=(value) ⇒ Object
Sets the value of the cpu_profile
attribute.
The value
parameter can be an instance of CpuProfile 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.
3442 3443 3444 3445 3446 3447 |
# File 'lib/ovirtsdk4/types.rb', line 3442 def cpu_profile=(value) if value.is_a?(Hash) value = CpuProfile.new(value) end @cpu_profile = value end |
#drivers_iso ⇒ File
Returns the value of the drivers_iso
attribute.
3454 3455 3456 |
# File 'lib/ovirtsdk4/types.rb', line 3454 def drivers_iso @drivers_iso end |
#drivers_iso=(value) ⇒ Object
Sets the value of the drivers_iso
attribute.
The value
parameter can be an instance of File 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.
3467 3468 3469 3470 3471 3472 |
# File 'lib/ovirtsdk4/types.rb', line 3467 def drivers_iso=(value) if value.is_a?(Hash) value = File.new(value) end @drivers_iso = value end |
#hash ⇒ Object
Generates a hash value for this object.
3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 |
# File 'lib/ovirtsdk4/types.rb', line 3756 def hash super + @cluster.hash + @cpu_profile.hash + @drivers_iso.hash + @host.hash + @name.hash + @password.hash + @provider.hash + @quota.hash + @sparse.hash + @storage_domain.hash + @url.hash + @username.hash + @vm.hash end |
#host ⇒ Host
Returns the value of the host
attribute.
3479 3480 3481 |
# File 'lib/ovirtsdk4/types.rb', line 3479 def host @host end |
#host=(value) ⇒ Object
Sets the value of the host
attribute.
The value
parameter can be an instance of Host 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.
3492 3493 3494 3495 3496 3497 |
# File 'lib/ovirtsdk4/types.rb', line 3492 def host=(value) if value.is_a?(Hash) value = Host.new(value) end @host = value end |
#name ⇒ String
Returns the value of the name
attribute.
3504 3505 3506 |
# File 'lib/ovirtsdk4/types.rb', line 3504 def name @name end |
#name=(value) ⇒ Object
Sets the value of the name
attribute.
3513 3514 3515 |
# File 'lib/ovirtsdk4/types.rb', line 3513 def name=(value) @name = value end |
#password ⇒ String
Returns the value of the password
attribute.
3522 3523 3524 |
# File 'lib/ovirtsdk4/types.rb', line 3522 def password @password end |
#password=(value) ⇒ Object
Sets the value of the password
attribute.
3531 3532 3533 |
# File 'lib/ovirtsdk4/types.rb', line 3531 def password=(value) @password = value end |
#provider ⇒ ExternalVmProviderType
Returns the value of the provider
attribute.
3540 3541 3542 |
# File 'lib/ovirtsdk4/types.rb', line 3540 def provider @provider end |
#provider=(value) ⇒ Object
Sets the value of the provider
attribute.
3549 3550 3551 |
# File 'lib/ovirtsdk4/types.rb', line 3549 def provider=(value) @provider = value end |
#quota ⇒ Quota
Returns the value of the quota
attribute.
3558 3559 3560 |
# File 'lib/ovirtsdk4/types.rb', line 3558 def quota @quota end |
#quota=(value) ⇒ Object
Sets the value of the quota
attribute.
The value
parameter can be an instance of Quota 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.
3571 3572 3573 3574 3575 3576 |
# File 'lib/ovirtsdk4/types.rb', line 3571 def quota=(value) if value.is_a?(Hash) value = Quota.new(value) end @quota = value end |
#sparse ⇒ Boolean
Returns the value of the sparse
attribute.
3583 3584 3585 |
# File 'lib/ovirtsdk4/types.rb', line 3583 def sparse @sparse end |
#sparse=(value) ⇒ Object
Sets the value of the sparse
attribute.
3592 3593 3594 |
# File 'lib/ovirtsdk4/types.rb', line 3592 def sparse=(value) @sparse = value end |
#storage_domain ⇒ StorageDomain
Returns the value of the storage_domain
attribute.
3601 3602 3603 |
# File 'lib/ovirtsdk4/types.rb', line 3601 def storage_domain @storage_domain end |
#storage_domain=(value) ⇒ Object
Sets the value of the storage_domain
attribute.
The value
parameter can be an instance of StorageDomain 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.
3614 3615 3616 3617 3618 3619 |
# File 'lib/ovirtsdk4/types.rb', line 3614 def storage_domain=(value) if value.is_a?(Hash) value = StorageDomain.new(value) end @storage_domain = value end |
#url ⇒ String
Returns the value of the url
attribute.
3626 3627 3628 |
# File 'lib/ovirtsdk4/types.rb', line 3626 def url @url end |
#url=(value) ⇒ Object
Sets the value of the url
attribute.
3635 3636 3637 |
# File 'lib/ovirtsdk4/types.rb', line 3635 def url=(value) @url = value end |
#username ⇒ String
Returns the value of the username
attribute.
3644 3645 3646 |
# File 'lib/ovirtsdk4/types.rb', line 3644 def username @username end |
#username=(value) ⇒ Object
Sets the value of the username
attribute.
3653 3654 3655 |
# File 'lib/ovirtsdk4/types.rb', line 3653 def username=(value) @username = value end |
#vm ⇒ Vm
Returns the value of the vm
attribute.
3662 3663 3664 |
# File 'lib/ovirtsdk4/types.rb', line 3662 def vm @vm end |
#vm=(value) ⇒ Object
Sets the value of the vm
attribute.
The value
parameter can be an instance of Vm 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.
3675 3676 3677 3678 3679 3680 |
# File 'lib/ovirtsdk4/types.rb', line 3675 def vm=(value) if value.is_a?(Hash) value = Vm.new(value) end @vm = value end |