Update api-ref location

The api documentation is now published on docs.openstack.org instead
of developer.openstack.org. Update all links that are changed to the
new location.

Note that redirects will be set up as well but let's point now to the
new location.

For details, see:
http://lists.openstack.org/pipermail/openstack-discuss/2019-July/007828.html

Change-Id: I1572a21632740b4d9a233a6a31c49e3bac5394ef
This commit is contained in:
Andreas Jaeger 2019-07-22 20:55:43 +02:00
parent 5b97dfa427
commit c609b98c40

View File

@ -145,7 +145,7 @@ class APIv2(api.BaseAPI):
): ):
"""Create a new floating ip """Create a new floating ip
https://developer.openstack.org/api-ref/compute/#create-allocate-floating-ip-address https://docs.openstack.org/api-ref/compute/#create-allocate-floating-ip-address
:param pool: Name of floating IP pool :param pool: Name of floating IP pool
""" """
@ -170,7 +170,7 @@ class APIv2(api.BaseAPI):
): ):
"""Delete a floating IP """Delete a floating IP
https://developer.openstack.org/api-ref/compute/#delete-deallocate-floating-ip-address https://docs.openstack.org/api-ref/compute/#delete-deallocate-floating-ip-address
:param string floating_ip_id: :param string floating_ip_id:
Floating IP ID Floating IP ID
@ -189,7 +189,7 @@ class APIv2(api.BaseAPI):
): ):
"""Return a security group given name or ID """Return a security group given name or ID
https://developer.openstack.org/api-ref/compute/#list-floating-ip-addresses https://docs.openstack.org/api-ref/compute/#list-floating-ip-addresses
:param string floating_ip: :param string floating_ip:
Floating IP address Floating IP address
@ -209,7 +209,7 @@ class APIv2(api.BaseAPI):
): ):
"""Get floating IPs """Get floating IPs
https://developer.openstack.org/api-ref/compute/#show-floating-ip-address-details https://docs.openstack.org/api-ref/compute/#show-floating-ip-address-details
:returns: :returns:
list of floating IPs list of floating IPs
@ -258,7 +258,7 @@ class APIv2(api.BaseAPI):
): ):
"""Get floating IP pools """Get floating IP pools
https://developer.openstack.org/api-ref/compute/?expanded=#list-floating-ip-pools https://docs.openstack.org/api-ref/compute/?expanded=#list-floating-ip-pools
:returns: :returns:
list of floating IP pools list of floating IP pools
@ -276,7 +276,7 @@ class APIv2(api.BaseAPI):
): ):
"""Lists hypervisor Hosts """Lists hypervisor Hosts
https://developer.openstack.org/api-ref/compute/#list-hosts https://docs.openstack.org/api-ref/compute/#list-hosts
Valid for Compute 2.0 - 2.42 Valid for Compute 2.0 - 2.42
:param string zone: :param string zone:
@ -299,7 +299,7 @@ class APIv2(api.BaseAPI):
): ):
"""Modify host properties """Modify host properties
https://developer.openstack.org/api-ref/compute/#update-host-status https://docs.openstack.org/api-ref/compute/#update-host-status
Valid for Compute 2.0 - 2.42 Valid for Compute 2.0 - 2.42
status status
@ -329,7 +329,7 @@ class APIv2(api.BaseAPI):
): ):
"""Show host """Show host
https://developer.openstack.org/api-ref/compute/#show-host-details https://docs.openstack.org/api-ref/compute/#show-host-details
Valid for Compute 2.0 - 2.42 Valid for Compute 2.0 - 2.42
""" """
@ -356,7 +356,7 @@ class APIv2(api.BaseAPI):
): ):
"""Create a new network """Create a new network
https://developer.openstack.org/api-ref/compute/#create-network https://docs.openstack.org/api-ref/compute/#create-network
:param string name: :param string name:
Network label (required) Network label (required)
@ -387,7 +387,7 @@ class APIv2(api.BaseAPI):
): ):
"""Delete a network """Delete a network
https://developer.openstack.org/api-ref/compute/#delete-network https://docs.openstack.org/api-ref/compute/#delete-network
:param string network: :param string network:
Network name or ID Network name or ID
@ -411,7 +411,7 @@ class APIv2(api.BaseAPI):
): ):
"""Return a network given name or ID """Return a network given name or ID
https://developer.openstack.org/api-ref/compute/#show-network-details https://docs.openstack.org/api-ref/compute/#show-network-details
:param string network: :param string network:
Network name or ID Network name or ID
@ -431,7 +431,7 @@ class APIv2(api.BaseAPI):
): ):
"""Get networks """Get networks
https://developer.openstack.org/api-ref/compute/#list-networks https://docs.openstack.org/api-ref/compute/#list-networks
:returns: :returns:
list of networks list of networks
@ -450,7 +450,7 @@ class APIv2(api.BaseAPI):
): ):
"""Create a new security group """Create a new security group
https://developer.openstack.org/api-ref/compute/#create-security-group https://docs.openstack.org/api-ref/compute/#create-security-group
:param string name: :param string name:
Security group name Security group name
@ -476,7 +476,7 @@ class APIv2(api.BaseAPI):
): ):
"""Delete a security group """Delete a security group
https://developer.openstack.org/api-ref/compute/#delete-security-group https://docs.openstack.org/api-ref/compute/#delete-security-group
:param string security_group: :param string security_group:
Security group name or ID Security group name or ID
@ -500,7 +500,7 @@ class APIv2(api.BaseAPI):
): ):
"""Return a security group given name or ID """Return a security group given name or ID
https://developer.openstack.org/api-ref/compute/#show-security-group-details https://docs.openstack.org/api-ref/compute/#show-security-group-details
:param string security_group: :param string security_group:
Security group name or ID Security group name or ID
@ -523,7 +523,7 @@ class APIv2(api.BaseAPI):
): ):
"""Get security groups """Get security groups
https://developer.openstack.org/api-ref/compute/#list-security-groups https://docs.openstack.org/api-ref/compute/#list-security-groups
:param integer limit: :param integer limit:
query return count limit query return count limit
@ -556,7 +556,7 @@ class APIv2(api.BaseAPI):
): ):
"""Update a security group """Update a security group
https://developer.openstack.org/api-ref/compute/#update-security-group https://docs.openstack.org/api-ref/compute/#update-security-group
:param string security_group: :param string security_group:
Security group name or ID Security group name or ID
@ -600,7 +600,7 @@ class APIv2(api.BaseAPI):
): ):
"""Create a new security group rule """Create a new security group rule
https://developer.openstack.org/api-ref/compute/#create-security-group-rule https://docs.openstack.org/api-ref/compute/#create-security-group-rule
:param string security_group_id: :param string security_group_id:
Security group ID Security group ID
@ -643,7 +643,7 @@ class APIv2(api.BaseAPI):
): ):
"""Delete a security group rule """Delete a security group rule
https://developer.openstack.org/api-ref/compute/#delete-security-group-rule https://docs.openstack.org/api-ref/compute/#delete-security-group-rule
:param string security_group_rule_id: :param string security_group_rule_id:
Security group rule ID Security group rule ID