Get Floating IP Options
GET/backend/api/openstack/floatingips/create_options
Host: https://core.ocplanet.cloud
Retrieve options for creating a new floating IP. 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 [
- ]
- Array [
- ]
default_region stringrequired
networks object[]required
description stringrequired
id stringrequired
name stringrequired
region stringrequired
regions object[]required
description stringrequired
id stringrequired
is_default booleanrequired
{
"default_region": "string",
"networks": [
{
"description": "string",
"id": "string",
"name": "string",
"region": "string"
}
],
"regions": [
{
"description": "string",
"id": "string",
"is_default": true
}
]
}
{
"networks": [
{
"id": "5cf72c55-b9cd-4706-862a-6bc4c3e41bfc",
"name": "external_network",
"region": "ua-central-1",
"description": ""
}
],
"regions": [
{
"id": "ua-central-1",
"description": "",
"is_default": true
}
],
"default_region": "ua-central-1"
}
Loading...