tencentcloud-sdk-chdfs 1.0.227 → 1.0.228

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201112/models.rb +50 -14
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f190ccdf90637c41a458a6944b176cb753a0c0d3
4
- data.tar.gz: 4abae9eaab1669ec692f00c9699c10a09c9509e4
3
+ metadata.gz: ca846f86a8bc7c0140a834f7adcb43c16620e064
4
+ data.tar.gz: a1db518529a8180ff9d49714e824b28c8e8de576
5
5
  SHA512:
6
- metadata.gz: 99b7322008f93320cc2543a7277523c85d067c5d8f0029c9f3f9cf41a2effe6812684170b2292fd963e02787c3042abc91c49f60b982071fd059ef6d9ab4db0f
7
- data.tar.gz: 256719ee3a92f86b9424f60dbf911bad499cb7cdbed94df0f1cb2495cd54280c04c2cb5177a13f25a882949c8d5d9e1f0beed7d871f9c634259242a93b89781c
6
+ metadata.gz: 074d08b2b8d9297aee158eabc817844097ab45e2c74bcca54f38371c3b7ff08fa3138f551714704c8bd7e9c8a3a10fb2b6d12f996ae5a9c876d2643fd033bbcd
7
+ data.tar.gz: cd11191f4e017ebaa216e8605ee839f9744bc517cd7bb953486a15d38f0baa01967bea9ad87c600f8cf76ab40f00c62adb431f459ea4a621ec7750af85c6b170
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.227
1
+ 1.0.228
@@ -219,7 +219,7 @@ module TencentCloud
219
219
  class CreateFileSystemRequest < TencentCloud::Common::AbstractModel
220
220
  # @param FileSystemName: 文件系统名称
221
221
  # @type FileSystemName: String
222
- # @param CapacityQuota: 文件系统容量(byte),下限为1G,上限为1P,且必须是1G的整数倍
222
+ # @param CapacityQuota: 文件系统容量(byte),下限为1GB,上限为1PB,且必须是1GB的整数倍
223
223
  # @type CapacityQuota: Integer
224
224
  # @param PosixAcl: 是否校验POSIX ACL
225
225
  # @type PosixAcl: Boolean
@@ -231,10 +231,14 @@ module TencentCloud
231
231
  # @type RootInodeUser: String
232
232
  # @param RootInodeGroup: 根目录Inode组名,默认为supergroup
233
233
  # @type RootInodeGroup: String
234
+ # @param EnableRanger: 是否打开Ranger地址校验
235
+ # @type EnableRanger: Boolean
236
+ # @param RangerServiceAddresses: Ranger地址列表,默认为空数组
237
+ # @type RangerServiceAddresses: Array
234
238
 
235
- attr_accessor :FileSystemName, :CapacityQuota, :PosixAcl, :Description, :SuperUsers, :RootInodeUser, :RootInodeGroup
239
+ attr_accessor :FileSystemName, :CapacityQuota, :PosixAcl, :Description, :SuperUsers, :RootInodeUser, :RootInodeGroup, :EnableRanger, :RangerServiceAddresses
236
240
 
237
- def initialize(filesystemname=nil, capacityquota=nil, posixacl=nil, description=nil, superusers=nil, rootinodeuser=nil, rootinodegroup=nil)
241
+ def initialize(filesystemname=nil, capacityquota=nil, posixacl=nil, description=nil, superusers=nil, rootinodeuser=nil, rootinodegroup=nil, enableranger=nil, rangerserviceaddresses=nil)
238
242
  @FileSystemName = filesystemname
239
243
  @CapacityQuota = capacityquota
240
244
  @PosixAcl = posixacl
@@ -242,6 +246,8 @@ module TencentCloud
242
246
  @SuperUsers = superusers
243
247
  @RootInodeUser = rootinodeuser
244
248
  @RootInodeGroup = rootinodegroup
249
+ @EnableRanger = enableranger
250
+ @RangerServiceAddresses = rangerserviceaddresses
245
251
  end
246
252
 
247
253
  def deserialize(params)
@@ -252,6 +258,8 @@ module TencentCloud
252
258
  @SuperUsers = params['SuperUsers']
253
259
  @RootInodeUser = params['RootInodeUser']
254
260
  @RootInodeGroup = params['RootInodeGroup']
261
+ @EnableRanger = params['EnableRanger']
262
+ @RangerServiceAddresses = params['RangerServiceAddresses']
255
263
  end
256
264
  end
257
265
 
@@ -721,21 +729,29 @@ module TencentCloud
721
729
  class DescribeFileSystemResponse < TencentCloud::Common::AbstractModel
722
730
  # @param FileSystem: 文件系统
