719 Commits

Author SHA1 Message Date
Jenkins
9a66d039a1 Merge "add description about key_name" 2017-08-10 13:12:18 +00:00
Matt Riedemann
67f7b96b22 api-ref: requested security groups are not applied to pre-existing ports
When creating a server, you can request security groups and
pre-existing ports, but the security groups are only applied to
any new ports that nova creates, not the pre-existing ones that
the user passes in. This change makes a note of that in the API
reference.

Change-Id: I0ea6891f10f021b0ed752200417e87d7e9bfda31
Related-Bug: #1707319
2017-07-31 12:36:52 -04:00
Matt Riedemann
edeec02963 api-ref: fix security_groups response parameter in os-security-groups
The 'security_groups' parameter in the GET /os-security-groups API
is not optional and we don't need information about the name
attribute. The "security_groups" parameter being used is actually
for the create server API.

Change-Id: I63bb8fc433b56a3f2b80cfafab37b103fe3a27d9
2017-07-31 12:36:30 -04:00
jichenjc
9a36e7cda4 add description about key_name
add description about key_name, which tells user 'null' is not
accepted parameter.

this is ths solution that other than change the code.

Change-Id: Id84c7803fdd44961497cd35c15ece98e2852d4f6
Related-Bug: 1700825
2017-07-28 01:48:56 +08:00
Anne Gentle
d90a35ef65 API ref: associate floating IP requires Active status
- There is no available status.

Change-Id: If1a2696e63830ae38b4a0c4e2488fb16d33650d8
Closes-bug: 1618883
2017-07-25 16:11:00 +00:00
Jenkins
15cac9d7e5 Merge "Handle uuids in os-hypervisors API" 2017-07-20 01:03:27 +00:00
Jenkins
d3e6b94eb9 Merge "Use uuid for id in os-services API" 2017-07-20 01:02:42 +00:00
Jenkins
58506516ff Merge "api-ref: Fix an expand button in os-quota-sets" 2017-07-20 00:55:16 +00:00
Jenkins
e4669f4dc7 Merge "api-ref: fix max_version for deprecated os-quota-class-sets parameters" 2017-07-19 17:35:13 +00:00
Jenkins
28fe91ffea Merge "Do not mention that tags are case sensitive in docs" 2017-07-19 17:32:57 +00:00
Jenkins
dd9dd7e2df Merge "Correct the description of 'disable-log-reason' api-ref" 2017-07-19 17:24:40 +00:00
Jenkins
c7d734d2a9 Merge "api-ref: Verify parameters in os-migrations.inc" 2017-07-19 16:29:39 +00:00
Takashi NATSUME
1a0a04dc05 api-ref: Fix an expand button in os-quota-sets
If section reference name is changed not to overlap,
when the 'List Default Quotas For Tenant' API section
is collapsed, it cannot be followed by users.
So the reference is changed to the 'os-quota-sets' chapter.

Change-Id: Ic61b38cabde3b3225f778833f0e7aae6acf5eabc
Closes-Bug: #1705191
2017-07-19 16:32:43 +09:00
ghanshyam
1503eff452 Correct the description of 'disable-log-reason' api-ref
'disable-log-reason' API action disable the compute service and
log the disabled reason. But api-ref statement sounds like this API
only log the disable reason.

Correcting description to convey the clear behavior of API.
Closes-Bug: #1702310

Change-Id: I5e1b97ed482d62477d87c96c9914e6f88c041b8b
2017-07-19 04:53:02 +00:00
Matt Riedemann
22f4aedb85 Do not mention that tags are case sensitive in docs
Because MySQL is case insensitive by default, and this
is something that depends on the database backend in the
cloud, let's not mention that tags are case sensitive in
the API.

Change-Id: I6efa9d6a5c598ac7a5c898d63b6a4b1934560b80
Related-Bug: #1538011
2017-07-18 17:47:22 -04:00
Matt Riedemann
90c6e256b8 api-ref: fix max_version for deprecated os-quota-class-sets parameters
The max_version on the fixed_ips, floating_ips, networks,
security_groups and security_group_members parameters for the
os-quota-class-sets API should be capped at 2.49, not 2.50.

