This document provides an overview of APIs and SDK code samples related to restoring an archived object.
API | Operation | Description |
---|---|---|
POST Object restore | Restoring an archived object | Restores an archived object for access |
For the parameters and method descriptions of all the APIs in the SDK, see Api Documentation.
This API is used to retrieve an archived object for access.
try
{
string bucket = "examplebucket-1250000000"; // Bucket in the format: BucketName-APPID
string key = "exampleobject"; // Object key
RestoreObjectRequest request = new RestoreObjectRequest(bucket, key);
// Validity duration of the restored copy
request.SetExpireDays(3);
request.SetTier(COSXML.Model.Tag.RestoreConfigure.Tier.Bulk);
// Execute the request
RestoreObjectResult result = cosXml.RestoreObject(request);
// Request succeeded
Console.WriteLine(result.GetResultInfo());
}
catch (COSXML.CosException.CosClientException clientEx)
{
// Request failed
Console.WriteLine("CosClientException: " + clientEx);
}
catch (COSXML.CosException.CosServerException serverEx)
{
// Request failed
Console.WriteLine("CosServerException: " + serverEx.GetInfo());
}
Note:
For the complete sample, go to GitHub.
Was this page helpful?