Cloud Enterprise Object Storage REST API

Search (SHIFT+S)




Set Node Lockdown

PUT /vdc/nodes/{nodeName}/lockdown

Sets the Lock/unlock a node.

nodeNamename of the node to be locked/unlocked

Query Parameters

action

Required Roles

  • SECURITY_ADMIN


Request Payload

No Request Payload


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
PUT  https://10.245.133.106:4443/vdc/nodes/detroit-prune.ecs.lab.emc.com/lockdown?action=unlock 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>unlock</status>
	</status>
</node>