API | Operation | Description |
Setting bucket tags | Sets tags for an existing bucket | |
Querying bucket tags | Queries the existing tags of a bucket | |
Deleting bucket tags | Deletes the tags of a bucket |
try{// Bucket name in the format of bucketname-APPID. You can get APPID by referring to https://console.tencentcloud.com/developer.string bucket = "examplebucket-1250000000";PutBucketTaggingRequest request = new PutBucketTaggingRequest(bucket);string akey = "aTagKey";string avalue = "aTagValue";string bkey = "bTagKey";string bvalue = "bTagValue";request.AddTag(akey, avalue);request.AddTag(bkey, bvalue);// Execute the requestPutBucketTaggingResult result = cosXml.PutBucketTagging(request);// Request succeededConsole.WriteLine(result.GetResultInfo());}catch (COSXML.CosException.CosClientException clientEx){// Request failedConsole.WriteLine("CosClientException: " + clientEx);}catch (COSXML.CosException.CosServerException serverEx){// Request failedConsole.WriteLine("CosServerException: " + serverEx.GetInfo());}
try{// Bucket name in the format of bucketname-APPID. You can get APPID by referring to https://console.tencentcloud.com/developer.string bucket = "examplebucket-1250000000";GetBucketTaggingRequest request = new GetBucketTaggingRequest(bucket);// Execute the requestGetBucketTaggingResult result = cosXml.GetBucketTagging(request);// Request succeededTagging tagging = result.tagging;Console.WriteLine(tagging);}catch (COSXML.CosException.CosClientException clientEx){// Request failedConsole.WriteLine("CosClientException: " + clientEx);}catch (COSXML.CosException.CosServerException serverEx){// Request failedConsole.WriteLine("CosServerException: " + serverEx.GetInfo());}
try{// Bucket name in the format of bucketname-APPID. You can get APPID by referring to https://console.tencentcloud.com/developer.string bucket = "examplebucket-1250000000";DeleteBucketTaggingRequest request = new DeleteBucketTaggingRequest(bucket);// Execute the requestDeleteBucketTaggingResult result = cosXml.DeleteBucketTagging(request);// Request succeededConsole.WriteLine(result.GetResultInfo());}catch (COSXML.CosException.CosClientException clientEx){// Request failedConsole.WriteLine("CosClientException: " + clientEx);}catch (COSXML.CosException.CosServerException serverEx){// Request failedConsole.WriteLine("CosServerException: " + serverEx.GetInfo());}
Was this page helpful?