Skip to end of metadata
Go to start of metadata

Use the deleteDeviceFromDiskSafe API to remove a device from a Disk Safe.

########====CDP Server Configuration Start====######## #set CDP server host name $HOST="10.230.131.25"; #set CDP server to access API $PORT="9443"; #set CDP user $USER="admin"; #set CDP user password $PASS="admin"; ########====CDP Server Configuration End====######## #sample Device class Class Device{ public $contentID; public $mountPoint; public $enabled; } $newDevice = new Device(); $newDevice->mountPoint = "/extraDisk"; $newDevice->enabled = true; #sample DiskSafe class Class DiskSafe{ public $id; public $diskSafeAttributeMap; } $diskSafe = new DiskSafe(); $diskSafe->id = "0bd90c9b-fc2c-44ed-8716-2429f98a4e7b";# example disksafe id $diskSafe->diskSafeAttributeMap =array(); #Remove a device from a disk safe. try{ $client = new soapclient("https://$HOST:$PORT/DiskSafe?wsdl", array('login'=>"$USER", 'password'=>"$PASS", 'trace'=>1 ) ); $response = $client->deleteDeviceFromDiskSafe(array('diskSafe'=>$diskSafe, 'device'=>$newDevice)) ; var_dump($response); echo "Successfully executed deleteDeviceFromDiskSafe\n"; } catch (SoapFault $exception) { echo $exception; }

Labels:
None
Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.