Cloud Enterprise Object Storage REST API

Search (SHIFT+S)




Get Node Lockdown

GET /vdc/nodes/{nodeName}/lockdown

Gets the Lock/unlock status of a node.

nodeNamename

Required Roles

  • SECURITY_ADMIN


Response Body

Response indicating the node name and the status of the lock/unlock action

Field Description Type Notes
node
status    
nodeName Node name String
ip Node rack Id. Optional this item is not returned in a PUT or GET lockdown request. String
nodeId Node Id. Optional this item is not returned in a PUT or GET lockdown request. String
rackId Node rack Id. Optional this item is not returned in a PUT or GET lockdown request. String
version Version. Optional this item is not returned in a PUT or GET lockdown request. String
status Node locked/unlocked status. String

Examples

Request
GET https://10.245.133.106:4443/vdc/nodes/detroit-prune.ecs.lab.emc.com/lockdown HTTP/1.1

Content-Type: application/xml
X-SDS-AUTH-TOKEN: <AUTH_TOKEN>
Response
HTTP/1.1 200 OK
Content-Type: application/xml

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<node>
	<status>
		<nodeName>detroit-prune.ecs.lab.emc.com</nodeName>
		<status>locked</status>
	</status>
</node>