tencentcloud-sdk-cfs 3.0.534 → 3.0.536

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/v20190719/models.rb +37 -11
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 231bce2ca49e00d8ffb9aaf0e1d433038f3d2a00
4
- data.tar.gz: fd8b6699393864ff74f6a4b762c44efca5b669d7
3
+ metadata.gz: 46cb8b1b8299f2b7f99b90b670a26a490339f2bc
4
+ data.tar.gz: cad2f1d4268ad4295798ecf8e27da22eb8f5a18c
5
5
  SHA512:
6
- metadata.gz: b0c8739eaa009740d8669a9ce200069d1f165c32d2ed0473d89c4c9017c30d3f1cb9db9d2c4fa24abedddbb187a5fb809013db379e9361dfe93265bdfce96862
7
- data.tar.gz: 219332f78e42618ac96961fec2e0c18f977a4311a26059f1de3ed1300a4dc83bd3d0fadf8361e548eb147cbf3ffcad1553e57b1a2ad659a5a242c7221c717939
6
+ metadata.gz: 1f516aae95724d10b84c3c608929a7a3cee9243b912d1af855d196fb719b2485d764918ae130e76baea58735ce909f3a940b3ebe2df11dfa47267fd1f958c8e5
7
+ data.tar.gz: c66db1c0101395d0967906e23cb107df60837f872d2e12fec0f1afccc9c4c9e79667343df15bcd56506bfdc0481e669656e305215d50cf01b943ab039a656641
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.534
1
+ 3.0.536
@@ -27,7 +27,7 @@ module TencentCloud
27
27
  # @type CreationTime: String
28
28
  # @param FileSystemNums: 关联的文件系统个数
29
29
  # @type FileSystemNums: Integer
30
- # @param DayOfWeek: 快照定期备份在一星期哪一天
30
+ # @param DayOfWeek: 快照定期备份在一星期哪一天,该参数与DayOfMonth,IntervalDays互斥
31
31
  # @type DayOfWeek: String
32
32
  # @param Hour: 快照定期备份在一天的哪一小时
33
33
  # @type Hour: String
@@ -45,10 +45,16 @@ module TencentCloud
45
45
  # @type RegionName: String
46
46
  # @param FileSystems: 文件系统信息
47
47
  # @type FileSystems: Array
48
+ # @param DayOfMonth: 快照定期备份在一个月的某个时间;该参数与DayOfWeek,IntervalDays互斥
49
+ # 注意:此字段可能返回 null,表示取不到有效值。
50
+ # @type DayOfMonth: String
51
+ # @param IntervalDays: 快照定期间隔天数,1-365 天;该参数与DayOfMonth,DayOfWeek互斥
52
+ # 注意:此字段可能返回 null,表示取不到有效值。
53
+ # @type IntervalDays: Integer
48
54
 
49
- attr_accessor :AutoSnapshotPolicyId, :PolicyName, :CreationTime, :FileSystemNums, :DayOfWeek, :Hour, :IsActivated, :NextActiveTime, :Status, :AppId, :AliveDays, :RegionName, :FileSystems
55
+ attr_accessor :AutoSnapshotPolicyId, :PolicyName, :CreationTime, :FileSystemNums, :DayOfWeek, :Hour, :IsActivated, :NextActiveTime, :Status, :AppId, :AliveDays, :RegionName, :FileSystems, :DayOfMonth, :IntervalDays
50
56
 
51
- 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)
57
+ 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)
52
58
  @AutoSnapshotPolicyId = autosnapshotpolicyid
53
59
  @PolicyName = policyname
54
60
  @CreationTime = creationtime
@@ -62,6 +68,8 @@ module TencentCloud
62
68
  @AliveDays = alivedays
63
69
  @RegionName = regionname
64
70
  @FileSystems = filesystems
71
+ @DayOfMonth = dayofmonth
72
+ @IntervalDays = intervaldays
65
73
  end
66
74
 
67
75
  def deserialize(params)
@@ -85,6 +93,8 @@ module TencentCloud
85
93
  @FileSystems << filesystembypolicy_tmp
86
94
  end
87
95
  end
96
+ @DayOfMonth = params['DayOfMonth']
97
+ @IntervalDays = params['IntervalDays']
88
98
  end
89
99
  end
90
100
 
@@ -259,29 +269,37 @@ module TencentCloud
259
269
 
260
270
  # CreateAutoSnapshotPolicy请求参数结构体
261
271
  class CreateAutoSnapshotPolicyRequest < TencentCloud::Common::AbstractModel
