tencentcloud-sdk-chdfs 3.0.968 → 3.0.970
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201112/models.rb +6 -12
- 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: b57b117a66ad63daf17946914e62bfff330de04b
|
4
|
+
data.tar.gz: affa6826a8205ab4481dffffcd8b445ad8099bc6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ce80522fa1b13f601fa1d7137fc85399334c8baba0069898ad78cbeb7490e627a97ce04d3c8f55bd43786e3e7fd887a8675df84a3ab34ea01eb6a0fbb3d4f29
|
7
|
+
data.tar.gz: 8ad7d583c3f684a7e3f922d8ae042f39dfa7fe6da0922e56d6015c3c223f74040869486c256bb6c8a67e8327ac0e69c7f140de5b6a904a2d5e2347942ffb75e4
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.970
|
data/lib/v20201112/models.rb
CHANGED
@@ -231,12 +231,12 @@ module TencentCloud
|
|
231
231
|
class CreateFileSystemRequest < TencentCloud::Common::AbstractModel
|
232
232
|
# @param FileSystemName: 文件系统名称
|
233
233
|
# @type FileSystemName: String
|
234
|
-
# @param CapacityQuota: 文件系统容量(byte),下限为1GB,上限为1PB,且必须是1GB的整数倍
|
235
|
-
# @type CapacityQuota: Integer
|
236
234
|
# @param PosixAcl: 是否校验POSIX ACL
|
237
235
|
# @type PosixAcl: Boolean
|
238
236
|
# @param Description: 文件系统描述,默认为空字符串
|
239
237
|
# @type Description: String
|
238
|
+
# @param CapacityQuota: 文件系统容量(byte),下限为1GB,上限为1PB,且必须是1GB的整数倍
|
239
|
+
# @type CapacityQuota: Integer
|
240
240
|
# @param SuperUsers: 超级用户名列表,默认为空数组
|
241
241
|
# @type SuperUsers: Array
|
242
242
|
# @param RootInodeUser: 根目录Inode用户名,默认为hadoop
|
@@ -250,13 +250,13 @@ module TencentCloud
|
|
250
250
|
# @param Tags: 多个资源标签,可以为空数组
|
251
251
|
# @type Tags: Array
|
252
252
|
|
253
|
-
attr_accessor :FileSystemName, :
|
253
|
+
attr_accessor :FileSystemName, :PosixAcl, :Description, :CapacityQuota, :SuperUsers, :RootInodeUser, :RootInodeGroup, :EnableRanger, :RangerServiceAddresses, :Tags
|
254
254
|
|
255
|
-
def initialize(filesystemname=nil,
|
255
|
+
def initialize(filesystemname=nil, posixacl=nil, description=nil, capacityquota=nil, superusers=nil, rootinodeuser=nil, rootinodegroup=nil, enableranger=nil, rangerserviceaddresses=nil, tags=nil)
|
256
256
|
@FileSystemName = filesystemname
|
257
|
-
@CapacityQuota = capacityquota
|
258
257
|
@PosixAcl = posixacl
|
259
258
|
@Description = description
|
259
|
+
@CapacityQuota = capacityquota
|
260
260
|
@SuperUsers = superusers
|
261
261
|
@RootInodeUser = rootinodeuser
|
262
262
|
@RootInodeGroup = rootinodegroup
|
@@ -267,9 +267,9 @@ module TencentCloud
|
|
267
267
|
|
268
268
|
def deserialize(params)
|
269
269
|
@FileSystemName = params['FileSystemName']
|
270
|
-
@CapacityQuota = params['CapacityQuota']
|
271
270
|
@PosixAcl = params['PosixAcl']
|
272
271
|
@Description = params['Description']
|
272
|
+
@CapacityQuota = params['CapacityQuota']
|
273
273
|
@SuperUsers = params['SuperUsers']
|
274
274
|
@RootInodeUser = params['RootInodeUser']
|
275
275
|
@RootInodeGroup = params['RootInodeGroup']
|
@@ -1552,22 +1552,16 @@ module TencentCloud
|
|
1552
1552
|
# 生命周期规则当前路径具体存储量信息
|
1553
1553
|
class Summary < TencentCloud::Common::AbstractModel
|
1554
1554
|
# @param CapacityUsed: 已使用容量(byte)
|
1555
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1556
1555
|
# @type CapacityUsed: Integer
|
1557
1556
|
# @param StandardCapacityUsed: 已使用COS标准存储容量(byte)
|
1558
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1559
1557
|
# @type StandardCapacityUsed: Integer
|
1560
1558
|
# @param DegradeCapacityUsed: 已使用COS低频存储容量(byte)
|
1561
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1562
1559
|
# @type DegradeCapacityUsed: Integer
|
1563
1560
|
# @param ArchiveCapacityUsed: 已使用COS归档存储容量(byte)
|
1564
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1565
1561
|
# @type ArchiveCapacityUsed: Integer
|
1566
1562
|
# @param DeepArchiveCapacityUsed: 已使用COS深度归档存储容量(byte)
|
1567
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1568
1563
|
# @type DeepArchiveCapacityUsed: Integer
|
1569
1564
|
# @param IntelligentCapacityUsed: 已使用COS智能分层存储容量(byte)
|
1570
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1571
1565
|
# @type IntelligentCapacityUsed: Integer
|
1572
1566
|
|
1573
1567
|
attr_accessor :CapacityUsed, :StandardCapacityUsed, :DegradeCapacityUsed, :ArchiveCapacityUsed, :DeepArchiveCapacityUsed, :IntelligentCapacityUsed
|
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: 3.0.
|
4
|
+
version: 3.0.970
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-12-
|
11
|
+
date: 2024-12-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|