dce26700b2
Partially addresses #47424.
9 lines
216 B
Ruby
9 lines
216 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ClusterEntity < Grape::Entity
|
|
include RequestAwareEntity
|
|
|
|
expose :status_name, as: :status
|
|
expose :status_reason
|
|
expose :applications, using: ClusterApplicationEntity
|
|
end
|