tencentcloud-sdk-chdfs 1.0.226 → 1.0.230
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201112/models.rb +50 -14
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 42f75c9d6c1a0aa1b31444d5e560e365defbce34
|
4
|
+
data.tar.gz: 19bf2dc4354f7d02101b4e07c2e32d901c457e9e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83ab55c098a6cb7eb6f0b18b7feef7fef5ad9191a69cd1e6af60c81fa7b3a0159156df37852328e6c75a3ca493b5fc3e65e1fbb3f0461b166aef580658358189
|
7
|
+
data.tar.gz: 2fb6905b430f3ce0b9ce3ae250910f94bde167ef773704081368387fd97e067442bad68640465414f90303287ae202295e55495645a4d759820436cc16f4c2d7
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.230
|
data/lib/v20201112/models.rb
CHANGED
@@ -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),下限为
|
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:
|
732
|
+
# @param CapacityUsed: 文件系统已使用容量(byte)
|
725
733
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
726
734
|
# @type CapacityUsed: Integer
|
727
|
-
# @param ArchiveCapacityUsed:
|
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),下限为
|
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.
|
4
|
+
version: 1.0.230
|
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-
|
11
|
+
date: 2021-12-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|