Remove ClusterNode model from client side

This resource was never used since the last revision to
cluster-node-list call. It is of no value now, thus should be deleted.

Change-Id: I9f4e0f4e1bfe712f6eaa9b0aa10d8fb139ad6b2f
This commit is contained in:
tengqm
2015-12-05 09:44:48 -05:00
parent 0598f6fa8d
commit d683970c2c

View File

@@ -452,22 +452,6 @@ class ClusterPolicy(resource.Resource):
return info
class ClusterNode(resource.Resource):
resources_key = 'nodes'
base_path = '/clusters/%(cluster_id)s/nodes'
service = cluster_service.ClusterService()
# Capabilities
allow_list = True
allow_create = True
allow_delete = True
# Properties
id = resource.prop('id')
cluster_id = resource.prop('cluster_id')
policy_id = resource.prop('node_id')
class Node(resource.Resource):
resource_key = 'node'
resources_key = 'nodes'