tencent cloud

All product documents
Cloud Infinite
Media Bucket APIs
Last updated: 2024-03-04 11:24:21
Media Bucket APIs
Last updated: 2024-03-04 11:24:21

Overview

This document provides an overview of APIs and SDK code samples for media buckets.
API
Operation
Description
Querying media processing activation status
Queries buckets with media processing enabled

Querying Media Processing Activation Status

Feature description

This API is used to query buckets with media processing enabled.
Note:
The DescribeMediaBuckets API is supported since v5.4.24. To download the new version of SDK, go to Releases or see Getting Started.
For the SDK version changelog, see Changelog.

Sample code

using COSXML.Model.CI;
using COSXML.Auth;
using System;
using COSXML;

namespace COSSnippet
{
public class DescribeMediaBucketModel {

private CosXml cosXml;

DescribeMediaBucketModel() {
CosXmlConfig config = new CosXmlConfig.Builder()
.SetRegion("COS_REGION") // Set the default region. For abbreviations of COS regions, visit https://intl.cloud.tencent.com/document/product/436/6224.
.Build();

string secretId = "SECRET_ID"; // TencentCloud API `SecretId`. For more information on how to get it, visit https://console.cloud.tencent.com/cam/capi.
string secretKey = "SECRET_KEY"; // TencentCloud API `SecretKey`. For more information on how to get it, visit https://console.cloud.tencent.com/cam/capi.
long durationSecond = 600; // Validity period of the request signature in seconds
QCloudCredentialProvider qCloudCredentialProvider = new DefaultQCloudCredentialProvider(secretId,
secretKey, durationSecond);

this.cosXml = new CosXmlServer(config, qCloudCredentialProvider);
}

// Get the list of buckets with CI enabled
public void DescribeMediaBucket()
{
//.cssg-snippet-body-start:[DescribeMediaBucket]
DescribeMediaBucketsRequest request = new DescribeMediaBucketsRequest();
// Execute the request
DescribeMediaBucketsResult result = cosXml.DescribeMediaBuckets(request);
Console.WriteLine(result.GetResultInfo());
// Traverse the bucket list
for (int i = 0; i < result.mediaBuckets.MediaBucketList.Count; i++)
{
Console.WriteLine(result.mediaBuckets.MediaBucketList[i].BucketId);
Console.WriteLine(result.mediaBuckets.MediaBucketList[i].Region);
Console.WriteLine(result.mediaBuckets.MediaBucketList[i].CreateTime);
}
//.cssg-snippet-body-end
}

static void Main(string[] args)
{
DescribeMediaBucketModel m = new DescribeMediaBucketModel();
// Get the list of media buckets
m.DescribeMediaBucket();
// .cssg-methods-pragma
}
}
}

Note:
For more complete samples, visit GitHub.

Was this page helpful?
You can also Contact Sales or Submit a Ticket for help.
Yes
No

Feedback

Contact Us

Contact our sales team or business advisors to help your business.

Technical Support

Open a ticket if you're looking for further assistance. Our Ticket is 7x24 avaliable.

7x24 Phone Support
Hong Kong, China
+852 800 906 020 (Toll Free)
United States
+1 844 606 0804 (Toll Free)
United Kingdom
+44 808 196 4551 (Toll Free)
Canada
+1 888 605 7930 (Toll Free)
Australia
+61 1300 986 386 (Toll Free)
EdgeOne hotline
+852 300 80699
More local hotlines coming soon