Files
neutron-lib/api-ref/source/v2/auto-topology.inc
Brian Haley c28b3ab8fe Fix incorrect links for the filtering spec
The spec networking_general_api_information.html was moved
to api-ref in [0] but some of the links pointing to it
were not updated. This change makes all the refs consistent
and adds links where missing.

Also moved sync/async and bulk create sections lower to
group all the filtering, pagination and sorting sections
together since they are inter-related.

[0] https://review.opendev.org/c/openstack/neutron-lib/+/362877

Change-Id: I895cc9aaee2546b95e93150c134f350a50346447
2024-04-04 19:00:17 -04:00

70 lines
1.3 KiB
ReStructuredText

.. -*- rst -*-
=========================
Auto Allocated Topologies
=========================
Show details and delete the auto allocated topology for a given project.
This API is only available when the ``auto-allocated-topology`` extension
is enabled.
Show auto allocated topology details
====================================
.. rest_method:: GET /v2.0/auto-allocated-topology/{project_id}
Shows details for an auto allocated topology.
.. include:: filtering-show.inc
Normal response codes: 200
Error response codes: 401, 404
Request
-------
.. rest_parameters:: parameters.yaml
- project_id: project_id-path
- fields: fields
Response Parameters
-------------------
.. rest_parameters:: parameters.yaml
- id: id_autotopology
- tenant_id: project_id-autotopology
Response Example
----------------
.. literalinclude:: samples/auto-topology/topo-show-response.json
:language: javascript
Delete the auto allocated topology
==================================
.. rest_method:: DELETE /v2.0/auto-allocated-topology/{project_id}
Deletes the auto allocated topology.
Normal response codes: 204
Error response codes: 401, 403, 404
Request
-------
.. rest_parameters:: parameters.yaml
- project_id: project_id-path
Response
--------
There is no body content for the response of a successful DELETE request.