From e0a0125a01a8436b364e49c19f62efd66c5398f1 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Tue, 30 Jul 2019 19:39:41 +0200 Subject: [PATCH] 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 --- .../services/congress_network/qos_client.py | 10 +++++----- .../services/congress_network/qos_rule_client.py | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/congress_tempest_plugin/services/congress_network/qos_client.py b/congress_tempest_plugin/services/congress_network/qos_client.py index f8cd1ee..5df04c2 100644 --- a/congress_tempest_plugin/services/congress_network/qos_client.py +++ b/congress_tempest_plugin/services/congress_network/qos_client.py @@ -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) diff --git a/congress_tempest_plugin/services/congress_network/qos_rule_client.py b/congress_tempest_plugin/services/congress_network/qos_rule_client.py index 3369fc6..c193374 100755 --- a/congress_tempest_plugin/services/congress_network/qos_rule_client.py +++ b/congress_tempest_plugin/services/congress_network/qos_rule_client.py @@ -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)