Download OpenAPI specification:Download
This is the spec that defines the API provided by the application to provide APIs that act as proxy for openstack neutron APIS
Create Network
| name required | string |
| net_id | string |
| description | string |
Array of objects (Segment) | |
| tenant_name | string Unique Name of the tenant |
| admin_state_up | boolean |
| mtu | integer |
| enable_bd | boolean Default: "false" |
{- "name": "GREEN_NETWORK",
- "net_id": "123e4567-e89b-12d3-a456-426655440012",
- "description": "Bengaluru DC IP Network",
- "tenant_name": "Customer-A",
- "segments": [
- {
- "segment_id": "1",
- "network_type": "vlan"
}
], - "admin_state_up": true,
- "mtu": 1400
}Create Subnet
| name required | string |
| description | string Description of the Subnet |
| net_id required | string |
| subnet_id | string |
| segment_id | string |
| ip_version | integer <uint8> |
| cidr | string |
| gateway_ip | string |
| ipv6_address_mode | string The IPv6 address modes specifies mechanisms for assigning IP addresses |
| ipv6_ra_mode | string The IPv6 router advertisement specifies whether the networking service should transmit ICMPv6 packets, for a subnet. |
{- "name": "MY_SUBNET",
- "description": "MY_GREEN_SUBNET",
- "net_id": "123e4567-e89b-12d3-a456-426655440012",
- "subnet_id": "b0e7435c-1512-45fb-aa9e-9a7c5932fb30",
- "segment_id": "1",
- "ip_version": "4",
- "cidr": "10.56.4.0/22",
- "gateway_ip": "10.56.4.1",
- "ipv6_address_mode": "slaac",
- "ipv6_ra_mode": "slaac"
}Update Subnet Settings
| name required | string |
| subnet_id | string |
| net_id required | string |
| gateway_ip required | string |
{- "name": "MY_SUBNET",
- "net_id": "123e4567-e89b-12d3-a456-426655440012",
- "gateway_ip": "10.56.4.1"
}Create a new Port
| name required | string |
| port_id required | string |
| net_id | string |
| dns_domain | string |
| dns_name | string |
| device_owner | string |
Array of objects (SwitchInformation) |
{- "name": "Private-Port",
- "port_id": "Ethernet 0/1",
- "net_id": "123e4567-e89b-12d3-a456-426655440012",
- "dns_domain": "my-domain.org",
- "dns_name": "myport",
- "device_owner": "baremetal:none",
- "switch_information": [
- {
- "intf_type": "ethernet",
- "intf_name": "0/2",
- "mgmt_ip": "10.10.10.1"
}
]
}Create Router with a specified Neutron UUID
| name required | string |
| router_id required | string |
| tenant_name | string Unique Name of the tenant |
{- "name": "ROUTER-1",
- "router_id": "f8a44de0-fc8e-45df-93c7-f79bf3b01c95",
- "tenant_name": "Customer-A"
}Add a Router Interface to a Router
| router_id required | string |
| subnet_id | string |
{- "router_id": "f8a44de0-fc8e-45df-93c7-f79bf3b01c95",
- "subnet_id": "45a44de0-fc8e-45df-93c7-f79bf3b01c95"
}Delete Router Interface from Router
| router_id required | string |
| subnet_id | string |
{- "router_id": "f8a44de0-fc8e-45df-93c7-f79bf3b01c95",
- "subnet_id": "45a44de0-fc8e-45df-93c7-f79bf3b01c95"
}This API will delete openstack asset
Ids of the Oss sset to delete
| operation | string Enum: "network-delete" "network-interface-delete" "router-delete" "router-interface-delete" |
| net_id | string |
| port_id | string |
| router_id | string |
| subnet_id | string |
{- "operation": "network-delete",
- "net_id": "123e4567-e89b-12d3-a456-426655440012",
- "port_id": "123e4567-e89b-12d3-a456-426655440010",
- "router_id": "f8a44de0-fc8e-45df-93c7-f79bf3b01c95",
- "subnet_id": "45a44de0-fc8e-45df-93c7-f79bf3b01c95"
}Takes EFA Lock From Neutron
| region required | string |
| requester required | string |
| request_id | string |
{- "region": "RegionOne",
- "requester": "controller-1",
- "request_id": "123e4567-e89b-12d3-a456-426614174000"
}Releases EFA Lock From Neutron
| region required | string |
| requester required | string |
| request_id | string |
{- "region": "RegionOne",
- "requester": "controller-1",
- "request_id": "123e4567-e89b-12d3-a456-426614174000"
}