gitlab-org--gitlab-foss/app/serializers/projects/serverless/service_entity.rb

37 lines
787 B
Ruby
Raw Normal View History

2018-12-06 18:08:49 +00:00
# frozen_string_literal: true
module Projects
module Serverless
class ServiceEntity < Grape::Entity
include RequestAwareEntity
expose :name
expose :namespace
expose :environment_scope
expose :podcount
expose :created_at
expose :image
expose :description
expose :url
expose :detail_url do |service|
project_serverless_path(
request.project,
service.environment_scope,
service.name)
end
2019-04-06 02:02:39 +00:00
expose :metrics_url do |service|
project_serverless_metrics_path(
request.project,
service.environment_scope,
service.name, format: :json)
end
expose :cluster_id do |service|
service.cluster&.id
2018-12-06 18:08:49 +00:00
end
end
end
end