723
731
  # @type FileSystem: :class:`Tencentcloud::Chdfs.v20201112.models.FileSystem`
724
- # @param CapacityUsed: 已使用容量(byte),包括标准和归档存储
732
+ # @param CapacityUsed: 文件系统已使用容量(byte
725
733
  # 注意:此字段可能返回 null,表示取不到有效值。
726
734
  # @type CapacityUsed: Integer
727
- # @param ArchiveCapacityUsed: 已使用归档存储容量(byte)
735
+ # @param ArchiveCapacityUsed: 已使用COS归档存储容量(byte)
728
736
  # 注意:此字段可能返回 null,表示取不到有效值。
729
737
  # @type ArchiveCapacityUsed: Integer
738
+ # @param StandardCapacityUsed: 已使用COS标准存储容量(byte)
739
+ # 注意:此字段可能返回 null,表示取不到有效值。
740
+ # @type StandardCapacityUsed: Integer
741
+ # @param DegradeCapacityUsed: 已使用COS低频存储容量(byte)
742
+ # 注意:此字段可能返回 null,表示取不到有效值。
743
+ # @type DegradeCapacityUsed: Integer
730
744
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
731
745
  # @type RequestId: String
732
746
 
733
- attr_accessor :FileSystem, :CapacityUsed, :ArchiveCapacityUsed, :RequestId
747
+ attr_accessor :FileSystem, :CapacityUsed, :ArchiveCapacityUsed, :StandardCapacityUsed, :DegradeCapacityUsed, :RequestId
734
748
 
735
- def initialize(filesystem=nil, capacityused=nil, archivecapacityused=nil, requestid=nil)
749
+ def initialize(filesystem=nil, capacityused=nil, archivecapacityused=nil, standardcapacityused=nil, degradecapacityused=nil, requestid=nil)
736
750
  @FileSystem = filesystem
737
751
  @CapacityUsed = capacityused
738
752
  @ArchiveCapacityUsed = archivecapacityused
753
+ @StandardCapacityUsed = standardcapacityused
754
+ @DegradeCapacityUsed = degradecapacityused
739
755
  @RequestId = requestid
740
756
  end
741
757
 
@@ -746,6 +762,8 @@ module TencentCloud
746
762
  end
747
763
  @CapacityUsed = params['CapacityUsed']
748
764
  @ArchiveCapacityUsed = params['ArchiveCapacityUsed']
765
+ @StandardCapacityUsed = params['StandardCapacityUsed']
766
+ @DegradeCapacityUsed = params['DegradeCapacityUsed']
749
767
  @RequestId = params['RequestId']
750
768
  end
751
769
  end
@@ -1068,10 +1086,16 @@ module TencentCloud
1068
1086
  # @type SuperUsers: Array
1069
1087
  # @param PosixAcl: POSIX权限控制
1070
1088
  # @type PosixAcl: Boolean
1089
+ # @param EnableRanger: 是否打开Ranger地址校验
1090
+ # 注意:此字段可能返回 null,表示取不到有效值。
1091
+ # @type EnableRanger: Boolean
1092
+ # @param RangerServiceAddresses: Ranger地址列表
1093
+ # 注意:此字段可能返回 null,表示取不到有效值。
1094
+ # @type RangerServiceAddresses: Array
1071
1095
 
1072
- attr_accessor :AppId, :FileSystemName, :Description, :Region, :FileSystemId, :CreateTime, :BlockSize, :CapacityQuota, :Status, :SuperUsers, :PosixAcl
1096
+ attr_accessor :AppId, :FileSystemName, :Description, :Region, :FileSystemId, :CreateTime, :BlockSize, :CapacityQuota, :Status, :SuperUsers, :PosixAcl, :EnableRanger, :RangerServiceAddresses
1073
1097
 
1074
- def initialize(appid=nil, filesystemname=nil, description=nil, region=nil, filesystemid=nil, createtime=nil, blocksize=nil, capacityquota=nil, status=nil, superusers=nil, posixacl=nil)
1098
+ def initialize(appid=nil, filesystemname=nil, description=nil, region=nil, filesystemid=nil, createtime=nil, blocksize=nil, capacityquota=nil, status=nil, superusers=nil, posixacl=nil, enableranger=nil, rangerserviceaddresses=nil)
1075
1099
  @AppId = appid
1076
1100
  @FileSystemName = filesystemname
1077
1101
  @Description = description
@@ -1083,6 +1107,8 @@ module TencentCloud
1083
1107
  @Status = status
1084
1108
  @SuperUsers = superusers
1085
1109
  @PosixAcl = posixacl
