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)