12345678910111213141516171819202122232425 |
- using System;
- using System.Text;
- using COSXML.Common;
- using COSXML.Model.Tag;
- using COSXML.Network;
- using COSXML.CosException;
- namespace COSXML.Model.Bucket
- {
-
-
-
-
- public sealed class GetBucketIntelligentTieringRequest : BucketRequest
- {
- public GetBucketIntelligentTieringRequest(string bucket)
- : base(bucket)
- {
- this.method = CosRequestMethod.GET;
- this.queryParameters.Add("intelligenttiering", null);
- }
- }
- }
|