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: I171eb7efc0e34b4451a1b3539ae6655f81dd2312
This commit is contained in:
parent
f157dc3726
commit
e0a0125a01
@ -20,7 +20,7 @@ class QosPoliciesClient(base.BaseNetworkClient):
|
||||
|
||||
For a full list of available parameters, please refer to the official
|
||||
API reference:
|
||||
https://developer.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
https://docs.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
"""
|
||||
uri = '/qos/policies'
|
||||
post_data = {'policy': kwargs}
|
||||
@ -31,7 +31,7 @@ class QosPoliciesClient(base.BaseNetworkClient):
|
||||
|
||||
For a full list of available parameters, please refer to the official
|
||||
API reference:
|
||||
https://developer.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
https://docs.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
"""
|
||||
uri = '/qos/policies/%s' % qos_policy_id
|
||||
post_data = {'policy': kwargs}
|
||||
@ -42,7 +42,7 @@ class QosPoliciesClient(base.BaseNetworkClient):
|
||||
|
||||
For a full list of available parameters, please refer to the official
|
||||
API reference:
|
||||
https://developer.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
https://docs.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
"""
|
||||
uri = '/qos/policies/%s' % qos_policy_id
|
||||
return self.show_resource(uri, **fields)
|
||||
@ -52,7 +52,7 @@ class QosPoliciesClient(base.BaseNetworkClient):
|
||||
|
||||
For a full list of available parameters, please refer to the official
|
||||
API reference:
|
||||
https://developer.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
https://docs.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
"""
|
||||
uri = '/qos/policies/%s' % qos_policy_id
|
||||
return self.delete_resource(uri)
|
||||
@ -62,7 +62,7 @@ class QosPoliciesClient(base.BaseNetworkClient):
|
||||
|
||||
For a full list of available parameters, please refer to the official
|
||||
API reference:
|
||||
https://developer.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
https://docs.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
"""
|
||||
uri = '/qos/policies'
|
||||
return self.list_resources(uri, **filters)
|
||||
|
@ -20,7 +20,7 @@ class QosRuleClient(base.BaseNetworkClient):
|
||||
|
||||
For a full list of available parameters, please refer to the official
|
||||
API reference:
|
||||
https://developer.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
https://docs.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
"""
|
||||
uri = '/qos/policies/%s/%s' % (qos_policy_id, qos_rule_type)
|
||||
post_data = {qos_rule_type[:-1]: kwargs}
|
||||
@ -32,7 +32,7 @@ class QosRuleClient(base.BaseNetworkClient):
|
||||
|
||||
For a full list of available parameters, please refer to the official
|
||||
API reference:
|
||||
https://developer.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
https://docs.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
"""
|
||||
uri = '/qos/policies/%s/%s/%s' % (qos_policy_id,
|
||||
qos_rule_type, qos_rule_id)
|
||||
@ -45,7 +45,7 @@ class QosRuleClient(base.BaseNetworkClient):
|
||||
|
||||
For a full list of available parameters, please refer to the official
|
||||
API reference:
|
||||
https://developer.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
https://docs.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
"""
|
||||
uri = '/qos/policies/%s/%s/%s' % (qos_policy_id,
|
||||
qos_rule_type, qos_rule_id)
|
||||
@ -56,7 +56,7 @@ class QosRuleClient(base.BaseNetworkClient):
|
||||
|
||||
For a full list of available parameters, please refer to the official
|
||||
API reference:
|
||||
https://developer.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
https://docs.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
"""
|
||||
uri = '/qos/policies/%s/%s/%s' % (qos_policy_id,
|
||||
qos_rule_type, qos_rule_id)
|
||||
@ -67,7 +67,7 @@ class QosRuleClient(base.BaseNetworkClient):
|
||||
|
||||
For a full list of available parameters, please refer to the official
|
||||
API reference:
|
||||
https://developer.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
https://docs.openstack.org/api-ref/network/v2/index.html#quality-of-service
|
||||
"""
|
||||
uri = '/qos/policies/%s' % (qos_policy_id)
|
||||
return self.list_resources(uri, **filters)
|
||||
|
Loading…
Reference in New Issue
Block a user