API Guide

Table Of Contents
3.9.4. Deletes a single Device
DELETE /clusters/{cluster_name}/devices/{name}
Parameters
Type Name Description Schema
Path
cluster_name
required
The name of the cluster string
Path
name
required
The name of a specific instance of the resource string
Responses
HTTP
Code
Description Schema
204 Deleted No Content
3.9.5. Update attributes of a local device
PATCH /clusters/{cluster_name}/devices/{name}
Description
Patchable operations:
* name
* transfer_size
* attach_operation_payload
* {"op": "add", "path": "/legs", "value": <device_uri>}
* {"op": "add", "path": "/legs", "value": <extent_uri>}
* detach_operation_payload
* {"op": "remove", "path": "/legs", "value": <device_uri>}
* {"op": "remove", "path": "/legs", "value": <extent_uri>}
Parameters
Type Name Description Schema
Path
cluster_name
required
The name of the cluster string
Path
name
required
string
Body
local_device_p
atch_payload
required
< JsonPatchOp >
array
33