1110
+ @EnableRanger = enableranger
1111
+ @RangerServiceAddresses = rangerserviceaddresses
1086
1112
  end
1087
1113
 
1088
1114
  def deserialize(params)
@@ -1097,6 +1123,8 @@ module TencentCloud
1097
1123
  @Status = params['Status']
1098
1124
  @SuperUsers = params['SuperUsers']
1099
1125
  @PosixAcl = params['PosixAcl']
1126
+ @EnableRanger = params['EnableRanger']
1127
+ @RangerServiceAddresses = params['RangerServiceAddresses']
1100
1128
  end
1101
1129
  end
1102
1130
 
@@ -1230,23 +1258,29 @@ module TencentCloud
1230
1258
  # @type FileSystemName: String
1231
1259
  # @param Description: 文件系统描述
1232
1260
  # @type Description: String
1233
- # @param CapacityQuota: 文件系统容量(byte),下限为1G,上限为1P,且必须是1G的整数倍
1261
+ # @param CapacityQuota: 文件系统容量(byte),下限为1GB,上限为1PB,且必须是1GB的整数倍
1234
1262
  # 注意:修改的文件系统容量不能小于当前使用量
1235
1263
  # @type CapacityQuota: Integer
1236
1264
  # @param SuperUsers: 超级用户名列表,可以为空数组
1237
1265
  # @type SuperUsers: Array
1238
1266
  # @param PosixAcl: 是否校验POSIX ACL
1239
1267
  # @type PosixAcl: Boolean
1268
+ # @param EnableRanger: 是否打开Ranger地址校验
1269
+ # @type EnableRanger: Boolean
1270
+ # @param RangerServiceAddresses: Ranger地址列表,可以为空数组
1271
+ # @type RangerServiceAddresses: Array
1240
1272
 
1241
- attr_accessor :FileSystemId, :FileSystemName, :Description, :CapacityQuota, :SuperUsers, :PosixAcl
1273
+ attr_accessor :FileSystemId, :FileSystemName, :Description, :CapacityQuota, :SuperUsers, :PosixAcl, :EnableRanger, :RangerServiceAddresses
1242
1274
 
1243
- def initialize(filesystemid=nil, filesystemname=nil, description=nil, capacityquota=nil, superusers=nil, posixacl=nil)
1275
+ def initialize(filesystemid=nil, filesystemname=nil, description=nil, capacityquota=nil, superusers=nil, posixacl=nil, enableranger=nil, rangerserviceaddresses=nil)
1244
1276
  @FileSystemId = filesystemid
1245
1277
  @FileSystemName = filesystemname
1246
1278
  @Description = description
1247
1279
  @CapacityQuota = capacityquota
1248
1280
  @SuperUsers = superusers
1249
1281
  @PosixAcl = posixacl
1282
+ @EnableRanger = enableranger
1283
+ @RangerServiceAddresses = rangerserviceaddresses
1250
1284
  end
1251
1285
 
1252
1286
  def deserialize(params)
@@ -1256,6 +1290,8 @@ module TencentCloud
1256
1290
  @CapacityQuota = params['CapacityQuota']
1257
1291
  @SuperUsers = params['SuperUsers']
1258
1292
  @PosixAcl = params['PosixAcl']
1293
+ @EnableRanger = params['EnableRanger']
1294
+ @RangerServiceAddresses = params['RangerServiceAddresses']
1259
1295
  end
1260
1296
  end
1261
1297
 
@@ -1439,7 +1475,7 @@ module TencentCloud
1439
1475
  # @type RestoreTaskId: Integer
1440
1476
  # @param FilePath: 回热任务文件路径
1441
1477
  # @type FilePath: String
1442
- # @param Type: 回热任务类型(1:标准;2:极速;3:批量)
1478
+ # @param Type: 回热任务类型(1:标准;2:极速;3:批量,暂时仅支持极速)
1443
1479
  # @type Type: Integer
1444
1480
  # @param Days: 指定恢复出的临时副本的有效时长(单位天)
1445
1481
  # @type Days: Integer
@@ -1493,7 +1529,7 @@ module TencentCloud
1493
1529
  class Transition < TencentCloud::Common::AbstractModel
1494
1530
  # @param Days: 触发时间(单位天)
1495
1531
  # @type Days: Integer
1496
- # @param Type: 转换类型(1:归档;2:删除)
1532
+ # @param Type: 转换类型(1:归档;2:删除;3:低频)
1497
1533
  # @type Type: Integer
1498
1534
 
1499
1535
  attr_accessor :Days, :Type
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-chdfs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.227
4
+ version: 1.0.228
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-20 00:00:00.000000000 Z
11
+ date: 2021-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common