Retrieves a list of Maas subnets for a particular account uid
GET/v1/clouds/maas/subnets
Retrieves a list of Maas subnets for a particular account uid
Request
Query Parameters
cloudAccountUid string
Uid for the specific Maas cloud account
Header Parameters
ProjectUid string
Scope the request to the specified project uid
Responses
- 200
(empty)
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
items
object[]
required
idinteger
Id of Maas subnet
namestring
Name of Maas subnet
spacestring
Space associated with Maas subnet
vlans
object
Maas vlan entity
fabricstring
Fabric associated with Maas Vlan
idinteger
Id of Maas Vlan
namestring
Name of Maas Vlan
{
"items": [
{
"id": 0,
"name": "string",
"space": "string",
"vlans": {
"fabric": "string",
"id": 0,
"name": "string"
}
}
]
}
Loading...