Returns a list of resources in a namespace of specified cluster
GET/api/v2/workspaces/:workspace/resources/clusters/:cluster/namespaces/:namespace/:kind
Returns a list of resources in a namespace of specified cluster
Request
Path Parameters
workspace stringrequired
Workspace to use
cluster stringrequired
Cluster name
namespace stringrequired
Namespace name
kind stringrequired
Resource kind (e.g. pods)
Responses
- 200
- 401
- 403
- 404
- 500
Contains a collection of resources in the namespace of the cluster
- application/json
- Schema
- Example (from schema)
Schema
items undefined[]required
{
"items": [
null
]
}
If not authenticated
If authenticated but not authorized
Kind does not exist or unsupported
A generic API error containing the cause of the error
- application/json
- Schema
- Example (from schema)
Schema
code int32required
detail stringrequired
message stringrequired
uri stringrequired
verb stringrequired
{
"code": 0,
"detail": "string",
"message": "string",
"uri": "string",
"verb": "string"
}
Loading...