4220e914db
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
7 lines
257 B
Ruby
7 lines
257 B
Ruby
class ClusterApplicationEntity < Grape::Entity
|
|
expose :name
|
|
expose :status_name, as: :status
|
|
expose :status_reason
|
|
expose :external_ip, if: -> (e, _) { e.respond_to?(:external_ip) }
|
|
expose :hostname, if: -> (e, _) { e.respond_to?(:hostname) }
|
|
end
|