This is a bit confusing but it works the same as max_version
works in the API code, i.e. the max version is the highest
version you can request that parameter on that API and it
will work. 2.50 was wrong because in 2.50 we don't accept
or return those parameters.

This is similar to the network-related resource deprecation
in the os-quota-sets API with the 2.36 microversion. The API
reference for those parameters in os-quota-sets use
max_version: 2.35.

Change-Id: Ib3e3cdc1ba57172fce1b03a0e77302c3edf9f0dc
Closes-Bug: #1705115
2017-07-18 17:15:49 -04:00
Matt Riedemann
622bfb2e95 Handle uuids in os-hypervisors API
There are quite a few changes here as this is not only handling
uuids for the hypervisor id but it's also a refactor in several
APIs for consistency.

The main changes are detailed in the REST API Version History
doc in this change, but to summarize the changes:

* Hypervisor and service IDs are handled as the UUIDs for those
  resources; this is necessary for accurately working with these
  resources across multiple cells.
* The 'servers' and 'search' routes are deprecated and folded into
  the index and detail methods as query parameters, validated using
  json schema.
* The show method will also be able to return the list of servers
  hosted on the given hypervisor using the with_servers query
  parameter.
* The marker used when paging over lists of hypervisors is the
  compute node UUID.
* Using the hypervisor_hostname_pattern query parameter will not
  work with paging parameters.
* API reference docs are updated for the detailed changes.
* Functional and unit tests are provided for all changes.

Part of blueprint service-hyper-uuid-in-api

Change-Id: I828350c179df8bcfa4739910abeafaba2f96982b
2017-07-18 17:08:01 -04:00
Dan Peschman
2f7bf29d47 Use uuid for id in os-services API
This patch introduces a new microversion to identify services by uuid
instead of id, to ensure uniqueness across cells. GET /os-services
returns uuid in the id field, and uuid must be provided to delete a
service with DELETE /os-services/{service_uuid}.

