1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /*
- * Copyright (C) Alibaba Cloud Computing
- * All rights reserved.
- *
- * 版权所有 (C)阿里云计算有限公司
- */
- namespace Aliyun.OSS.Util
- {
- internal static class RequestParameters
- {
- public const string SUBRESOURCE_ACL = "acl";
- public const string SUBRESOURCE_REFERER = "referer";
- public const string SUBRESOURCE_LOGGING = "logging";
- public const string SUBRESOURCE_WEBSITE = "website";
- public const string SUBRESOURCE_LIFECYCLE = "lifecycle";
- public const string SUBRESOURCE_UPLOADS = "uploads";
- public const string SUBRESOURCE_DELETE = "delete";
- public const string SUBRESOURCE_CORS = "cors";
-
- public const string PREFIX = "prefix";
- public const string DELIMITER = "delimiter";
- public const string MARKER = "marker";
- public const string MAX_KEYS = "max-keys";
- public const string ENCODING_TYPE = "encoding-type";
-
- public const string UPLOAD_ID = "uploadId";
- public const string PART_NUMBER = "partNumber";
- public const string MAX_UPLOADS = "max-uploads";
- public const string UPLOAD_ID_MARKER = "upload-id-marker";
- public const string KEY_MARKER = "key-marker";
- public const string MAX_PARTS = "max-parts";
- public const string PART_NUMBER_MARKER = "part-number-marker";
- public const string EXPIRES = "Expires";
- public const string SIGNATURE = "Signature";
- public const string OSS_ACCESS_KEY_ID = "OSSAccessKeyId";
-
- public const string SECURITY_TOKEN = "security-token";
- }
- }
|