2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
class ClusterEntity < Grape::Entity
|
|
|
|
include RequestAwareEntity
|
|
|
|
|
|
|
|
expose :status_name, as: :status
|
|
|
|
expose :status_reason
|
|
|
|
expose :applications, using: ClusterApplicationEntity
|
|
|
|
end
|