GET'> PUT'> POST'> DELETE'> '> '> ]> Quantum API Guide (1.0) Quantum API 1.0 2011 OpenStack Quantum API v1.0 OpenStack Quantum (virtual network service) 2011-09-22 Copyright details are filled in by the template. This document is intended for software developers interested in developing applications using the OpenStack Quantum Layer-2 Networking Service (API). Overview Quantum is a project to provide "network connectivity as a service" between devices managed by the OpenStack compute service. For more information on Quantum and the other network-related projects please check the Quantum home page () and the NetStack home page (). We welcome feedback, comments, and bug reports at bugs.launchpad.net/Quantum.
Intended Audience This Guide is intended to assist software developers who want to develop applications using the Quantum API. To use the information provided here, you should first have a general understanding of the OpenStack Quantum network service, the OpenStack compute service (Nova), and the integration between the two. The user should also have access to a plugin providing the implementation for the API described in this document. Two plugins are included in the Quantum distribution: Openvswitch - Implementing Quantum API with Open vSwitch Cisco - Implementing Quantum API for Cisco UCS blades and Nexus switches You should also be familiar with: ReSTful web services HTTP/1.1 JSON and/or XML data serialization formats
Document Change History The most recent changes are described in the table below: Revision Date Summary of Changes September 22, 2011 Initial release.
Glossary Term Description Entity A generic term for any piece of hardware or software desiring to connect to the network services provided by Quantum. An entity may make use of Quantum by implementing a VIF. Layer-2 network A virtual Ethernet network managed by the Quantum service. For the time being, Quantum will manage only Ethernet networks. Network A virtual network providing connectivity between entities, i.e.: collection of virtual ports sharing network connectivity. In the Quantum terminology, a network is always a Layer-2 network. Plugin Software component providing the actual implementation for Quantum APIs. Port A port on the virtual network switch represented by a Quantum virtual Layer-2 network. VIF A Virtual network InterFace plugged into a port of a Quantum network; typically a virtual network interface belonging to a VM Attachment Association of an interface identifier to a logical port, which represent 'plugging' an interface into a port.
Theory of Operation This section presents the objects and semantics of Quantum’s logical model. Quantum abstracts the physical implementation of the network, allowing plugins to configure and manage physical resources. Quantum is a standalone service, in that it requires no other project within OpenStack to function correctly. Further Quantum is agnostic to the entities it allows to connect. While we anticipate Nova instances will be a heavy user of Quantum, any entity can make use of any Quantum created network so long as it provides an appropriate interfaces for exposing VIFs to Quantum itself. Virtual Interfaces(VIF) in the logical model are analogous to physical network interface cards (NICs). VIFs are typically owned a managed by an external service; for instance when Quantum is used for building OpenStack networks, VIFs would be created, owned, and managed in Nova. VIFs are connected to Quantum networks via ports. A port is analogous to a port on a network switch, and it has an administrative state. Quantum API allows for controlling the administrative state of the port, which can be either 'DOWN' or 'ACTIVE'. When a VIF is attached to a port the Quantum API creates an attachment object, which specifies the fact that a VIF with a given identifier is plugged into the port. The Quantum plugin is responsible for managing virtual and/or physical network switches to implement the network forwarding connectivity described by the Quantum networks, ports, and attachments. VIFs attached to ACTIVE ports are required to have access to the L2 broadcast domain defined by the network where they are attached. Each VIF shall be capable of exchanging traffic with all other entities attached through ACTIVE ports.
Concepts To use the Quantum API effectively, developers should understand the concepts introduced in this chapter.
Network Each tenant can define one or more networks. A network is a virtual isolated layer-2 broadcast domain reserved to the tenant. A tenant can create several ports for a network, and plug virtual interfaces into these ports.
Port A port represents a virtual switch port on a logical network switch where all the interfaces attached to a given network are connected. A port has an administrative state which is either 'DOWN' or 'ACTIVE'. Ports which are administratively down will not be able to receive/send traffic.
Attachment An attachment represents an interface plugged into a logical port. At any time at most one attachment can be plugged into a given port. An attachment typically identified a virtual network interface. Network interfaces are typically defined in an external services which uses Quantum, for instance the OpenStack Compute service, Nova.
General API Information The OpenStack Quantum API is defined as a ReSTful HTTP service. The API takes advantage of all aspects of the HTTP protocol (methods, URIs, media types, response codes, etc.) and providers are free to use existing features of the protocol such as caching, persistent connections, and content compression among others. For example, providers who employ a caching layer may respond with a 203 when a request is served from the cache instead of a 200. Additionally, providers may offer support for conditional &GET; requests using ETags, or they may send a redirect in response to a &GET; request. Clients should be written to account for these differences.
Authentication The current version of the OpenStack Quantum service does not require that each request will include the credentials of the user submitting the request. However, Quantum deployments can support several authentication schemes (OAuth, Basic Auth, Token). The authentication scheme used is determined by the provider of the Quantum service. Please contact your provider to determine the best way to authenticate against this API. Ideally, middleware modules for Authentication and/or Authorization should be inserted in the first stages of the Quantum pipeline (available in etc/quantum.conf). Some authentication schemes may require that the API operate using SSL over HTTP (HTTPS).
URI structure Each request to the OpenStack Quantum API must refer to a specific version of the API itself, and it must also identify the tenant for which the request is being sent. This information is specified in the URI. The URI for each request to the OpenStack Quantum API should be prefixed with the API version identifier and the tenant identifier, as follows: /{Quantum-version}/tenants/{tenant-id}/{Quantum-API-entity} As an example, the following URI represents a request for retrieving all the networks configured for the tenant "ABC" using the 1.0 API. /v1.0/ABC/networks
Request/Response Types The OpenStack Quantum API supports both the JSON and XML data serialization formats. The format for both the request and the response can be specified either using the Content-Type header, the Accept header or adding an .xml or .json extension to the request URI. If conflicting formats are specified in headers and/or format extensions, the latter takes precedence. XML is currently the default format for both requests and responses.
JSON and XML Response Formats
Format Accept Header Query Extension Default
JSON application/json .json No
XML application/xml .xml Yes
Request/Response with Headers: JSON POST /v1.0/tenants/tenantX/networks HTTP/1.1 Host 127.0.0.1:9696 Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Content-Type application/json; charset=UTF-8 Content-Length 30 HTTP/1.1 200 Accepted Content-Type application/json Content-Length 59 Notice, in the above example, that both the Content-Type and the Accept headers are specified. The Content-Type header always takes precedence over the Accept header. The value of the latter header is therefore ignored in the example above. Request/Response with Headers: XML POST /v1.0/tenants/tenantX/networks HTTP/1.1 Host 127.0.0.1:9696 Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Content-Type application/xml; charset=UTF-8 Content-Length 22 HTTP/1.1 200 Accepted Content-Type application/xml Content-Length 52 Request/Response with Extensions: JSON POST /v1.0/tenants/tenantX/networks.json HTTP/1.1 Host 127.0.0.1:9696 Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Content-Type application/json; charset=UTF-8 Content-Length 30 HTTP/1.1 200 Accepted Content-Type application/json Content-Length 59
Asynchronous Behavior by Quantum Plugins The Quantum API presents a logical model of network connectivity consisting of networks, ports, and attachments. It is up to the Quantum plugin to communicate with all managed virtual and/or physical switches to ensure that these devices implement packet forwarding behavior consistent with the logical model. The plugin's task of mapping from the logical model to the physical world might happen asynchronously. This means that when an API client modifies the logical model using an HTTP POST, PUT, or DELETE, the API call may return prior to the plugin performing any modifications to underlying virtual and/or physical switching devices. The only guarantee an API client has is that all subsequent API calls will properly reflect the changed logical model. As a concrete example, consider the case where a client uses an HTTP PUT to set the attachment for a port. There is no guarantee that packets sent by the interface named in the attachment will be forwarded immediately once the HTTP call returns. However, there is a guarantee that a subsequent HTTP GET to view the attachment on that port would return the new attachment value. Future versions of the API may expose a notion of an "operational status" on a logical entity like a network or port. This would indicate whether the Quantum plugin had successfully configured virtual and/or physical switches in order to implement the network connectivity described by that element of the logical model. For example, a port might have an operational status of "DOWN" because the VM interface specified as an attachment was not currently running on any physical server.
Versions The Quantum API uses a URI based versioning scheme. The first element of the URI path contains the target version identifier. Request with URI versioning GET /v1.0/tenants/tenantX/networks HTTP/1.1 Host 127.0.0.1:9696 Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Content-Type application/xml; charset=UTF-8 Content-Length 22 Available API versions can be retrieved by performing a &GET; on the root URL (i.e. with the version and everything to the right of it truncated) of the Quantum Service. Versions List Request/Response (XML) GET / HTTP/1.1 Host 127.0.0.1:9696 Content-Type application/xml Version List Request/Response: JSON GET / HTTP/1.1 Host 127.0.0.1:9696 Content-Type application/json
Extensions The Quantum API is extensible. Extensions serve several purposes: They allow the introduction of new features in the API without requiring a version change; They allow the introduction of vendor specific niche functionality They act as a proving ground for experimental functionalities which might be included in a future version of the API. Applications can programmatically determine what extensions are available by performing a &GET; on the /v1.0/extensions URI. Note that this is a versioned request — that is, an extension available in one API version may not be available in another. Extensions Response: XML Extensions Response: JSON Extensions may also be queried individually by their unique alias by performing a &GET; on the /v1.0/extensions/alias_name. This provides the simplest method of checking if an extension is available as an unavailable extension will issue an itemNotFound (404) response. Existing core API resources can be extended with new actions or extra data in request/response of existing actions. Further new resources can also be added as extensions. Extensions usually have vendor specific tags that prevent clash with other extensions. Availability of an extension will vary with deployments and the specific plugin in use. Applications should be prepared to ignore response data that contains extension elements. Applications should also verify that an extension is available before submitting an extended request.
Faults When an error occurs at request time, the system will return an HTTP error response code denoting the type of error. The system will also return additional information about the fault in the body of the response. "Network not found" fault Response (XML) "Network not found" fault Response (JSON) The error code is returned in the body of the response for convenience. The message section returns a human-readable message that is appropriate for display to the end user. The detail section is optional and may contain information—for example, a stack trace—to assist in tracking down an error. The root element of the fault (e.g. networkNotFound) may change depending on the type of error. The following is a list of possible elements along with their associated error codes.
Fault Elements and Error Codes
Fault Element Error Code Description
BadRequest 400 Malformed request body. The Quantum service is unable to parse the contents of the request body.
Unauthorized 401 User has not provided authentication credentials. If authentication is provided by the Keystone identity service, this might mean that either no authentication token has been supplied in the request, or that the token itself is either invalid or expired.
Forbidden 403 The user does not have the necessary rights to execute the requested operation
ItemNotFound 404 The requested resource does not exist on the Quantum API server
NetworkNotFound 420 The specified network has not been created or has been removed.
NetworkInUse 421 The specified network has attachments plugged into one or more of its ports.
PortNotFound 430 The specified port has not been created or has been removed.
RequestedStateInvalid 431 Indicates a request to change port to an administrative state not currently supported.
PortInUse 432 The specified port cannot be removed as there is an attachment plugged in it.
AlreadyAttached 440 Attachment is already plugged into another port.
The error codes 401 and 403 will be returned only if some Authentication/Authorization system has been enabled in the Quantum pipeline
API Operations
Networks This section describes the operations exposed by Quantum API for manipulating network resources.
List Networks Verb URI Description &GET; /tenants/{tenant-id}/networks List summary of networks configured in Quantum for a given tenant, identified by tenant-id Normal Response Code(s): 200 Error Response Code(s): Unauthorized (401), Forbidden (403) This operation returns the list of all networks currently defined in Quantum for the tenant specified in the request URI. The returned list will provide the unique identifier of each network configured for the tenant specified in the resource URI. TenantId is a unique tenant identifier. The Quantum service does not directly manages tenants. Tenant management should be performed by the identity service This operation does not require a request body. Networks List Request/Response (XML) Request: GET /tenants/XYZ/networks.xml Response: Networks List Request/Response (JSON) Request: GET /tenants/XYZ/networks.json Response:
List Networks Details Verb URI Description &GET; /tenants/{tenant-id}/networks/detail List more detailed information about networks configured in Quantum for a given tenant, identified by tenant-id Normal Response Code(s): 200 Error Response Code(s): Unauthorized (401), Forbidden (403) This operation returns the list of all networks currently defined in Quantum; for each network, its identifier and name are returned. This operation does not require a request body. Networks List Request/Response (XML) Request: GET /tenants/XYZ/networks/detail.xml Response: Networks List Request/Response (JSON) Request: GET /tenants/XYZ/networks/detail.json Response:
Show Network Verb URI Description &GET; /tenants/{tenant-id}/networks/{network-id} List information for a specific network, identified by network-id, for a given tenant, identified by tenant-id. Normal Response Code(s): 200 Error Response Code(s): Unauthorized (401), Forbidden (403), NetworkNotFound (420), This operation returns the identifier and the name for a specific network configured in Quantum. This operation does not require a request body. Show Network Request/Response (XML) Request: GET /tenants/XYZ/networks/8bec1293-16bd-4568-ba75-1f58bec0b4c3.xml Response: Show Network Request/Response (JSON) Request: GET /tenants/XYZ/networks/8bec1293-16bd-4568-ba75-1f58bec0b4c3.json Response:
Show Network Details Verb URI Description &GET; /tenants/{tenant-id}/networks/{network-id}/detail List detailed information for a specific network, identified by network-id, for a given tenant, identified by tenant-id. Normal Response Code(s): 200 Error Response Code(s): Unauthorized (401), Forbidden (403), NetworkNotFound (420), This operation returns detailed information concerning the network specified in the request URI. Returned data include the full list of ports configured for the network and attachments plugged into such ports. If no attachment is plugged into a port, the response will not include an attachment child element for that port. This operation does not require a request body. Show Network Detail Request/Response (XML) Request: GET /tenants/XYZ/networks/8bec1293-16bd-4568-ba75-1f58bec0b4c3/detail.xml Response: Show Network Detail Request/Response (JSON) Request: GET /tenants/XYZ/networks/8bec1293-16bd-4568-ba75-1f58bec0b4c3/detail.json Response:
Create Network Verb URI Description &POST; /tenants/{tenant-id}/networks Creates a new logical layer-2 network for the tenant identified by tenant-id Normal Response Code(s): 200 Error Response Code(s): BadRequest (400) Unauthorized (401), Forbidden (403), This operation creates a Layer-2 network in Quantum based on the information provided in the request body. Quantum validates the request, and dispatches it to the plugin, and then returns the unique identifier of the network to the caller. Although the network API entity can be immediately used for other operations, this does not guarantee that the network will be available when the API call returns, as this depends on the particular plugin implementation. If the validation phase fails, the network object is not created at all, and a 400 error is returned to the caller. The Quantum API v1.0 does not provide an interface for checking the progress of asynchronous operations performed by plugins. This will be addressed in future releases of the Quantum API. The body for this request must contain a Network object specifying a symbolic name for the network. Create Network Request/Response (XML) Request: POST /tenants/XYZ/networks.xml Response: Create Network Request/Response (JSON) Request: POST /tenants/XYZ/networks.json Response:
Update Network Verb URI Description &PUT; /tenants/{tenant-id}/networks/{network-id} Renames the network identified by network-id for the tenant identified by tenant-id Normal Response Code(s): 204 Error Response Code(s): BadRequest (400) Unauthorized (401), Forbidden (403), NetworkNotFound (420) This operation renames a Quantum network using the data provided in the request body. The body for this request must contain a Network object specifying a symbolic name for the network. The network entity specified in the request body can contain the network's identifier as well, even if it is not required, as the identifier must be expressed on the URI; in this case the identifier in the request body will be ignored. Update Network Request/Response (XML) Request: PUT /tenants/XYZ/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1.xml Response: No data returned in response body Update Network Request/Response (JSON) Request: PUT /tenants/XYZ/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1.json Response: No data returned in response body
Delete Network Verb URI Description &DELETE; /tenants/{tenant-id}/networks/{network-id} Destroys the network identified by network-id for the tenant identified by tenant-id Normal Response Code(s): 204 Error Response Code(s): BadRequest (400) Unauthorized (401), Forbidden (403), NetworkNotFound (420), NetworkInUse (421) This operation removes the network specified in the URI. This request will fail as long as there is at least one port on the network with attachments plugged in it. If all ports on the networks are unattached, they will be destroyed together with the network itself. As for the create operation there is no guarantee that the plugin will have completely removed the network when the call returns. Quantum forwards the request to the plugin, which will then destroy the network. Please note that this operation cannot be undone. This operation does not require a request body. Delete Network Request/Response (XML) Request: DELETE /tenants/XYZ/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1.xml Response: No data returned in response body Update Network Request/Response (JSON) Request: DELETE /tenants/XYZ/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1.json Response: No data returned in response body
Ports This section describes the operations exposed by Quantum API for manipulating port resources.
List Ports Verb URI Description &GET; /tenants/{tenant-id}/networks/ {network-id}/ports Lists all the ports currently defined for a Quantum network, identified by network-id Normal Response Code(s): 200 Error Response Code(s): Unauthorized (401), Forbidden (403), NetworkNotFound (420) This operation lists all the ports currently configured for a network. For each port the response reports its unique identifier. If no ports have been created on the network an empty list will be returned. This operation does not require a request body. Port List Request/Response (XML) Request: GET /tenants/XYZ/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports.xml Response: Port List Request/Response (JSON) Request: GET /tenants/XYZ/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports.json Response:
List Ports Details Verb URI Description &GET; /tenants/{tenant-id}/networks/ {network-id}/ports/detail Lists detailed information for all the ports currently defined for the network identified by network-id Normal Response Code(s): 200 Error Response Code(s): Unauthorized (401), Forbidden (403), NetworkNotFound (420) This operation lists detailed information for all the ports currently configured for a network. Response for each port includes its identifier and the current administrative state. If no ports have been created on the network an empty list will be returned. This operation does not require a request body. Port List Details Request/Response (XML) Request: GET /tenants/XYZ/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports/detail.xml Response: Port List Details Request/Response (JSON) Request: GET /tenants/XYZ/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports/detail.json Response:
Show Port Verb URI Description &GET; /tenants/{tenant-id}/networks/ {network-id}/ports/ {port-id} Retrieves the port port-id configured for the network network-id belonging to the tenant tenant-id. Normal Response Code(s): 200 Error Response Code(s): Unauthorized (401), Forbidden (403), NetworkNotFound (420), PortNotFound (430) This operation returns the unique identifier and the current administrative state for a specific port configured for the network specified in the request URI. This operation does not require a request body. Show Port Request/Response (XML) Request: GET /tenants/33/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports/98017ddc-efc8-4c25-a915-774b2a633855.xml Response: Show Port Request/Response (JSON) Request: GET /tenants/33/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports/98017ddc-efc8-4c25-a915-774b2a633855.json Response:
Show Port Details Verb URI Description &GET; /tenants/{tenant-id}/networks/ {network-id}/ports/ {port-id}/detail Retrieves detailed information for the port port-id configured for the network network-id belonging to the tenant tenant-id. Normal Response Code(s): 200 Error Response Code(s): Unauthorized (401), Forbidden (403), NetworkNotFound (420), PortNotFound (430) This operation provides at least the identifier and the current administrative state for specific port configured for a given network. If an attachment is plugged into the port, this operation will return the identifier of the attachment as well. This operation does not require a request body. Show Port Detail Request/Response (XML) Request: GET /tenants/33/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports/98017ddc-efc8-4c25-a915-774b2a633855/detail.xml Response: Show Port Detail Request/Response (JSON) Request: GET /tenants/33/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports/98017ddc-efc8-4c25-a915-774b2a633855/detail.json Response:
Create Port Verb URI Description &POST; /tenants/{tenant-id}/networks/ {network-id}/ports Creates a port on the network specified in the request URI, identified by network-id Normal Response Code(s): 200 Error Response Code(s): BadRequest (400), Unauthorized (401), Forbidden (403), NetworkNotFound (420), RequestedStateInvalid (431) This operation creates a port on a Quantum network based on the information provided in the request body. Quantum validates the request, and dispatches the request to the plugin, which creates the port and attaches it to the appropriate network. This operation could not be implemented for some plugins as the number of ports available might be fixed when the network is created. If the validation phase fails, the port object is not created at all, and a BadRequest error is returned to the caller. The operation returns a port with an identifier, and set its administrative state set to DOWN, unless a state has been explicitly specified in the request body. Please note that this operation does not guarantee that the port has been actually created when the calls returns, as the plugin might still be performing the necessary operations on the network infrastructure. However, the port entity can be immediately used for API operations. The request body is not mandatory for this operation, but it can optionally contain the administrative state for the port being created, which can be either DOWN or ACTIVE. The administrative state should be encapsulated into a Port object within the request body, as shown in the example below. Create Port Request/Response (XML) Request: POST /tenants/33/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports.xml Response: Create Port Request/Response (JSON) Request: POST /tenants/33/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports.json Response:
Update Port Verb URI Description &PUT; /tenants/{tenant-id}/networks/ {network-id}/ports/ {port-id} Sets the administrative state for the port identified by port-id on the network identified by network-id Normal Response Code(s): 204 Error Response Code(s): BadRequest (400), Unauthorized (401), Forbidden (403), NetworkNotFound (420), PortNotFound (430), RequestedStateInvalid (431) This operation sets the administrative state for a port. Currently Quantum recognizes two port states: DOWN and ACTIVE. In the DOWN state a port will not provide connectivity to the network. This feature allows the tenant the ability to take entities offline without affecting the logical topology. The operation will return the RequestedStateInvalid error code if the specified administrative state is not either DOWN or ACTIVE. The operation's request body must contain a Port object with the new administrative state for the port. Set Port State Request/Response (XML) Request: PUT tenants/33/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports/98017ddc-efc8-4c25-a915-774b2a633855.xml Response: No data returned in response body. Set Port State Request/Response (JSON) Request: PUT tenants/33/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports/98017ddc-efc8-4c25-a915-774b2a633855.json Response: No data returned in response body.
Delete Port Verb URI Description &DELETE; /tenants/{tenant-id}/networks/ {network-id}/ports/ {port-id} Destroys the port identified by port-id on the network identified by network-id Normal Response Code(s): 204 Error Response Code(s): BadRequest (400), Unauthorized (401), Forbidden (403), NetworkNotFound (420), PortNotFound (430), PortInUse (432) This operation removes a port from a Quantum network. This operation might not be available for plugins in which the number of ports is fixed at network creation; in this case ports should not be deleted, just as they cannot be created. The operation is not recoverable and will fail if an attachment is plugged into the port. # This operation does not require a request body. Delete Port State Request/Response (XML) Request: DELETE tenants/33/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports/98017ddc-efc8-4c25-a915-774b2a633855.xml Response: No data returned in response body. Delete Port State Request/Response (JSON) Request: DELETE tenants/33/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports/98017ddc-efc8-4c25-a915-774b2a633855.json Response: No data returned in response body.
Attachments This section describes the operations exposed by Quantum API for manipulating port attachments. An attachment is typically a virtual network interface belonging to a VM instance. Different kinds of resources can be defined in the future.
Show Attachment for Port Verb URI Description &GET; /tenants/{tenant-id}/networks/ {network-id}/ports/ {port-id}/attachment Returns the identifier of the attachment plugged into the specified port, identified by port-id. Normal Response Code(s): 200 Error Response Code(s): Unauthorized (401), Forbidden (403), NetworkNotFound (420), PortNotFound (430) This operation returns configuration details for the attachment plugged into the port specified in the request URI. This information is a reference to a virtual interface identifier. If no attachment is currently plugged into the port, the operation does not return any attachment identifier in the response. The response will contain an empty attachment element with no id attribute set. This operation does not require a request body. Show Attachment (XML) Request: GET /tenants/XYZ/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports/b832be00-6553-4f69-af33-acd554e36d08/attachment.xml Response (attachment set): Response (attachment not set): Show Attachment (JSON) Request: GET /tenants/XYZ/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports/b832be00-6553-4f69-af33-acd554e36d08/attachment.json Response (attachment set): Response (attachment not set):
Plug Attachment into Port Verb URI Description &PUT; /tenants/{tenant-id}/networks/ {network-id}/ports/ {port-id}/attachment Plugs a resource, i.e. a virtual network interface into the port identified by port-id. Normal Response Code(s): 204 Error Response Code(s): Unauthorized (401), Forbidden (403), NetworkNotFound (420), PortNotFound (430), PortInUse (432), AlreadyAttached (440) This operation plugs an attachment into the port specified in the request URL. The request will be first validated by Quantum and then dispatched to the plugin. It is not guaranteed that the attached resource will be available as soon as the operation returns. The validation can fail if: An attachment with the same identifier is already plugged somewhere else; There is already another attachment plugged into the specified port. If the validation phase fails, the attachment is not created at all, and the appropriate error code is returned to the caller. If no attachment is currently plugged into the port, the operation does not return any attachment identifier in the response. The response will contain an empty attachment element. The request body for this network should contain a reference to the attachment to plug into the port. Plug Attachment (XML) Request: PUT /tenants/XYZ/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports/b832be00-6553-4f69-af33-acd554e36d08/attachment.xml Response: No data returned in response body Plug Attachment (JSON) Request: PUT /tenants/XYZ/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports/b832be00-6553-4f69-af33-acd554e36d08/attachment.json Response: No data returned in response body
Unplug Attachment from Port Verb URI Description &DELETE; /tenants/{tenant-id}/networks/ {network-id}/ports/ {port-id}/attachment Removes the attachment currently plugged into the port identified by port-id. Normal Response Code(s): 204 Error Response Code(s): Unauthorized (401), Forbidden (403), NetworkNotFound (420), PortNotFound (430) This operation removes the attachment from the port specified in the request URI. If no attachment is currently plugged into the port, this operation has no effect. This operation does not require a request body Remove Attachment (XML) Request: DELETE /tenants/XYZ/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports/b832be00-6553-4f69-af33-acd554e36d08/attachment.xml Response: No data returned in response body Remove Attachment (JSON) Request: DELETE /tenants/XYZ/networks/158233b0-ca9a-40b4-8614-54a4a99d47d1/ports/b832be00-6553-4f69-af33-acd554e36d08/attachment.json Response: No data returned in response body