Class: LegacyReply
- Inherits:
-
OpenShift::Model
- Object
- OpenShift::Model
- LegacyReply
- Defined in:
- app/models/legacy_reply.rb
Constant Summary collapse
- API_VERSION =
"1.1.3"
- API_CAPABILITY =
%w(placeholder)
- C_CAPABILITY =
%w(namespace rhlogin ssh app_uuid debug alter cartridge cart_type action app_name api)
Instance Attribute Summary collapse
-
#api ⇒ Object
Returns the value of attribute api.
-
#api_c ⇒ Object
Returns the value of attribute api_c.
-
#broker_c ⇒ Object
Returns the value of attribute broker_c.
-
#data ⇒ Object
Returns the value of attribute data.
-
#debug ⇒ Object
Returns the value of attribute debug.
-
#exit_code ⇒ Object
Returns the value of attribute exit_code.
-
#messages ⇒ Object
Returns the value of attribute messages.
-
#result ⇒ Object
Returns the value of attribute result.
Instance Method Summary collapse
-
#initialize ⇒ LegacyReply
constructor
A new instance of LegacyReply.
Constructor Details
#initialize ⇒ LegacyReply
Returns a new instance of LegacyReply.
8 9 10 11 12 13 14 |
# File 'app/models/legacy_reply.rb', line 8 def initialize @api = API_VERSION @api_c = API_CAPABILITY @broker_c = C_CAPABILITY @debug = "" @messages = nil end |
Instance Attribute Details
#api ⇒ Object
Returns the value of attribute api.
2 3 4 |
# File 'app/models/legacy_reply.rb', line 2 def api @api end |
#api_c ⇒ Object
Returns the value of attribute api_c.
2 3 4 |
# File 'app/models/legacy_reply.rb', line 2 def api_c @api_c end |
#broker_c ⇒ Object
Returns the value of attribute broker_c.
2 3 4 |
# File 'app/models/legacy_reply.rb', line 2 def broker_c @broker_c end |
#data ⇒ Object
Returns the value of attribute data.
2 3 4 |
# File 'app/models/legacy_reply.rb', line 2 def data @data end |
#debug ⇒ Object
Returns the value of attribute debug.
2 3 4 |
# File 'app/models/legacy_reply.rb', line 2 def debug @debug end |
#exit_code ⇒ Object
Returns the value of attribute exit_code.
2 3 4 |
# File 'app/models/legacy_reply.rb', line 2 def exit_code @exit_code end |
#messages ⇒ Object
Returns the value of attribute messages.
2 3 4 |
# File 'app/models/legacy_reply.rb', line 2 def @messages end |
#result ⇒ Object
Returns the value of attribute result.
2 3 4 |
# File 'app/models/legacy_reply.rb', line 2 def result @result end |