tencentcloud-sdk-cfs 3.0.535 → 3.0.537

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: 4af603d818f25475954fd26a1e8f6402502133ce
4
- data.tar.gz: 4026c8ce480f74934e0044c6cedd2883ea6cd868
3
+ metadata.gz: b44e8b3472c1bf1d54b7b70599a6668e8c0b037c
4
+ data.tar.gz: 41c68e1f381409481dd6f6876b8975be0fdac717
5
5
  SHA512:
6
- metadata.gz: 7d087a8e47bcba2636e02600aa90f3dea157661bb94e72a09e9159dfddc64249f9cf2c2af9f7ad5ebaeed38ad5ed9d6c9d71fa11d034cf20f4226bd0f897aede
7
- data.tar.gz: c1fc86075a9155a96fd406306990f6b235daf3d47be8060f95ee14f98f1a96c2a1f0c5998622c4424d9f19b591c22706f2413abaa357cbf728e8ce3a79cf45f1
6
+ metadata.gz: 5301207930cb18e06ebd7a22b341ad491446f6ef3ebc02c8832733ef6e7710231d98638a33c1aafe2e85033f61fadd55f93b6a4de66830761c8334ea8440f7f6
7
+ data.tar.gz: 7a111e019395d4e686dd5d17de1f84cf45465a05bf40c8d8e97481bd4661fe95ab38942f32815743e9b8355dcb13e1d667aaf702855b9b4c61258a3a7af7fed8
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.535
1
+ 3.0.537
@@ -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.535
4
+ version: 3.0.537
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-22 00:00:00.000000000 Z
11
+ date: 2023-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common