To check your Bucket name, you can follow these steps depending on the cloud storage service you are using. A Bucket is a container for storing objects in cloud storage services like Tencent Cloud Object Storage (COS).
If you are using Tencent Cloud COS, you can also use the COS Console or API/SDK to programmatically list your Buckets. For example, using the COS Python SDK:
from qcloud_cos import CosConfig, CosS3Client
config = CosConfig(Region="ap-guangzhou", SecretId="YOUR_SECRET_ID", SecretKey="YOUR_SECRET_KEY")
client = CosS3Client(config)
response = client.list_buckets()
for bucket in response['Buckets']:
print(bucket['Name'])
This will print all your Bucket names.
For more details, refer to the Tencent Cloud COS documentation.