diff --git a/openstack/cluster/v1/cluster.py b/openstack/cluster/v1/cluster.py index f4c9124d..648a8ae0 100644 --- a/openstack/cluster/v1/cluster.py +++ b/openstack/cluster/v1/cluster.py @@ -43,8 +43,6 @@ class Cluster(resource.Resource): project_id = resource.Body('project') #: The domain ID of the cluster owner. domain_id = resource.Body('domain') - #: The ID of the parent cluster (if any). - parent_id = resource.Body('parent') #: Timestamp of when the cluster was initialized. #: *Type: datetime object parsed from ISO 8601 formatted string* init_at = resource.Body('init_at') diff --git a/openstack/tests/unit/cluster/v1/test_cluster.py b/openstack/tests/unit/cluster/v1/test_cluster.py index b445b394..6f74f6fe 100644 --- a/openstack/tests/unit/cluster/v1/test_cluster.py +++ b/openstack/tests/unit/cluster/v1/test_cluster.py @@ -25,7 +25,6 @@ FAKE = { 'max_size': 3, 'min_size': 0, 'name': FAKE_NAME, - 'parent': None, 'profile_id': 'myserver', 'metadata': {}, 'timeout': None, @@ -50,7 +49,6 @@ FAKE_CREATE_RESP = { 'min_size': 0, 'name': 'test_cluster', 'nodes': [], - 'parent': None, 'policies': [], 'profile_id': '560a8f9d-7596-4a32-85e8-03645fa7be13', 'profile_name': 'myserver',