2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class Cluster < Grape::Entity
|
2021-02-22 17:27:13 +05:30
|
|
|
expose :id, :name, :created_at, :domain, :enabled, :managed
|
2021-01-03 14:25:43 +05:30
|
|
|
expose :provider_type, :platform_type, :environment_scope, :cluster_type, :namespace_per_environment
|
2020-03-13 15:44:24 +05:30
|
|
|
expose :user, using: Entities::UserBasic
|
|
|
|
expose :platform_kubernetes, using: Entities::Platform::Kubernetes
|
|
|
|
expose :provider_gcp, using: Entities::Provider::Gcp
|
|
|
|
expose :management_project, using: Entities::ProjectIdentity
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|