tencentcloud-sdk-cfs 3.0.1163 → 3.0.1171
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/v20190719/models.rb +26 -4
- 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: 529468f180be7015073cb79c564eb3d2cda2c667
|
|
4
|
+
data.tar.gz: 5b8a5f902ac7174834aa3611b55798f1f925e3b4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 47006e1e864a34151a3d767cd25c930014ce614a9a7e514ced774f86d9cd7b9c08efed6f0bc59bc8d14d4a64126435194f8fd61acc726d79372bb5b0318e5306
|
|
7
|
+
data.tar.gz: c522e7bf14c72ed21024948606c4a946677a8d6d40cc60d299bb1f9fda2d7469bef3de721a14999b1373c8c68691db5ab2a05776898d06c484608d4aefd47cda
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1171
|
data/lib/v20190719/models.rb
CHANGED
|
@@ -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
|
|
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.
|
|
4
|
+
version: 3.0.1171
|
|
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-
|
|
11
|
+
date: 2025-11-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|