首次推送
This commit is contained in:
34
COSXML/Common/CosStorageClass.cs
Normal file
34
COSXML/Common/CosStorageClass.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
using System.Text;
|
||||
using COSXML.Common;
|
||||
using COSXML.Utils;
|
||||
/**
|
||||
* Copyright (c) 2018 Tencent Cloud. All rights reserved.
|
||||
* 11/2/2018 1:58:05 PM
|
||||
* bradyxiao
|
||||
*/
|
||||
namespace COSXML.Common
|
||||
{
|
||||
public enum CosStorageClass
|
||||
{
|
||||
/// <summary>
|
||||
/// 标准储存
|
||||
/// </summary>
|
||||
[CosValue("Standard")]
|
||||
STANDARD = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 低频存储
|
||||
/// </summary>
|
||||
[CosValue("Standard_IA")]
|
||||
STANDARD_IA = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 归档储存
|
||||
/// </summary>
|
||||
[CosValue("ARCHIVE")]
|
||||
ARCHIVE
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user