Used to return the enabled clouds for the workspace
GET/api/v2/workspaces/:workspace/enabledclouds
Used to return the enabled clouds for the workspace
Request
Path Parameters
workspace stringrequired
Workspace to use
Responses
- 200
- 401
- 403
- 404
- 500
Contains enabled state of cloud identities
- application/json
- Schema
- Example (from schema)
Schema
aws
required
enabled booleanrequired
stages string[]
azure
required
enabled booleanrequired
stages string[]
gcp
required
enabled booleanrequired
stages string[]
{
"aws": {
"enabled": true,
"stages": [
"string"
]
},
"azure": {
"enabled": true,
"stages": [
"string"
]
},
"gcp": {
"enabled": true,
"stages": [
"string"
]
}
}
If not authenticated
If authenticated but not authorized
Workspace does not exist
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...