GetBucketACLRequest.cs 553 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using COSXML.Common;
  5. namespace COSXML.Model.Bucket
  6. {
  7. /// <summary>
  8. /// 获取 Bucket 的访问权限控制列表
  9. /// <see href="https://cloud.tencent.com/document/product/436/7733"/>
  10. /// </summary>
  11. public sealed class GetBucketACLRequest : BucketRequest
  12. {
  13. public GetBucketACLRequest(string bucket)
  14. : base(bucket)
  15. {
  16. this.method = CosRequestMethod.GET;
  17. this.queryParameters.Add("acl", null);
  18. }
  19. }
  20. }