docs: update old stuff in version section
The concept doc should only talk about v2.1 API. This pach corrects them. Also use the current API response instead of the old one and correct some old reference link. blueprint complete-todo-in-api-concept-doc Change-Id: I90b39959a6a13f37ec0c03cf6f86943eba6c47d1
This commit is contained in:
parent
3f8c69b2ef
commit
7b0b8c3754
@ -5,9 +5,9 @@ Versions
|
|||||||
The OpenStack Compute API uses both a URI and a MIME type versioning
|
The OpenStack Compute API uses both a URI and a MIME type versioning
|
||||||
scheme. In the URI scheme, the first element of the path contains the
|
scheme. In the URI scheme, the first element of the path contains the
|
||||||
target version identifier (e.g. https://servers.api.openstack.org/
|
target version identifier (e.g. https://servers.api.openstack.org/
|
||||||
v2.0/...). The MIME type versioning scheme uses HTTP content negotiation
|
v2.1/...). The MIME type versioning scheme uses HTTP content negotiation
|
||||||
where the ``Accept`` or ``Content-Type`` headers contains a MIME type
|
where the ``Accept`` or ``Content-Type`` headers contains a MIME type
|
||||||
that identifies the version (application/vnd.openstack.compute.v2+json).
|
that identifies the version (application/vnd.openstack.compute.v2.1+json).
|
||||||
A version MIME type is always linked to a base MIME type, such as
|
A version MIME type is always linked to a base MIME type, such as
|
||||||
application/json. If conflicting versions are specified using both an HTTP
|
application/json. If conflicting versions are specified using both an HTTP
|
||||||
header and a URI, the URI takes precedence.
|
header and a URI, the URI takes precedence.
|
||||||
@ -18,7 +18,7 @@ header and a URI, the URI takes precedence.
|
|||||||
|
|
||||||
GET /214412/images HTTP/1.1
|
GET /214412/images HTTP/1.1
|
||||||
Host: servers.api.openstack.org
|
Host: servers.api.openstack.org
|
||||||
Accept: application/vnd.openstack.compute.v2+json
|
Accept: application/vnd.openstack.compute.v2.1+json
|
||||||
X-Auth-Token: eaaafd18-0fed-4b3a-81b4-663c99ec1cbb
|
X-Auth-Token: eaaafd18-0fed-4b3a-81b4-663c99ec1cbb
|
||||||
|
|
||||||
|
|
||||||
@ -26,7 +26,7 @@ header and a URI, the URI takes precedence.
|
|||||||
|
|
||||||
.. code::
|
.. code::
|
||||||
|
|
||||||
GET /v2/214412/images HTTP/1.1
|
GET /v2.1/214412/images HTTP/1.1
|
||||||
Host: servers.api.openstack.org
|
Host: servers.api.openstack.org
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
X-Auth-Token: eaaafd18-0fed-4b3a-81b4-663c99ec1cbb
|
X-Auth-Token: eaaafd18-0fed-4b3a-81b4-663c99ec1cbb
|
||||||
@ -51,48 +51,47 @@ links and MIME types to available versions.
|
|||||||
{
|
{
|
||||||
"choices": [
|
"choices": [
|
||||||
{
|
{
|
||||||
"id":"v1.0",
|
"id": "v2.0",
|
||||||
"status":"DEPRECATED",
|
|
||||||
"links": [
|
"links": [
|
||||||
{
|
{
|
||||||
"rel":"self",
|
"href": "http://servers.api.openstack.org/v2/7f5b2214547e4e71970e329ccf0b257c/servers/detail",
|
||||||
"href":"http://servers.api.openstack.org/v1.0/1234/servers/52415800-8b69-11e0-9b19-734f6af67565"
|
"rel": "self"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"media-types": [
|
"media-types": [
|
||||||
{
|
{
|
||||||
"base": "application/json",
|
"base": "application/json",
|
||||||
"type":"application/vnd.openstack.compute.v1.0+json"
|
"type": "application/vnd.openstack.compute+json;version=2"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"status": "SUPPORTED"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id":"v2",
|
"id": "v2.1",
|
||||||
"status":"CURRENT",
|
|
||||||
"links": [
|
"links": [
|
||||||
{
|
{
|
||||||
"rel":"self",
|
"href": "http://servers.api.openstack.org/v2.1/7f5b2214547e4e71970e329ccf0b257c/servers/detail",
|
||||||
"href":"http://servers.api.openstack.org/v2/1234/servers/52415800-8b69-11e0-9b19-734f6af67565"
|
"rel": "self"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"media-types": [
|
"media-types": [
|
||||||
{
|
{
|
||||||
"base": "application/json",
|
"base": "application/json",
|
||||||
"type":"application/vnd.openstack.compute.v2+json"
|
"type": "application/vnd.openstack.compute+json;version=2.1"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"status": "CURRENT"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
The API with ``CURRENT`` status is the newest API and continue improved by the
|
||||||
New features and functionality that do not break API-compatibility are
|
Nova project. The API with ``SUPPORTED`` is the old API and new features is
|
||||||
introduced in the current version of the API as extensions and the URI and MIME
|
frozen. The API with ``DEPRECATED`` status is the API will be removed in the
|
||||||
types remain unchanged. Features or functionality changes that would necessitate a break in API-compatibility require a new version, which results
|
foreseeable future. Providers should work with developers and partners to
|
||||||
in URI and MIME type version being updated accordingly. When new API versions
|
ensure there is adequate time to migrate to the new version before deprecated
|
||||||
are released, older versions are marked as ``DEPRECATED``. Providers should
|
versions are discontinued. For any API which is under development and didn't
|
||||||
work with developers and partners to ensure there is adequate time to
|
release yet, the API status is ``EXPERIMENTAL``.
|
||||||
migrate to the new version before deprecated versions are discontinued.
|
|
||||||
|
|
||||||
Your application can programmatically determine available API versions
|
Your application can programmatically determine available API versions
|
||||||
by performing a **GET** on the root URL (i.e. with the version and
|
by performing a **GET** on the root URL (i.e. with the version and
|
||||||
@ -101,11 +100,11 @@ authentication system.
|
|||||||
|
|
||||||
You can also obtain additional information about a specific version by
|
You can also obtain additional information about a specific version by
|
||||||
performing a **GET** on the base version URL (such as,
|
performing a **GET** on the base version URL (such as,
|
||||||
``https://servers.api.openstack.org/v2/``). Version request URLs must
|
``https://servers.api.openstack.org/v2.1/``). Version request URLs must
|
||||||
always end with a trailing slash (``/``). If you omit the slash, the
|
always end with a trailing slash (``/``). If you omit the slash, the
|
||||||
server might respond with a 302 redirection request. Format extensions
|
server might respond with a 302 redirection request. Format extensions
|
||||||
can be placed after the slash (such as,
|
can be placed after the slash (such as,
|
||||||
``https://servers.api.openstack.org/v2/.json``).
|
``https://servers.api.openstack.org/v2.1/.json``).
|
||||||
|
|
||||||
.. note:: This special case does not hold true for other API requests. In
|
.. note:: This special case does not hold true for other API requests. In
|
||||||
general, requests such as ``/servers.json`` and ``/servers/.json`` are
|
general, requests such as ``/servers.json`` and ``/servers/.json`` are
|
||||||
@ -113,7 +112,7 @@ can be placed after the slash (such as,
|
|||||||
|
|
||||||
For examples of the list versions and get version details requests and
|
For examples of the list versions and get version details requests and
|
||||||
responses, see `*API versions*
|
responses, see `*API versions*
|
||||||
<http://developer.openstack.org/api-ref-compute-v2.html#compute_versions>`__.
|
<http://developer.openstack.org/api-ref-compute-v2.1.html#versions-v2.1>`__.
|
||||||
|
|
||||||
The detailed version response contains pointers to both a human-readable
|
The detailed version response contains pointers to both a human-readable
|
||||||
and a machine-processable description of the API service. The
|
and a machine-processable description of the API service. The
|
||||||
|
Loading…
Reference in New Issue
Block a user