module Gitlab::Client::ProjectClusters

def project_cluster(project, cluster_id)

Returns:
  • (Gitlab::ObjectifiedHash) - Information about the requested cluster

Parameters:
  • cluster_id (Integer) -- The ID of the cluster.
  • project (Integer, String) -- The ID or name of a project.
def project_cluster(project, cluster_id)
  get("/projects/#{url_encode project}/clusters/#{cluster_id}")
end