123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using COSXML.Common;
- namespace COSXML.Model.Bucket
- {
-
-
-
-
- public sealed class DeleteBucketPolicyRequest : BucketRequest
- {
- public DeleteBucketPolicyRequest(string bucket)
- : base(bucket)
- {
- this.method = CosRequestMethod.DELETE;
- this.queryParameters.Add("policy", null);
- }
- }
- }
|