8 lines
185 B
Ruby
8 lines
185 B
Ruby
|
class ClusterEntity < Grape::Entity
|
||
|
include RequestAwareEntity
|
||
|
|
||
|
expose :status_name, as: :status
|
||
|
expose :status_reason
|
||
|
expose :applications, using: ClusterApplicationEntity
|
||
|
end
|