Get Network VPC create options
GET/backend/api/openstack/networks/create_options
Host: https://core.ocplanet.cloud
Retrieve options for view Network VPC. Through a GET request with create_options, data about the service options is obtained before ordering it. You can see what the characteristics may be. These options contain all need data which must be specified when you will use POST/PUT requests.
Request
Responses
- 200
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
availability_zones string[]required
has_hidden_regions booleanrequired
regions object[]required
description stringrequired
id stringrequired
is_default booleanrequired
selected_region stringrequired
{
"availability_zones": [
"string"
],
"has_hidden_regions": true,
"regions": [
{
"description": "string",
"id": "string",
"is_default": true
}
],
"selected_region": "string"
}
{
"regions": [
{
"id": "default",
"description": "",
"is_default": true
},
{
"id": "RegionTwo",
"description": "",
"is_default": false
}
],
"selected_region": "default",
"has_hidden_regions": false,
"availability_zones": [
"nova"
]
}
Loading...