This document provides an overview of APIs and SDK code samples related to versioning.
API | Operation | Description |
---|---|---|
PUT Bucket versioning | Setting versioning | Sets versioning for a bucket |
GET Bucket versioning | Querying versioning | Queries the versioning information of a bucket |
For parameters and method description of all APIs in the SDK, please see SDK API Reference.
This API is used to set the versioning configuration of a specified bucket. Once enabled, versioning can only be suspended but not disabled.
Objective-C
// Enable versioning
QCloudPutBucketVersioningRequest* request = [[QCloudPutBucketVersioningRequest alloc] init];
// Bucket name in the format of BucketName-Appid, which can be viewed in the COS console at https://console.cloud.tencent.com/cos5/bucket
request.bucket =@"examplebucket-1250000000";
// Specific versioning configuration
QCloudBucketVersioningConfiguration* versioningConfiguration =
[[QCloudBucketVersioningConfiguration alloc] init];
request.configuration = versioningConfiguration;
// Indicate whether versioning is enabled. Enumerated values: QCloudCOSBucketVersioningStatusEnabled,
// QCloudCOSBucketVersioningStatusSuspended
versioningConfiguration.status = QCloudCOSBucketVersioningStatusEnabled;
[request setFinishBlock:^(id outputObject, NSError* error) {
// `outputObject` contains all the HTTP response headers
NSDictionary* info = (NSDictionary *) outputObject;
}];
[[QCloudCOSXMLService defaultCOSXML] PutBucketVersioning:request];
Note:For the complete sample, go to GitHub.
Swift
// Enable versioning
let putBucketVersioning = QCloudPutBucketVersioningRequest.init();
// Bucket name in the format of BucketName-Appid, which can be viewed in the COS console at https://console.intl.cloud.tencent.com/cos5/bucket
putBucketVersioning.bucket = "examplebucket-1250000000";
// Specific versioning configuration
let config = QCloudBucketVersioningConfiguration.init();
// Indicates whether versioning is enabled. Enumerated values: Suspended, Enabled
config.status = .enabled;
putBucketVersioning.configuration = config;
putBucketVersioning.finishBlock = {(result,error) in
if let result = result {
// "result" contains response headers.
} else {
print(error!);
}
}
QCloudCOSXMLService.defaultCOSXML().putBucketVersioning(putBucketVersioning);
Note:For the complete sample, go to GitHub.
This API is used to query the versioning configuration of a specified bucket.
Objective-C
QCloudGetBucketVersioningRequest* request =
[[QCloudGetBucketVersioningRequest alloc] init];
// Bucket name in the format of BucketName-Appid, which can be viewed in the COS console at https://console.cloud.tencent.com/cos5/bucket
request.bucket = @"examplebucket-1250000000";
[request setFinishBlock:^(QCloudBucketVersioningConfiguration* result,
NSError* error) {
// Get the versioning status
QCloudCOSBucketVersioningStatus * status = result.status;
}];
[[QCloudCOSXMLService defaultCOSXML] GetBucketVersioning:request];
Note:For the complete sample, go to GitHub.
Swift
let getBucketVersioning = QCloudGetBucketVersioningRequest.init();
// Bucket name in the format of BucketName-Appid, which can be viewed in the COS console at https://console.intl.cloud.tencent.com/cos5/bucket
getBucketVersioning.bucket = "examplebucket-1250000000";
getBucketVersioning.setFinish { (config, error) in
if let config = config {
// Versioning status
let status = config.status
} else {
print(error!);
}
}
QCloudCOSXMLService.defaultCOSXML().getBucketVersioning(getBucketVersioning);
Note:For the complete sample, go to GitHub.
Apakah halaman ini membantu?