File: deprecates-multinic-floatingipaction-osvirtualinterface-api-73b24e5304635e9d.yaml

package info (click to toggle)
nova 2%3A18.1.0-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 49,532 kB
  • sloc: python: 383,759; pascal: 1,610; xml: 1,184; sh: 917; makefile: 140; sql: 43
file content (33 lines) | stat: -rw-r--r-- 961 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
deprecations:
  - |
    The following APIs which are considered as proxies of Neutron networking
    API, are deprecated and will result in a 404 error response in microversion
    `2.44`::

         POST /servers/{server_uuid}/action
         {
             "addFixedIp": {...}
         }
         POST /servers/{server_uuid}/action
         {
             "removeFixedIp": {...}
         }
         POST /servers/{server_uuid}/action
         {
             "addFloatingIp": {...}
         }
         POST /servers/{server_uuid}/action
         {
             "removeFloatingIp": {...}
         }

    Those server actions can be replaced by calling the Neutron API directly.

    The nova-network specific API to query the server's interfaces is
    deprecated::

         GET /servers/{server_uuid}/os-virtual-interfaces

    To query attached neutron interfaces for a specific server, the API
    `GET /servers/{server_uuid}/os-interface` can be used.