tencentcloud-sdk-cfs 3.0.1163 → 3.0.1197

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190719/models.rb +27 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ff2d5d444afda3f4630c29f7838ebe90c29cc388
4
- data.tar.gz: a402670c339f459058be8b340a2aad5cd4037110
3
+ metadata.gz: 2896c250256e2d744b1496ed3fd8f67e69af0703
4
+ data.tar.gz: dfdbef93d3b6239a78cd70d871b695ed8ee44720
5
5
  SHA512:
6
- metadata.gz: 6b3c1dc5a6c199d6111450e5f1f8d6d486a7bf20984f4b8e7fb801753524a37d056675a36097809fb1515d1fe81d85c3c810cecb72f788596bc82b2822a7dadd
7
- data.tar.gz: 61551611d6b1aa59031f287008717464ad989aaa25b0619c2abe04eb3bfaa5b61968c424a14c08b68d1adcd4726de3ff42d01ceaa87fb91edbc75b572fd4a173
6
+ metadata.gz: 29ff5a1f23fe00b4ec0238ece9076f512b9fc8f2342413e099455aa8b293dd6726ed8a9d49d22263743c71e4004f8eb86ef477c2eeba1f2618e18abe9c2dd0f3
7
+ data.tar.gz: 5bb643df19e2d33d9b3f14ad52f2867fe41a5a2581a6b956dc1ec15a3dd4f02b6cf509156c0b9d201543cca63ff72ef9c471384b93367c61fe26c1913e0bdcdd
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1163
1
+ 3.0.1197
@@ -132,10 +132,12 @@ module TencentCloud
132
132
  # @type IntervalDays: Integer
133
133
  # @param CrossRegionsAliveDays: 跨地域复制的快照保留时间,单位天
134
134
  # @type CrossRegionsAliveDays: Integer
135
+ # @param Tags: 快照策略标签
136
+ # @type Tags: Array
135
137
 
136
- attr_accessor :AutoSnapshotPolicyId, :PolicyName, :CreationTime, :FileSystemNums, :DayOfWeek, :Hour, :IsActivated, :NextActiveTime, :Status, :AppId, :AliveDays, :RegionName, :FileSystems, :DayOfMonth, :IntervalDays, :CrossRegionsAliveDays
138
+ attr_accessor :AutoSnapshotPolicyId, :PolicyName, :CreationTime, :FileSystemNums, :DayOfWeek, :Hour, :IsActivated, :NextActiveTime, :Status, :AppId, :AliveDays, :RegionName, :FileSystems, :DayOfMonth, :IntervalDays, :CrossRegionsAliveDays, :Tags
137
139
 
138
- def initialize(autosnapshotpolicyid=nil, policyname=nil, creationtime=nil, filesystemnums=nil, dayofweek=nil, hour=nil, isactivated=nil, nextactivetime=nil, status=nil, appid=nil, alivedays=nil, regionname=nil, filesystems=nil, dayofmonth=nil, intervaldays=nil, crossregionsalivedays=nil)
140
+ def initialize(autosnapshotpolicyid=nil, policyname=nil, creationtime=nil, filesystemnums=nil, dayofweek=nil, hour=nil, isactivated=nil, nextactivetime=nil, status=nil, appid=nil, alivedays=nil, regionname=nil, filesystems=nil, dayofmonth=nil, intervaldays=nil, crossregionsalivedays=nil, tags=nil)
139
141
  @AutoSnapshotPolicyId = autosnapshotpolicyid
140
142
  @PolicyName = policyname
141
143
  @CreationTime = creationtime
@@ -152,6 +154,7 @@ module TencentCloud
152
154
  @DayOfMonth = dayofmonth
153
155
  @IntervalDays = intervaldays
154
156
  @CrossRegionsAliveDays = crossregionsalivedays
157
+ @Tags = tags
155
158
  end
156
159
 
157
160
  def deserialize(params)
@@ -178,6 +181,14 @@ module TencentCloud
178
181
  @DayOfMonth = params['DayOfMonth']
179
182
  @IntervalDays = params['IntervalDays']
180
183
  @CrossRegionsAliveDays = params['CrossRegionsAliveDays']
184
+ unless params['Tags'].nil?
185
+ @Tags = []
186
+ params['Tags'].each do |i|
187
+ taginfo_tmp = TagInfo.new
188
+ taginfo_tmp.deserialize(i)
189
+ @Tags << taginfo_tmp
190
+ end
191
+ end
181
192
  end
182
193
  end
183
194
 
@@ -460,16 +471,19 @@ module TencentCloud
460
471
  # @type DayOfMonth: String
461
472
  # @param IntervalDays: 间隔天数,与DayOfWeek,DayOfMonth 三者选一
462
473
  # @type IntervalDays: Integer
474
+ # @param ResourceTags: 快照策略标签
475
+ # @type ResourceTags: Array
463
476
 
464
- attr_accessor :Hour, :PolicyName, :DayOfWeek, :AliveDays, :DayOfMonth, :IntervalDays
477
+ attr_accessor :Hour, :PolicyName, :DayOfWeek, :AliveDays, :DayOfMonth, :IntervalDays, :ResourceTags
465
478
 
466
- def initialize(hour=nil, policyname=nil, dayofweek=nil, alivedays=nil, dayofmonth=nil, intervaldays=nil)
479
+ def initialize(hour=nil, policyname=nil, dayofweek=nil, alivedays=nil, dayofmonth=nil, intervaldays=nil, resourcetags=nil)
467
480
  @Hour = hour
468
481
  @PolicyName = policyname
469
482
  @DayOfWeek = dayofweek
470
483
  @AliveDays = alivedays
471
484
  @DayOfMonth = dayofmonth
472
485
  @IntervalDays = intervaldays
486
+ @ResourceTags = resourcetags
473
487
  end
474
488
 
475
489
  def deserialize(params)
@@ -479,6 +493,14 @@ module TencentCloud
479
493
  @AliveDays = params['AliveDays']
480
494
  @DayOfMonth = params['DayOfMonth']
481
495
  @IntervalDays = params['IntervalDays']
496
+ unless params['ResourceTags'].nil?
497
+ @ResourceTags = []
498
+ params['ResourceTags'].each do |i|
499
+ taginfo_tmp = TagInfo.new
500
+ taginfo_tmp.deserialize(i)
501
+ @ResourceTags << taginfo_tmp
502
+ end
503
+ end
482
504
  end
483
505
  end
484
506
 
@@ -4106,7 +4128,7 @@ module TencentCloud
4106
4128
  class UpdateCfsFileSystemSizeLimitRequest < TencentCloud::Common::AbstractModel
4107
4129
  # @param FsLimit: 文件系统容量限制大小,输入范围0-1073741824, 单位为GB;其中输入值为0时,表示不限制文件系统容量。
4108
4130
  # @type FsLimit: Integer
4109
- # @param FileSystemId: 文件系统ID,目前仅支持标准型文件系统。该参数通过查询文件系统列表获取
4131
+ # @param FileSystemId: 文件系统 ID,此功能需要开白使用,请[提交工单](https://console.cloud.tencent.com/workorder/category?from=ticket-tab)进行申请。当前仅支持通用标准型文件系统设置存储容量上限。该参数通过[查询文件系统](https://cloud.tencent.com/document/product/582/38170)获取。
4110
4132
  # @type FileSystemId: String
4111
4133
 
4112
4134
  attr_accessor :FsLimit, :FileSystemId
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cfs
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1163
4
+ version: 3.0.1197
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-11-06 00:00:00.000000000 Z
11
+ date: 2026-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common