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.



67
68
69
# File 'lib/megam/mixins/common_deployable.rb', line 67

def initialize(params)
  set_attributes(params)
end

Instance Attribute Details

#cpuObject (readonly)

Returns the value of attribute cpu.



51
52
53
# File 'lib/megam/mixins/common_deployable.rb', line 51

def cpu
  @cpu
end

#display_nameObject (readonly)

Returns the value of attribute display_name.



51
52
53
# File 'lib/megam/mixins/common_deployable.rb', line 51

def display_name
  @display_name
end

#domainObject (readonly)

Returns the value of attribute domain.



51
52
53
# File 'lib/megam/mixins/common_deployable.rb', line 51

def domain
  @domain
end

#hddObject (readonly)

Returns the value of attribute hdd.



51
52
53
# File 'lib/megam/mixins/common_deployable.rb', line 51

def hdd
  @hdd
end

#passwordObject (readonly)

Returns the value of attribute password.



51
52
53
# File 'lib/megam/mixins/common_deployable.rb', line 51

def password
  @password
end

#providerObject (readonly)

Returns the value of attribute provider.



51
52
53
# File 'lib/megam/mixins/common_deployable.rb', line 51

def provider
  @provider
end

#ramObject (readonly)

Returns the value of attribute ram.



51
52
53
# File 'lib/megam/mixins/common_deployable.rb', line 51

def ram
  @ram
end

#sshkeyObject (readonly)

Returns the value of attribute sshkey.



51
52
53
# File 'lib/megam/mixins/common_deployable.rb', line 51

def sshkey
  @sshkey
end

#versionObject (readonly)

Returns the value of attribute version.



51
52
53
# File 'lib/megam/mixins/common_deployable.rb', line 51

def version
  @version
end

Instance Method Details

#attributesObject



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

def attributes
  ATTRIBUTES
end