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


Advanced Bucket Management Operations : Data Policy Operations : Get Data Persistence Rule

Get Data Persistence Rule
Description
Get information about the specified data persistence rule.
Requests
Syntax
GET http[s]://{datapathDNSname}/_rest_/data_persistence_rule/{data persistence rule UUID or other unique attribute}/
To determine the UUID for a data persistence rule, see Get Data Persistence Rules.
Responses
Response Elements
<Data>
   <DataPolicyId>{
string}</DataPolicyId>
   <Id>{string}</Id>
   <IsolationLevel>
      STANDARD|BUCKET_ISOLATED
   </IsolationLevel>
   <MinimumDaysToRetain>{32‑bit integer}</MinimumDaysToRetain>
   <State>NORMAL|INCLSUION_IN_PROGRESS</State>
   <StorageDomainId>{string}</StorageDomainId>
   <Type>PERMANENT|TEMPORARY|RETIRED</Type>
</Data>
where the response elements are defined as follows:
The state of the persistence rule. Value: NORMAL — The persistence rule is in a normal, included state.
§
PERMANENT — A copy of the data is placed in the specified storage domain initially and maintained there permanently.
§
RETIRED — A copy of already-written data is maintained, but the rule is not applied to new data.
§
TEMPORARY — A copy of the data is placed in the specified storage domain initially and maintained there at least until the specified retention period expires.
Example
Sample Request
This request gets information about the data persistence rule with the UUID f300563a-80c1-4d30-93f4-946928989712.
GET http://blackpearl-hostname/_rest_/data_persistence_rule/f300563a-80c1-4d30-93f4-946928989712/ HTTP/1.1
Sample Response
HTTP/1.1 200 OK
<Data>
   <DataPolicyId>
      955ed961-eaa1-4e36-a88c-4b066366ec78
   </DataPolicyId>
   <Id>f300563a-80c1-4d30-93f4-946928989712</Id>
   <IsolationLevel>STANDARD</IsolationLevel>
   <MinimumDaysToRetain/>
   <State>NORMAL</State>
   <StorageDomainId>
      eedfd905-42cb-4460-9963-5fba10625707
   </StorageDomainId>
   <Type>PERMANENT</Type>
</Data>