Validate and returns active resource of project before delete
DELETE/v1/projects/:uid/validate
Validate and returns active resource of project before delete
Request
Path Parameters
uid stringrequired
Responses
- 200
(empty)
- application/json
- Schema
- Example (from schema)
Schema
- Array [ 
- ] 
- Array [ 
- ] 
- Array [ 
- ] 
appDeployments
object
Active app deployment
apps
object[]
appRef
object
Object identity meta
namestring
uidstring
statestring
countint32
clusters
object
Active clusters
clusters
object[]
clusterRef
object
Object identity meta
namestring
uidstring
statestring
countint32
virtualClusters
object
Active clusters
clusters
object[]
clusterRef
object
Object identity meta
namestring
uidstring
statestring
countint32
{
  "appDeployments": {
    "apps": [
      {
        "appRef": {
          "name": "string",
          "uid": "string"
        },
        "state": "string"
      }
    ],
    "count": 0
  },
  "clusters": {
    "clusters": [
      {
        "clusterRef": {
          "name": "string",
          "uid": "string"
        },
        "state": "string"
      }
    ],
    "count": 0
  },
  "virtualClusters": {
    "clusters": [
      {
        "clusterRef": {
          "name": "string",
          "uid": "string"
        },
        "state": "string"
      }
    ],
    "count": 0
  }
}
Loading...