Skip to content

Retrieve a group cluster

GET
/api/v4/groups/{id}/clusters/{cluster_id}

Retrieves a specified group cluster.

id
required
string

The ID of the group

cluster_id
required
integer

The cluster ID

OK

Media type application/json
object
id
string
name
string
created_at
string
domain
string
enabled
string
managed
string
provider_type
string
platform_type
string
environment_scope
string
cluster_type
string
namespace_per_environment
string
user
object
id
integer format: int64
username
string
public_email
string
name
string
state
string
locked
boolean
avatar_url
string
avatar_path
string
custom_attributes
Array<object>
object
key
string
value
string
web_url
string
platform_kubernetes
object
api_url
string
namespace
string
authorization_type
string
ca_cert
string
provider_gcp
object
cluster_id
string
status_name
string
gcp_project_id
string
zone
string
machine_type
string
num_nodes
string
endpoint
string
management_project
object
id
integer format: int64
description
string
name
string
name_with_namespace
string
path
string
path_with_namespace
string
created_at
string format: date-time
group
object
id
integer format: int64
web_url
string
name
string
Example
{
"user": {
"id": 1,
"username": "admin",
"public_email": "john@example.com",
"name": "Administrator",
"state": "active",
"avatar_url": "https://gravatar.com/avatar/1",
"avatar_path": "/user/avatar/28/The-Big-Lebowski-400-400.png",
"custom_attributes": [
{
"key": "foo",
"value": "bar"
}
],
"web_url": "https://gitlab.example.com/root"
},
"management_project": {
"id": 1,
"description": "desc",
"name": "project1",
"name_with_namespace": "John Doe / project1",
"path": "project1",
"path_with_namespace": "namespace1/project1",
"created_at": "2020-05-07T04:27:17.016Z"
},
"group": {
"web_url": "http://gitlab.example.com/groups/diaspora",
"name": "Diaspora"
}
}

Bad Request

Forbidden

Not found