tencentcloud-sdk-chdfs 3.0.968 → 3.0.969
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 +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: 863881c950277ca5a616255ffd531ddab177b272
|
4
|
+
data.tar.gz: 99f78ba4a07b140f9513bd9332d7e2ec575b7a41
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0af6bdd6816ecdf4ca5af4c2d82573e99589612edb2f40fd056364f578be29526eb5fa71e25a0a4399ead46e2c395d156f84a371670e2ed3fd084d6cf7e8cf5a
|
7
|
+
data.tar.gz: d68d64d2f6d6e2c801bb220fa581388684bc3e3bc396be3667a9a99a82447828de94542360d0342db14f58c1a9208bf6e370719b2bf93ec57a03f0ab251c8d20
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.969
|
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.969
|
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-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|