Class: Megam::Mixins::InputGroupData

Inherits:
Object
  • Object
show all
Includes:
Nilavu::MegamAttributes
Defined in:
lib/megam/mixins/common_deployable.rb

Constant Summary collapse

ATTRIBUTES =
[
:domain,
:sshkey,
:provider,
:cpu,
:ram,
:hdd,
:version,
:display_name,
:password]

Constants included from Nilavu::MegamAttributes

Nilavu::MegamAttributes::KEY, Nilavu::MegamAttributes::VALUE

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Nilavu::MegamAttributes

#set_attributes, #to_hash

Constructor Details

#initialize(params) ⇒ InputGroupData

Returns a new instance of InputGroupData.



79
80
81
# File 'lib/megam/mixins/common_deployable.rb', line 79

def initialize(params)
  set_attributes(params)
end

Instance Attribute Details

#cpuObject (readonly)

Returns the value of attribute cpu.



63
64
65
# File 'lib/megam/mixins/common_deployable.rb', line 63

def cpu
  @cpu
end

#display_nameObject (readonly)

Returns the value of attribute display_name.



63
64
65
# File 'lib/megam/mixins/common_deployable.rb', line 63

def display_name
  @display_name
end

#domainObject (readonly)

Returns the value of attribute domain.



63
64
65
# File 'lib/megam/mixins/common_deployable.rb', line 63

def domain
  @domain
end

#hddObject (readonly)

Returns the value of attribute hdd.



63
64
65
# File 'lib/megam/mixins/common_deployable.rb', line 63

def hdd
  @hdd
end

#passwordObject (readonly)

Returns the value of attribute password.



63
64
65
# File 'lib/megam/mixins/common_deployable.rb', line 63

def password
  @password
end

#providerObject (readonly)

Returns the value of attribute provider.



63
64
65
# File 'lib/megam/mixins/common_deployable.rb', line 63

def provider
  @provider
end

#ramObject (readonly)

Returns the value of attribute ram.



63
64
65
# File 'lib/megam/mixins/common_deployable.rb', line 63

def ram
  @ram
end

#sshkeyObject (readonly)

Returns the value of attribute sshkey.



63
64
65
# File 'lib/megam/mixins/common_deployable.rb', line 63

def sshkey
  @sshkey
end

#versionObject (readonly)

Returns the value of attribute version.



63
64
65
# File 'lib/megam/mixins/common_deployable.rb', line 63

def version
  @version
end

Instance Method Details

#attributesObject



75
76
77
# File 'lib/megam/mixins/common_deployable.rb', line 75

def attributes
  ATTRIBUTES
end