From 1d6b9f27a1c8e1256b0282753d2278cefccb47fd Mon Sep 17 00:00:00 2001 From: vicky liu Date: Thu, 18 Apr 2019 14:25:18 +0800 Subject: [PATCH] Inventory api changes NSXT team modified the query string name Change-Id: I2e894cd30d27ff332aa729b04c3706450ebd61fd --- vmware_nsxlib/tests/unit/v3/test_resources.py | 2 +- vmware_nsxlib/v3/resources.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vmware_nsxlib/tests/unit/v3/test_resources.py b/vmware_nsxlib/tests/unit/v3/test_resources.py index f18c5617..bac021ea 100644 --- a/vmware_nsxlib/tests/unit/v3/test_resources.py +++ b/vmware_nsxlib/tests/unit/v3/test_resources.py @@ -2221,7 +2221,7 @@ class InventoryTestCase(BaseTestResource): self.CONTAINER_CLUSTER, 'ContainerApplication') base_url = 'https://1.2.3.4/api/v1/fabric/container-applications' - surfix = '?cluster_id=%s' % self.CONTAINER_CLUSTER + surfix = '?container_cluster_id=%s' % self.CONTAINER_CLUSTER test_client.assert_json_call( 'get', mocked_resource, base_url + surfix, diff --git a/vmware_nsxlib/v3/resources.py b/vmware_nsxlib/v3/resources.py index f46a4db6..16d10dc0 100644 --- a/vmware_nsxlib/v3/resources.py +++ b/vmware_nsxlib/v3/resources.py @@ -772,7 +772,7 @@ class Inventory(utils.NsxLibApiBase): if not resource_type: msg = "null resource type is not supported" raise exceptions.ResourceNotFound(details=msg) - request_url = "%s?cluster_id=%s" % ( + request_url = "%s?container_cluster_id=%s" % ( self.get_path(self._get_path_for_resource(resource_type)), cluster_id) return self.client.url_get(request_url)