262
- # @param DayOfWeek: 快照重复日期,星期一到星期日
263
- # @type DayOfWeek: String
264
272
  # @param Hour: 快照重复时间点
265
273
  # @type Hour: String
266
274
  # @param PolicyName: 策略名称
267
275
  # @type PolicyName: String
276
+ # @param DayOfWeek: 快照重复日期,星期一到星期日
277
+ # @type DayOfWeek: String
268
278
  # @param AliveDays: 快照保留时长
269
279
  # @type AliveDays: Integer
280
+ # @param DayOfMonth: 快照按月重复,每月1-31号,选择一天,每月这一天打快照。
281
+ # @type DayOfMonth: String
282
+ # @param IntervalDays: 间隔天数
283
+ # @type IntervalDays: Integer
270
284
 
271
- attr_accessor :DayOfWeek, :Hour, :PolicyName, :AliveDays
285
+ attr_accessor :Hour, :PolicyName, :DayOfWeek, :AliveDays, :DayOfMonth, :IntervalDays
272
286
 
273
- def initialize(dayofweek=nil, hour=nil, policyname=nil, alivedays=nil)
274
- @DayOfWeek = dayofweek
287
+ def initialize(hour=nil, policyname=nil, dayofweek=nil, alivedays=nil, dayofmonth=nil, intervaldays=nil)
275
288
  @Hour = hour
276
289
  @PolicyName = policyname
290
+ @DayOfWeek = dayofweek
277
291
  @AliveDays = alivedays
292
+ @DayOfMonth = dayofmonth
293
+ @IntervalDays = intervaldays
278
294
  end
279
295
 
280
296
  def deserialize(params)
281
- @DayOfWeek = params['DayOfWeek']
282
297
  @Hour = params['Hour']
283
298
  @PolicyName = params['PolicyName']
299
+ @DayOfWeek = params['DayOfWeek']
284
300
  @AliveDays = params['AliveDays']
301
+ @DayOfMonth = params['DayOfMonth']
302
+ @IntervalDays = params['IntervalDays']
285
303
  end
286
304
  end
287
305
 
@@ -2132,16 +2150,22 @@ module TencentCloud
2132
2150
  # @type AliveDays: Integer
2133
2151
  # @param IsActivated: 是否激活定期快照功能
2134
2152
  # @type IsActivated: Integer
2153
+ # @param DayOfMonth: 定期快照在月的某几天天,该参数与DayOfWeek互斥
2154
+ # @type DayOfMonth: String
2155
+ # @param IntervalDays: 间隔天数定期执行快照,该参数与DayOfWeek,DayOfMonth 互斥
2156
+ # @type IntervalDays: Integer
2135
2157
 
2136
- attr_accessor :AutoSnapshotPolicyId, :PolicyName, :DayOfWeek, :Hour, :AliveDays, :IsActivated
2158
+ attr_accessor :AutoSnapshotPolicyId, :PolicyName, :DayOfWeek, :Hour, :AliveDays, :IsActivated, :DayOfMonth, :IntervalDays
2137
2159
 
2138
- def initialize(autosnapshotpolicyid=nil, policyname=nil, dayofweek=nil, hour=nil, alivedays=nil, isactivated=nil)
2160
+ def initialize(autosnapshotpolicyid=nil, policyname=nil, dayofweek=nil, hour=nil, alivedays=nil, isactivated=nil, dayofmonth=nil, intervaldays=nil)
2139
2161
  @AutoSnapshotPolicyId = autosnapshotpolicyid
2140
2162
  @PolicyName = policyname
2141
2163
  @DayOfWeek = dayofweek
2142
2164
  @Hour = hour
2143
2165
  @AliveDays = alivedays
2144
2166
  @IsActivated = isactivated
2167
+ @DayOfMonth = dayofmonth
2168
+ @IntervalDays = intervaldays
2145
2169
  end
2146
2170
 
2147
2171
  def deserialize(params)
@@ -2151,6 +2175,8 @@ module TencentCloud
2151
2175
  @Hour = params['Hour']
2152
2176
  @AliveDays = params['AliveDays']
2153
2177
  @IsActivated = params['IsActivated']
2178
+ @DayOfMonth = params['DayOfMonth']
2179
+ @IntervalDays = params['IntervalDays']
2154
2180
  end
2155
2181
  end
2156
2182
 
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.534
4
+ version: 3.0.536
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-03-21 00:00:00.000000000 Z
11
+ date: 2023-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common