Trivial: Fix gap in microversion sequence

Change-Id: Ib70d31c22fac112431231e61f647185798e47ab1
This commit is contained in:
Afonne-CID
2025-05-05 21:21:29 +01:00
parent 1bc466e30a
commit cd23ae4777
2 changed files with 34 additions and 2 deletions

View File

@@ -53,6 +53,9 @@ By default, this query will return the uuid and address for each Port.
Added the ability to filter ports based on the shard of the node they are Added the ability to filter ports based on the shard of the node they are
associated with. associated with.
.. versionadded:: 1.97
Added the ``description`` field.
Normal response code: 200 Normal response code: 200
Request Request
@@ -122,6 +125,9 @@ This method requires a Node UUID and the physical hardware address for the Port
.. versionadded:: 1.94 .. versionadded:: 1.94
Added support to create ports passing in either the node name or UUID. Added support to create ports passing in either the node name or UUID.
.. versionadded:: 1.97
Added the ``description`` field.
Normal response code: 201 Normal response code: 201
Request Request
@@ -139,6 +145,7 @@ Request
- extra: req_extra - extra: req_extra
- is_smartnic: req_is_smartnic - is_smartnic: req_is_smartnic
- uuid: req_uuid - uuid: req_uuid
- description: req_port_description
.. note:: .. note::
Either `node_ident` or `node_uuid` is a valid parameter. Either `node_ident` or `node_uuid` is a valid parameter.
@@ -167,6 +174,7 @@ Response
- updated_at: updated_at - updated_at: updated_at
- links: links - links: links
- is_smartnic: is_smartnic - is_smartnic: is_smartnic
- description: port_description
**Example Port creation response:** **Example Port creation response:**
@@ -205,6 +213,9 @@ Return a list of bare metal Ports, with detailed information.
.. versionadded:: 1.88 .. versionadded:: 1.88
Added the ``name`` field. Added the ``name`` field.
.. versionadded:: 1.97
Added the ``description`` field.
Normal response code: 200 Normal response code: 200
Request Request
@@ -242,6 +253,7 @@ Response
- updated_at: updated_at - updated_at: updated_at
- links: links - links: links
- is_smartnic: is_smartnic - is_smartnic: is_smartnic
- description: port_description
**Example detailed Port list response:** **Example detailed Port list response:**
@@ -274,7 +286,10 @@ Show details for the given Port.
Added the ``is_smartnic`` response fields. Added the ``is_smartnic`` response fields.
.. versionadded:: 1.88 .. versionadded:: 1.88
Added the ``name`` Added the ``name`` field.
.. versionadded:: 1.97
Added the ``description`` field.
Normal response code: 200 Normal response code: 200
@@ -305,6 +320,7 @@ Response
- updated_at: updated_at - updated_at: updated_at
- links: links - links: links
- is_smartnic: is_smartnic - is_smartnic: is_smartnic
- description: port_description
**Example Port details:** **Example Port details:**
@@ -332,13 +348,16 @@ Update a Port.
Added the ``is_smartnic`` fields. Added the ``is_smartnic`` fields.
.. versionadded:: 1.88 .. versionadded:: 1.88
Added the ``name`` Added the ``name`` field.
.. versionadded:: 1.90 .. versionadded:: 1.90
``local_link_connection`` fields now accepts a dictionary ``local_link_connection`` fields now accepts a dictionary
of ``vtep-logical-switch``, ``vtep-physical-switch`` and ``port_id`` of ``vtep-logical-switch``, ``vtep-physical-switch`` and ``port_id``
to identify ovn vtep switches. to identify ovn vtep switches.
.. versionadded:: 1.97
Added the ``description`` field.
Normal response code: 200 Normal response code: 200
@@ -376,6 +395,7 @@ Response
- updated_at: updated_at - updated_at: updated_at
- links: links - links: links
- is_smartnic: is_smartnic - is_smartnic: is_smartnic
- description: port_description
**Example Port update response:** **Example Port update response:**

View File

@@ -1553,6 +1553,12 @@ port_address:
in: body in: body
required: true required: true
type: string type: string
port_description:
description: |
Descriptive text about the network Port.
in: body
required: false
type: string
port_name: port_name:
description: | description: |
The name assigned to the network Port. The name assigned to the network Port.
@@ -1948,6 +1954,12 @@ req_port_address:
in: body in: body
required: true required: true
type: string type: string
req_port_description:
description: |
Descriptive text about the network Port.
in: body
required: false
type: string
req_port_name: req_port_name:
description: | description: |
The name assigned to the network Port. The name assigned to the network Port.