diff --git a/tempest/lib/services/compute/aggregates_client.py b/tempest/lib/services/compute/aggregates_client.py index ae747d811f..7ad14bce51 100644 --- a/tempest/lib/services/compute/aggregates_client.py +++ b/tempest/lib/services/compute/aggregates_client.py @@ -41,7 +41,7 @@ class AggregatesClient(base_compute_client.BaseComputeClient): """Create a new aggregate. Available params: see http://developer.openstack.org/ - api-ref-compute-v2.1.html#createaggregate + api-ref-compute-v2.1.html#createAggregate """ post_body = json.dumps({'aggregate': kwargs}) resp, body = self.post('os-aggregates', post_body) @@ -54,7 +54,7 @@ class AggregatesClient(base_compute_client.BaseComputeClient): """Update an aggregate. Available params: see http://developer.openstack.org/ - api-ref-compute-v2.1.html#updateaggregate + api-ref-compute-v2.1.html#updateAggregate """ put_body = json.dumps({'aggregate': kwargs}) resp, body = self.put('os-aggregates/%s' % aggregate_id, put_body) @@ -85,7 +85,7 @@ class AggregatesClient(base_compute_client.BaseComputeClient): """Add a host to the given aggregate. Available params: see http://developer.openstack.org/ - api-ref-compute-v2.1.html#addhost + api-ref-compute-v2.1.html#addHost """ post_body = json.dumps({'add_host': kwargs}) resp, body = self.post('os-aggregates/%s/action' % aggregate_id, @@ -98,7 +98,7 @@ class AggregatesClient(base_compute_client.BaseComputeClient): """Remove a host from the given aggregate. Available params: see http://developer.openstack.org/ - api-ref-compute-v2.1.html#removehost + api-ref-compute-v2.1.html#removeAggregateHost """ post_body = json.dumps({'remove_host': kwargs}) resp, body = self.post('os-aggregates/%s/action' % aggregate_id, diff --git a/tempest/lib/services/compute/flavors_client.py b/tempest/lib/services/compute/flavors_client.py index 0d80a82b23..5be8272707 100644 --- a/tempest/lib/services/compute/flavors_client.py +++ b/tempest/lib/services/compute/flavors_client.py @@ -91,7 +91,7 @@ class FlavorsClient(base_compute_client.BaseComputeClient): """Set extra Specs to the mentioned flavor. Available params: see http://developer.openstack.org/ - api-ref-compute-v2.1.html#updateFlavorExtraSpec + api-ref-compute-v2.1.html#createFlavorExtraSpec """ post_body = json.dumps({'extra_specs': kwargs}) resp, body = self.post('flavors/%s/os-extra_specs' % flavor_id, @@ -123,7 +123,7 @@ class FlavorsClient(base_compute_client.BaseComputeClient): """Update specified extra Specs of the mentioned flavor and key. Available params: see http://developer.openstack.org/ - api-ref-compute-v2.1.html#updateflavorspec + api-ref-compute-v2.1.html#updateFlavorExtraSpec """ resp, body = self.put('flavors/%s/os-extra_specs/%s' % (flavor_id, key), json.dumps(kwargs)) diff --git a/tempest/lib/services/compute/migrations_client.py b/tempest/lib/services/compute/migrations_client.py index 5eae8aaa85..62246d3828 100644 --- a/tempest/lib/services/compute/migrations_client.py +++ b/tempest/lib/services/compute/migrations_client.py @@ -26,7 +26,7 @@ class MigrationsClient(base_compute_client.BaseComputeClient): """List all migrations. Available params: see http://developer.openstack.org/ - api-ref-compute-v2.1.html#returnmigrations + api-ref-compute-v2.1.html#listMigrations """ url = 'os-migrations' diff --git a/tempest/lib/services/compute/quotas_client.py b/tempest/lib/services/compute/quotas_client.py index 184a3d7d92..6d41f4bbd1 100644 --- a/tempest/lib/services/compute/quotas_client.py +++ b/tempest/lib/services/compute/quotas_client.py @@ -46,7 +46,7 @@ class QuotasClient(base_compute_client.BaseComputeClient): """Updates the tenant's quota limits for one or more resources. Available params: see http://developer.openstack.org/ - api-ref-compute-v2.1.html#updatesquotatenant + api-ref-compute-v2.1.html#updateQuota """ post_body = json.dumps({'quota_set': kwargs}) diff --git a/tempest/lib/services/network/routers_client.py b/tempest/lib/services/network/routers_client.py index 78ffa772ef..2ba193859c 100644 --- a/tempest/lib/services/network/routers_client.py +++ b/tempest/lib/services/network/routers_client.py @@ -55,7 +55,7 @@ class RoutersClient(base.BaseNetworkClient): """Remove router interface. Available params: see http://developer.openstack.org/ - api-ref-networking-v2-ext.html#removeRouterInterface + api-ref-networking-v2-ext.html#deleteRouterInterface """ uri = '/routers/%s/remove_router_interface' % router_id return self.update_resource(uri, kwargs)