Modify Pool Partition Description Modify the name of the specified pool partition. Requests Syntax PUT http[s]://{datapathDNSname}/_rest_/pool_partition/{pool_partition_id}/[?name={string}] To determine the UUID for a pool partition, see Get Pool Partitions. Request Parameters Parameter Description Required name The new name to assign to the pool partition. no Responses Response Elements <Data> <Id>{string}</Id> <Name>{string}</Name> <Type>NEARLINE|ONLINE</State></Data> where the response elements are defined as follows: Parameter Description Data The container for the response. Id The UUID for the partition. Name The name of the partition. Type The type of pool. Values: NEARLINE (ArcticBlue), ONLINE (SAS) Example Sample Request This request changes the name of the pool partition from ‘p1’ to ‘MoviePartition’. PUT http://blackpearl-hostname/_rest_/pool_partition/p1/ ?name=MoviePartition HTTP/1.1 Sample Response HTTP/1.1 200 OK<Data> <Id>2c6e4f83-c3d6-4a7b-bc1c-069e6ac7670f</Id> <Name>MoviePartition</Name> <Type>NEARLINE</Type></Data>