12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using COSXML.Common;
- namespace COSXML.Model.Bucket
- {
- /// <summary>
- /// 删除 Bucket Lifecycle
- /// <see href="https://cloud.tencent.com/document/product/436/8284"/>
- /// </summary>
- public sealed class DeleteBucketLifecycleRequest : BucketRequest
- {
- public DeleteBucketLifecycleRequest(string bucket)
- : base(bucket)
- {
- this.method = CosRequestMethod.DELETE;
- this.queryParameters.Add("lifecycle", null);
- }
- }
- }
|