Class: Server
- Inherits:
-
Object
- Object
- Server
- Defined in:
- Server.rb
Direct Known Subclasses
Instance Attribute Summary (collapse)
-
- (Object) appName
Returns the value of attribute appName.
-
- (Object) assetName
Returns the value of attribute assetName.
-
- (Object) assetType
Returns the value of attribute assetType.
-
- (Object) build
Returns the value of attribute build.
-
- (Object) buildLocation
Returns the value of attribute buildLocation.
-
- (Object) CI
Returns the value of attribute CI.
-
- (Object) cmserver
Returns the value of attribute cmserver.
-
- (Object) deploymentStatus
Returns the value of attribute deploymentStatus.
-
- (Object) deployTempLoc
Returns the value of attribute deployTempLoc.
-
- (Object) description
Returns the value of attribute description.
-
- (Object) dns
Returns the value of attribute dns.
-
- (Object) domainName
Returns the value of attribute domainName.
-
- (Object) emailID
Returns the value of attribute emailID.
-
- (Object) imageID
Returns the value of attribute imageID.
-
- (Object) instanceId
Returns the value of attribute instanceId.
-
- (Object) instanceSize
Returns the value of attribute instanceSize.
-
- (Object) launcheduser
Returns the value of attribute launcheduser.
-
- (Object) loginUser
Returns the value of attribute loginUser.
-
- (Object) password
Returns the value of attribute password.
-
- (Object) privateKeyLoc
Returns the value of attribute privateKeyLoc.
-
- (Object) provider
Returns the value of attribute provider.
-
- (Object) publicKeyLoc
Returns the value of attribute publicKeyLoc.
-
- (Object) region
Returns the value of attribute region.
-
- (Object) serverName
Returns the value of attribute serverName.
-
- (Object) serverType
Returns the value of attribute serverType.
-
- (Object) sshport
Returns the value of attribute sshport.
-
- (Object) startTime
Returns the value of attribute startTime.
-
- (Object) status
Returns the value of attribute status.
-
- (Object) tier
Returns the value of attribute tier.
Instance Method Summary (collapse)
-
- (Server) initialize
constructor
A new instance of Server.
Constructor Details
- (Server) initialize
Returns a new instance of Server
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'Server.rb', line 45 def initialize @description="" @dns="" @domainName="" @emailID="" @CI="" @deploymentStatus="" @instanceId="" @imageID="" @launcheduser="" @build="" @appName="" @deployTempLoc="" @buildLocation="" @privateKeyLoc="" @publicKeyLoc="" @loginUser="" @serverType="" @assettype="" @status="" @starttime="" @provider="" @region="" @cmserver="" @assetname="" @instancesize="" @servername="" @password="" @sshport=22 @tier="" end |
Instance Attribute Details
- (Object) appName
Returns the value of attribute appName
25 26 27 |
# File 'Server.rb', line 25 def appName @appName end |
- (Object) assetName
Returns the value of attribute assetName
38 39 40 |
# File 'Server.rb', line 38 def assetName @assetName end |
- (Object) assetType
Returns the value of attribute assetType
32 33 34 |
# File 'Server.rb', line 32 def assetType @assetType end |
- (Object) build
Returns the value of attribute build
24 25 26 |
# File 'Server.rb', line 24 def build @build end |
- (Object) buildLocation
Returns the value of attribute buildLocation
27 28 29 |
# File 'Server.rb', line 27 def buildLocation @buildLocation end |
- (Object) CI
Returns the value of attribute CI
19 20 21 |
# File 'Server.rb', line 19 def CI @CI end |
- (Object) cmserver
Returns the value of attribute cmserver
37 38 39 |
# File 'Server.rb', line 37 def cmserver @cmserver end |
- (Object) deploymentStatus
Returns the value of attribute deploymentStatus
20 21 22 |
# File 'Server.rb', line 20 def deploymentStatus @deploymentStatus end |
- (Object) deployTempLoc
Returns the value of attribute deployTempLoc
26 27 28 |
# File 'Server.rb', line 26 def deployTempLoc @deployTempLoc end |
- (Object) description
Returns the value of attribute description
15 16 17 |
# File 'Server.rb', line 15 def description @description end |
- (Object) dns
Returns the value of attribute dns
16 17 18 |
# File 'Server.rb', line 16 def dns @dns end |
- (Object) domainName
Returns the value of attribute domainName
17 18 19 |
# File 'Server.rb', line 17 def domainName @domainName end |
- (Object) emailID
Returns the value of attribute emailID
18 19 20 |
# File 'Server.rb', line 18 def emailID @emailID end |
- (Object) imageID
Returns the value of attribute imageID
22 23 24 |
# File 'Server.rb', line 22 def imageID @imageID end |
- (Object) instanceId
Returns the value of attribute instanceId
21 22 23 |
# File 'Server.rb', line 21 def instanceId @instanceId end |
- (Object) instanceSize
Returns the value of attribute instanceSize
39 40 41 |
# File 'Server.rb', line 39 def instanceSize @instanceSize end |
- (Object) launcheduser
Returns the value of attribute launcheduser
23 24 25 |
# File 'Server.rb', line 23 def launcheduser @launcheduser end |
- (Object) loginUser
Returns the value of attribute loginUser
30 31 32 |
# File 'Server.rb', line 30 def loginUser @loginUser end |
- (Object) password
Returns the value of attribute password
41 42 43 |
# File 'Server.rb', line 41 def password @password end |
- (Object) privateKeyLoc
Returns the value of attribute privateKeyLoc
28 29 30 |
# File 'Server.rb', line 28 def privateKeyLoc @privateKeyLoc end |
- (Object) provider
Returns the value of attribute provider
35 36 37 |
# File 'Server.rb', line 35 def provider @provider end |
- (Object) publicKeyLoc
Returns the value of attribute publicKeyLoc
29 30 31 |
# File 'Server.rb', line 29 def publicKeyLoc @publicKeyLoc end |
- (Object) region
Returns the value of attribute region
36 37 38 |
# File 'Server.rb', line 36 def region @region end |
- (Object) serverName
Returns the value of attribute serverName
40 41 42 |
# File 'Server.rb', line 40 def serverName @serverName end |
- (Object) serverType
Returns the value of attribute serverType
31 32 33 |
# File 'Server.rb', line 31 def serverType @serverType end |
- (Object) sshport
Returns the value of attribute sshport
42 43 44 |
# File 'Server.rb', line 42 def sshport @sshport end |
- (Object) startTime
Returns the value of attribute startTime
34 35 36 |
# File 'Server.rb', line 34 def startTime @startTime end |
- (Object) status
Returns the value of attribute status
33 34 35 |
# File 'Server.rb', line 33 def status @status end |
- (Object) tier
Returns the value of attribute tier
43 44 45 |
# File 'Server.rb', line 43 def tier @tier end |