tencent cloud

masukan

Bucket Operations

Terakhir diperbarui:2023-02-23 16:33:22

    Feature Overview

    This document provides an overview of APIs and SDK code samples related to basic bucket operations.

    Note:

    API Operation Description
    GET Service (List Buckets) Querying the bucket list Queries the list of all buckets under a specified account
    PUT Bucket Creating a bucket Creates a bucket under a specified account
    HEAD Bucket Checking a bucket and its permissions Checks whether a bucket exists and whether you have permission to access it
    DELETE Bucket Deleting a bucket Deletes an empty bucket under a specified account

    Querying a Bucket List

    Feature description

    This API is used to query the list of all buckets under a specified account.

    Method prototype

    public List<Bucket> listBuckets() throws CosClientException, CosServiceException;
    

    Sample request

    // If you only call the “listBuckets” method, set the region to new Region("") when creating cosClient.
    List<Bucket> buckets = cosClient.listBuckets();
    for (Bucket bucketElement : buckets) {
        String bucketName = bucketElement.getName();
        String bucketLocation = bucketElement.getLocation();
    }
    

    Field description

    None.

    Response description

    • Success: A list of all bucket classes will be returned. The bucket class contains information about bucket members, location, and more.
    • Failure: An error (such as the bucket does not exist) occurs, throwing the "CosClientException" or "CosServiceException" exception. For more information, see Troubleshooting.

    Creating a Bucket

    Feature description

    This API is used to create a bucket under the specified account. You can create multiple buckets under the same user account. The maximum number is 200 (regardless of region). There is no limit to the number of objects in the bucket. Bucket creation is a low-frequency operation. We recommended you create a bucket in the console and perform object operations in the SDK.

    Method prototype

    public Bucket createBucket(String bucketName) throws CosClientException, CosServiceException;
    

    Sample request

    String bucket = "examplebucket-1250000000"; // Bucket, formatted as BucketName-APPID
    CreateBucketRequest createBucketRequest = new CreateBucketRequest(bucket);
    // Set the bucket permission to Private (private read/write). Other options include public read/private write and public read/write.
    createBucketRequest.setCannedAcl(CannedAccessControlList.Private);
    Bucket bucketResult = cosClient.createBucket(createBucketRequest);
    

    Field description

    Parameter Description Type
    bucketName Bucket name, formatted as BucketName-APPID. For more information, see Bucket Overview. String

    Response description

    • Success**: the bucket class, including the bucket description (bucket name, owner, and creation date).
    • Failure: An error (such as authentication failure) occurs, throwing the "CosClientException" or "CosServiceException" exception. For more information, see Troubleshooting.

    Checking a Bucket and Its Permissions

    Feature description

    This API is used to check whether a bucket exists and whether you have permission to access it.

    Method prototype

    public boolean doesBucketExist(String bucketName) 
      throws CosClientException, CosServiceException;
    

    Sample request

    The bucket name entered must be in the format of `BucketName-APPID`.
    String bucketName = "examplebucket-1250000000";
    boolean bucketExistFlag = cosClient.doesBucketExist(bucketName);
    

    Field description

    Parameter Description Type
    bucketName Bucket name, formatted as BucketName-APPID. For more information, see Bucket Overview. String

    Response description

    • Success: returns true if the bucket exists. Otherwise, false is returned.
    • Failure: If an error (such as authentication failure) occurs, the CosClientException or CosServiceException exception will be reported. For more information, see Troubleshooting.

    Deleting a Bucket

    Feature description

    This API is used to delete an empty bucket under a specified account.

    Method prototype

    public void deleteBucket(String bucketName) throws CosClientException, CosServiceException;
    

    Sample request

    The bucket name entered must be in the format of `BucketName-APPID`.
    String bucketName = "examplebucket-1250000000";
    cosClient.deleteBucket(bucketName);
    

    Field description

    Parameter Description Type
    bucketName Bucket name, formatted as BucketName-APPID. For more information, see Bucket Overview. String

    Response description

    • Success: No value is returned.
    • Failure: If an error (such as authentication failure) occurs, the CosClientException or CosServiceException exception will be reported. For more information, see Troubleshooting.
    Hubungi Kami

    Hubungi tim penjualan atau penasihat bisnis kami untuk membantu bisnis Anda.

    Dukungan Teknis

    Buka tiket jika Anda mencari bantuan lebih lanjut. Tiket kami tersedia 7x24.

    Dukungan Telepon 7x24