2017-11-06 11:02:28 -05:00
|
|
|
class ClusterApplicationEntity < Grape::Entity
|
2017-11-02 10:10:46 -04:00
|
|
|
expose :name
|
|
|
|
expose :status_name, as: :status
|
|
|
|
expose :status_reason
|
2018-02-11 22:22:15 -05:00
|
|
|
expose :external_ip, if: -> (e, _) { e.respond_to?(:external_ip) }
|
2018-05-16 05:01:13 -04:00
|
|
|
expose :hostname, if: -> (e, _) { e.respond_to?(:hostname) }
|
2017-11-02 10:10:46 -04:00
|
|
|
end
|