Spectra Logic
1-800-833-1132 : 1-303-449-6400


Hardware Operations : Pool Operations : Create Pool Partition

Create Pool Partition
Description
Create a pool partition. A pool partition may contain any number of pools and may be added as a member of a storage domain.
Requests
Syntax
POST http[s]://{datapathDNSname}/_rest_/pool_partition?name={string}&type=NEARLINE|ONLINE
Request Parameters 
The type of pool partition to create.
Values:
NEARLINE (ArcticBlue), ONLINE (SAS)
Responses
Response Elements
<Data>
   <Id>{
string}</Id>
   <Name>{string}</Name>
   <Type>NEARLINE|ONLINE</Type>
</Data>
where the response elements are defined as follows:
The type of pool.
Values:
NEARLINE (ArcticBlue), ONLINE (SAS)
Example
Sample Request
This request creates nearline pool partition with the name ‘Nearline_Pool’.
POST http[s]://blackpearl-hostname/_rest_/pool_partition?name=Nearline_Pool&type=NEARLINE HTTP/1.1
Sample Response
HTTP/1.1 201 Created
<Data>
   <Id>31cd01db-97ae-43c7-bad1-ed7b14be3af4</Id>
   <Name>somename</Name>
   <Type>NEARLINE</Type>
</Data>