The old PUT /os-services/* APIs are now capped and replaced
with a new PUT /os-services/{service_uuid} which takes a uuid path
parameter to uniquely identify the service to update. It also restricts
updates to nova-compute services only, since disabling or forcing-down
a non-compute service like nova-scheduler doesn't make sense as it
doesn't do anything.

The new update() method in this microversion also avoids trying to
re-use the existing private action methods like _enable and _disable
since those are predicated on looking up the service by host/binary,
are confusing to follow for code flow, and just don't really make sense
with a pure PUT resource update method.

Part of blueprint service-hyper-uuid-in-api

Co-Authored-By: Matt Riedemann <mriedem.os@gmail.com>

Change-Id: I45494a4df7ee4454edb3ef8e7c5817d8c4e9e5ad
2017-07-18 15:39:57 -04:00
Jenkins
430ec6504b Merge "Support tag instances when boot(4/4)" 2017-07-18 16:31:31 +00:00
Jenkins
62f4d60362 Merge "api-ref: mention disk size limitations in resize flavor" 2017-07-18 11:44:58 +00:00
Takashi NATSUME
319656dd11 api-ref: Verify parameters in os-migrations.inc
Change-Id: I6baeecc4c2d62c3c39d856f5b659cb986a00b724
Implements: blueprint api-ref-in-rst-pike
Closes-Bug: #1668747
2017-07-18 00:38:40 +00:00
Kevin_Zheng
b50b5a660e Support tag instances when boot(4/4)
This is the 4th patch of the series,
this patch adds a new microversion
in API to support adding tags when
booting instances.

Implemetes: blueprint support-tag-instance-when-boot

Change-Id: Ifcaaf285c8f98a1d0e8bbbc87b2f57fbce057346
2017-07-17 15:59:42 -04:00
Jenkins
56c4d684bf Merge "Fix the releasenote and api-ref for quota-class API" 2017-07-17 17:28:41 +00:00
Matt Riedemann
a48f124caf api-ref: mention disk size limitations in resize flavor
In the resize API reference, mention that the specified flavor
must have a disk size greater than or equal to the current
instance flavor. This is something that doesn't get checked
in the API so it results in a failure on the compute service
which is not obvious to the API user since the instance goes
back into state 'ACTIVE'.

Change-Id: I33fc92ffa346b908a8e4f95da16a68040cfc678e
2017-07-15 18:08:26 -04:00
Jenkins
83e234a6e9 Merge "Fix typo" 2017-07-14 07:18:59 +00:00
Jenkins
ac20980702 Merge "api-ref: Add missing parameters in limits.inc" 2017-07-13 17:45:32 +00:00
He Jie Xu
d0f91817eb Fix the releasenote and api-ref for quota-class API
This patch marks the network related quota in the quota-class API
as deprecated in the 2.50 microversion. Also rewrite the release note for
2.50 microversion, change to describe the API change instead of the history.

Change-Id: Ida5518b7d43e85d9f30b11ed2819025a190aefd6
2017-07-13 07:05:22 +00:00
zhangdebo1987
258f3d52f5 Fix typo
Fix typo.

Change-Id: I3061e7d59ad9637063c71d8a879058d9e8e5b203
2017-07-13 11:40:43 +08:00
Jenkins
b70476304b Merge "Add ability to signal and perform online volume size change" 2017-07-13 01:14:07 +00:00
Jenkins
296c214ed0 Merge "Fix parameters and description for os-volume_attachments" 2017-07-13 01:13:31 +00:00
Jenkins
a2f97a41f3 Merge "api-ref: Add X-Openstack-Request-Id description" 2017-07-13 00:59:19 +00:00
Jenkins
418b65ad7c Merge "api-ref: Fix parameters in server-security-groups" 2017-07-13 00:58:44 +00:00
Mathieu Gagné
bbe0f313bd Add ability to signal and perform online volume size change
Allow Cinder to use external events to signal a volume extension.

1) Nova will then call os-brick to perform the volume extension
   so the host can detect its new size.
2) Compute driver will resize the device in QEMU so instance can detect
   the new disk size without rebooting.

This change:

* Adds the 'volume-extended' external event.
  The event tag needs to be the extended volume id.
* Bumps the latest microversion to 2.51.
* Exposes non-traceback instance action event details for
  non-admins on the microversion. This is needed for the
  non-admin API user that initiated the volume extend
  operation to be able to tell when the nova-compute side
  is complete.

Co-Authored-By: Matt Riedemann <mriedem.os@gmail.com>

Blueprint: nova-support-attached-volume-extend

Change-Id: If10cffd0dc4c9879f6754ce39bee5fae1d04f474
2017-07-12 11:53:20 -04:00
Matt Riedemann
d2d84eb102 api-ref: mark instance action events parameter as optional
For "GET /servers/{server_id}/os-instance-actions/{request_id}",
the "events" parameter in the response body is only included by
default policy for administrators. You can get details if you're
an admin or own the server, but the events are only returned for
admins by default.

This change does two things:

1. Fixes the description of the default policy since admin or
   owner can get action details for a particular request.
2. Fixes the "events" parameter description by pointing out it
   is optional and only returned by default for admins.

Change-Id: I6410a0aac223133d8d07fd65c268553ebb9e7e67
Closes-Bug: #1702573
2017-07-12 10:56:13 -04:00
Jenkins
0ffe7b2789 Merge "Fix quota class set APIs" 2017-07-12 05:56:35 +00:00
ghanshyam
92e0efeefd Fix quota class set APIs
v2.1 API which does not return the 'server_groups' and
'server_group_members' quotas in GET & PUT os-quota-class-sets
API response. v2 API used to return those keys in API response.

Also filter out the network related quotas from os-quota-class-sets
APIs

Fixing this with microversion.
Closes-Bug: #1701211
Closes-Bug: #1693168
implement-blueprint fix-quota-classes-api

Change-Id: I66aeb7a92fb5ee906fead78030bd84a2e97916e8
2017-07-10 21:44:08 +00:00
Takashi NATSUME
9fbd7861dd api-ref: Add X-Openstack-Request-Id description
Add the description for the following items
in the API reference and the API guide.

* 'X-Openstack-Request-Id' header in request
* 'X-Openstack-Request-Id' header in response
* 'X-Compute-Request-Id' in response

Change-Id: Idd9181c1530eb9576da9941416b697a97c0cfb8d
Closes-Bug: #1693555
2017-07-10 14:03:14 +00:00
Takashi NATSUME
247aa22355 api-ref: Add missing parameters in limits.inc
Add missing parameters in limits.inc.
Fix inconsistency in the description ('instance' and 'server').

Change-Id: I9e361471024fd9618a7b6a7b49a1aeca810e6f05
Implements: blueprint api-ref-in-rst-pike
Closes-Bug: #1654316
2017-07-10 14:02:28 +00:00
Takashi NATSUME
3f96ec6490 api-ref: Fix parameters in server-security-groups
Change-Id: Ie8dc3252603ce77910e1addb67cdc8844369dfca
Implements: blueprint api-ref-in-rst-pike
Closes-Bug: #1699732
2017-07-10 14:02:13 +00:00
Jenkins
56cd608d3a Merge "Add 'networks' quota in quota sample files" 2017-07-07 09:06:47 +00:00
Jenkins
e2d0442b5e Merge "Add api-ref for os-quota-class-set APIs" 2017-07-06 06:55:39 +00:00
zhangdaolong
7cb913077f Fix parameters and description for os-volume_attachments
Now the code implementation for the api show and delete for
os-volume_attachments and the description of the document
does not match.

Change-Id: Ib15532d628713d771a835e9825a1c699a7ea4fcb
2017-07-06 13:34:14 +08:00
ghanshyam
e332797e42 Add 'networks' quota in quota sample files
'networks' quota can be available based on config value.
api-ref should show that for quota-set APIs and also sample files
so that it can be tested somewhere.

Also adding it to quota class APIs sample files also.
Closes-Bug: #1702201

Change-Id: I84d562a8ca10826dea4675d74669b5de64ff0ed0
2017-07-04 23:45:30 +00:00
ghanshyam
b25b66e284 Add api-ref for os-quota-class-set APIs
This commit adds the api doc for os-quota-class-set GET & PUT
APIs.

- Also mentioned about the recommendation over usage of this API.
- Added warning for current bug in v2.1 API #1693168

This is also needed by BP
- https://blueprints.launchpad.net/nova/+spec/fix-quota-classes-api

Change-Id: Ib765e2d1dec7b236a2009148e0b1067a46326ce9
Related-Bug: #1693168
Closes-Bug: #1602400
2017-07-04 17:40:56 +03:00
ghanshyam
d22fe39986 Fix 'project-id' 'user-id' as required in server group
'project_id' and 'user_id' are introduced as mandatory param in
microversion 2.13 but api-ref shows them as optional
- https://developer.openstack.org/api-ref/compute/?expanded=show-server-group-details-detail#show-server-group-details

api-ref should reflect the actual behavior.

Change-Id: Id7e734c65a97c82824c00ed054c13cb9fae2dd3c
Closes-Bug: #1702238
2017-07-04 15:03:18 +03:00
Artom Lifshitz
125c17465f API support for tagged device attachment
This patch adds microversion 2.49, which supports tagged attachment
of network interfaces and block devices.

Change-Id: I8d3bbe7e9a21d2694d10ee89628deb333e6b0487
Implements: blueprint virt-device-tagged-attach-detach
2017-06-30 09:05:34 +03:00
Takashi NATSUME
d04ddb0a2b api-ref: Fix missing parameters in API Versions
Add 'updated' and 'media-types' explicitly
in parameter tables.

Change-Id: I3e9f3374d4183d7ef7d3cb55cc95a4499ab20d49
Closes-Bug: #1634668
2017-06-28 03:01:10 +00:00
Jenkins
a43d1b17e2 Merge "Update api-ref to indicate swap param" 2017-06-22 17:28:23 +00:00
jichenjc
34f0259a5e Update api-ref to indicate swap param
swap output is actully an empty string ('') now when query
flavor if the swap is 0, so we need indicate that before we
sort out any conclusion (whether we need fix it or not).

Change-Id: I5a5397479dd894f90dad9a1de509a50f6b3b5477
Related-Bug: 1436683
2017-06-22 14:38:02 +00:00
Jenkins
d59d762fa7 Merge "api-ref: fix hypervisor_hostname description for Ironic" 2017-06-20 18:51:16 +00:00