tencentcloud-sdk-chdfs 3.0.575 → 3.0.577
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 +55 -2
- 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: 6c402bf75c2f07fa9704887a5d7647f5d7552cbf
|
4
|
+
data.tar.gz: 1bedce7b17ff05d5913a489c456c0dc636700db9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d426fa9aa3ec601d4b109bf1c19aa5b325ad6b1e2b8b66f2418fd449a9a0882b28e4aabe0b8659db019cd84eda2dbfd6b8a37a986995df4009020c4f6b19968d
|
7
|
+
data.tar.gz: b9c6e2190ae03e886d69290ad845b1318b04ec8480ddbb8040239dfda46736815a2d79776c5a8bfabe164d34fb07ba4ed0817b46fac15eb98a4c358402cc4611
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.577
|
data/lib/v20201112/models.rb
CHANGED
@@ -1175,16 +1175,22 @@ module TencentCloud
|
|
1175
1175
|
# @type Status: Integer
|
1176
1176
|
# @param CreateTime: 创建时间
|
1177
1177
|
# @type CreateTime: String
|
1178
|
+
# @param Summary: 生命周期规则当前路径具体存储量
|
1179
|
+
# @type Summary: :class:`Tencentcloud::Chdfs.v20201112.models.Summary`
|
1180
|
+
# @param LastSummaryTime: Summary更新时间
|
1181
|
+
# @type LastSummaryTime: String
|
1178
1182
|
|
1179
|
-
attr_accessor :LifeCycleRuleId, :LifeCycleRuleName, :Path, :Transitions, :Status, :CreateTime
|
1183
|
+
attr_accessor :LifeCycleRuleId, :LifeCycleRuleName, :Path, :Transitions, :Status, :CreateTime, :Summary, :LastSummaryTime
|
1180
1184
|
|
1181
|
-
def initialize(lifecycleruleid=nil, lifecyclerulename=nil, path=nil, transitions=nil, status=nil, createtime=nil)
|
1185
|
+
def initialize(lifecycleruleid=nil, lifecyclerulename=nil, path=nil, transitions=nil, status=nil, createtime=nil, summary=nil, lastsummarytime=nil)
|
1182
1186
|
@LifeCycleRuleId = lifecycleruleid
|
1183
1187
|
@LifeCycleRuleName = lifecyclerulename
|
1184
1188
|
@Path = path
|
1185
1189
|
@Transitions = transitions
|
1186
1190
|
@Status = status
|
1187
1191
|
@CreateTime = createtime
|
1192
|
+
@Summary = summary
|
1193
|
+
@LastSummaryTime = lastsummarytime
|
1188
1194
|
end
|
1189
1195
|
|
1190
1196
|
def deserialize(params)
|
@@ -1201,6 +1207,11 @@ module TencentCloud
|
|
1201
1207
|
end
|
1202
1208
|
@Status = params['Status']
|
1203
1209
|
@CreateTime = params['CreateTime']
|
1210
|
+
unless params['Summary'].nil?
|
1211
|
+
@Summary = Summary.new
|
1212
|
+
@Summary.deserialize(params['Summary'])
|
1213
|
+
end
|
1214
|
+
@LastSummaryTime = params['LastSummaryTime']
|
1204
1215
|
end
|
1205
1216
|
end
|
1206
1217
|
|
@@ -1538,6 +1549,48 @@ module TencentCloud
|
|
1538
1549
|
end
|
1539
1550
|
end
|
1540
1551
|
|
1552
|
+
# 生命周期规则当前路径具体存储量信息
|
1553
|
+
class Summary < TencentCloud::Common::AbstractModel
|
1554
|
+
# @param CapacityUsed: 总存储量(单位byte)
|
1555
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1556
|
+
# @type CapacityUsed: Integer
|
1557
|
+
# @param StandardCapacityUsed: 标准存储量(单位byte)
|
1558
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1559
|
+
# @type StandardCapacityUsed: Integer
|
1560
|
+
# @param DegradeCapacityUsed: 低频存储量(单位byte)
|
1561
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1562
|
+
# @type DegradeCapacityUsed: Integer
|
1563
|
+
# @param ArchiveCapacityUsed: 归档存储量(单位byte)
|
1564
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1565
|
+
# @type ArchiveCapacityUsed: Integer
|
1566
|
+
# @param DeepArchiveCapacityUsed: 深度归档存储量(单位byte)
|
1567
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1568
|
+
# @type DeepArchiveCapacityUsed: Integer
|
1569
|
+
# @param IntelligentCapacityUsed: 智能分层存储量(单位byte)
|
1570
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1571
|
+
# @type IntelligentCapacityUsed: Integer
|
1572
|
+
|
1573
|
+
attr_accessor :CapacityUsed, :StandardCapacityUsed, :DegradeCapacityUsed, :ArchiveCapacityUsed, :DeepArchiveCapacityUsed, :IntelligentCapacityUsed
|
1574
|
+
|
1575
|
+
def initialize(capacityused=nil, standardcapacityused=nil, degradecapacityused=nil, archivecapacityused=nil, deeparchivecapacityused=nil, intelligentcapacityused=nil)
|
1576
|
+
@CapacityUsed = capacityused
|
1577
|
+
@StandardCapacityUsed = standardcapacityused
|
1578
|
+
@DegradeCapacityUsed = degradecapacityused
|
1579
|
+
@ArchiveCapacityUsed = archivecapacityused
|
1580
|
+
@DeepArchiveCapacityUsed = deeparchivecapacityused
|
1581
|
+
@IntelligentCapacityUsed = intelligentcapacityused
|
1582
|
+
end
|
1583
|
+
|
1584
|
+
def deserialize(params)
|
1585
|
+
@CapacityUsed = params['CapacityUsed']
|
1586
|
+
@StandardCapacityUsed = params['StandardCapacityUsed']
|
1587
|
+
@DegradeCapacityUsed = params['DegradeCapacityUsed']
|
1588
|
+
@ArchiveCapacityUsed = params['ArchiveCapacityUsed']
|
1589
|
+
@DeepArchiveCapacityUsed = params['DeepArchiveCapacityUsed']
|
1590
|
+
@IntelligentCapacityUsed = params['IntelligentCapacityUsed']
|
1591
|
+
end
|
1592
|
+
end
|
1593
|
+
|
1541
1594
|
# 资源标签。
|
1542
1595
|
class Tag < TencentCloud::Common::AbstractModel
|
1543
1596
|
# @param Key: 标签键
|
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.577
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-05-
|
11
|
+
date: 2023-05-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|