Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cluster.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b7e76e763f7e6e2f554d1647bc0148081f5b2ae9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module API
  module Entities
    class Cluster < Grape::Entity
      expose :id, :name, :created_at, :domain, :enabled, :managed
      expose :provider_type, :platform_type, :environment_scope, :cluster_type, :namespace_per_environment
      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