12 lines
467 B
Ruby
12 lines
467 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ClusterApplicationEntity < Grape::Entity
|
|
expose :name
|
|
expose :status_name, as: :status
|
|
expose :status_reason
|
|
expose :version
|
|
expose :external_ip, if: -> (e, _) { e.respond_to?(:external_ip) }
|
|
expose :hostname, if: -> (e, _) { e.respond_to?(:hostname) }
|
|
expose :email, if: -> (e, _) { e.respond_to?(:email) }
|
|
expose :update_available?, as: :update_available, if: -> (e, _) { e.respond_to?(:update_available?) }
|
|
end
|