Returns the custom cloud types
GET/v1/clouds/cloudTypes
Returns the custom cloud types
Request
Header Parameters
ProjectUid string
Scope the request to the specified project uid
Responses
- 200
(empty)
- application/json
- Schema
- Example (from schema)
Schema
- Array [ 
- ] 
cloudTypes
object[]
Array of custom cloud types
cloudCategorystring
Possible values: [datacenter, cloud, edge]
Default value: cloud
Cloud category description
cloudFamilystring
Cloud grouping as family
displayNamestring
Custom cloudtype displayName
isCustomboolean
If it is a custom cloudtype
isManagedboolean
If custom cloudtype is managed
isVertexboolean
If cloud is support for Vertex env
logostring
Custom cloudtype logo
namestring
Custom cloudtype name
{
  "cloudTypes": [
    {
      "cloudCategory": "cloud",
      "cloudFamily": "string",
      "displayName": "string",
      "isCustom": true,
      "isManaged": true,
      "isVertex": true,
      "logo": "string",
      "name": "string"
    }
  ]
}
Loading...