tencentcloud-sdk-chdfs 3.0.575 → 3.0.576

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 +55 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 942fb06f093a6a36bb59aee181edba85c2b565f7
4
- data.tar.gz: 0f998a3824e34b81e67417f870085278001838ef
3
+ metadata.gz: ff23c3ca0ea1b54fbe2514092d5bf1af10d6e515
4
+ data.tar.gz: e20dcc83d9524112eda0be5e6eaa6ffff0c7c471
5
5
  SHA512:
6
- metadata.gz: 6c47fee0fc5efbfbbb5bd2b4c6ccbd425a87d4e33650d5ad9d9ba6bd849f623b68127f2db6348b42934ec3451e80ac80c3a726ed0a9fb8dddae741ad5db51e7e
7
- data.tar.gz: 4b79010ef1d7b3d80d8dfb79f336511e60be599af6c691d99090cc6bd5ee8f649a48cc02e4483cbc1db2be8ce819546912a788a216b21d47ae321ef906a8191a
6
+ metadata.gz: eeb42fd9c45456712d47d4b4dd45df12de6bf85e66699c447a16f021871120d4a6958b975fbec7ad8bb62a2add8639e878208baf1e32c4d0ac3b560fb28dc569
7
+ data.tar.gz: 68d12f542f98462315711b722949e00fcd4e003c8981c5c115be14b354b3ef9be0de74297162c84fec7a2fd70ae331e25e6ac57697f7d0a9772fb93b7837ed58
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.575
1
+ 3.0.576
@@ -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.575
4
+ version: 3.0.576
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-23 00:00:00.000000000 Z
11
+ date: 2023-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common