tencentcloud-sdk-sqlserver 3.0.657 → 3.0.658
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/v20180328/models.rb +18 -6
- 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: f25ee30b3631b11d81ce4dc3bc73cbbea59d8c6b
|
4
|
+
data.tar.gz: cafa35969c172b2031806d8ab8e3709bf2232b2f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51350675a76f7af65344b7b730c6c1832e5939b1eaab10872468901d8b7cfe5825c57836234f66f6f93c1f52c8847c757edeb7df7f274646724f049c38109166
|
7
|
+
data.tar.gz: ccdd6ca9b6d2e1aa0758c4841dfa6b3d0c287b3cacb301dd0e4edce09b3757e550c31c8febdb3098334441120ee4b2f466301bc6bf549cbe4f1e9968bfbaf696
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.658
|
data/lib/v20180328/models.rb
CHANGED
@@ -288,6 +288,8 @@ module TencentCloud
|
|
288
288
|
# @type DBs: Array
|
289
289
|
# @param Strategy: 备份策略(0-实例备份;1-多库备份)
|
290
290
|
# @type Strategy: Integer
|
291
|
+
# @param StorageStrategy: 备份存储策略 0-跟随自定义备份保留策略 1-跟随实例生命周期直到实例下线
|
292
|
+
# @type StorageStrategy: Integer
|
291
293
|
# @param BackupWay: 备份方式,0-定时备份;1-手动临时备份;2-定期备份
|
292
294
|
# @type BackupWay: Integer
|
293
295
|
# @param BackupName: 备份任务名称,可自定义
|
@@ -303,9 +305,9 @@ module TencentCloud
|
|
303
305
|
# @param CrossBackupStatus: 跨地域备份的目标地域和备份状态
|
304
306
|
# @type CrossBackupStatus: Array
|
305
307
|
|
306
|
-
attr_accessor :FileName, :Size, :StartTime, :EndTime, :InternalAddr, :ExternalAddr, :Id, :Status, :DBs, :Strategy, :BackupWay, :BackupName, :GroupId, :BackupFormat, :Region, :CrossBackupAddr, :CrossBackupStatus
|
308
|
+
attr_accessor :FileName, :Size, :StartTime, :EndTime, :InternalAddr, :ExternalAddr, :Id, :Status, :DBs, :Strategy, :StorageStrategy, :BackupWay, :BackupName, :GroupId, :BackupFormat, :Region, :CrossBackupAddr, :CrossBackupStatus
|
307
309
|
|
308
|
-
def initialize(filename=nil, size=nil, starttime=nil, endtime=nil, internaladdr=nil, externaladdr=nil, id=nil, status=nil, dbs=nil, strategy=nil, backupway=nil, backupname=nil, groupid=nil, backupformat=nil, region=nil, crossbackupaddr=nil, crossbackupstatus=nil)
|
310
|
+
def initialize(filename=nil, size=nil, starttime=nil, endtime=nil, internaladdr=nil, externaladdr=nil, id=nil, status=nil, dbs=nil, strategy=nil, storagestrategy=nil, backupway=nil, backupname=nil, groupid=nil, backupformat=nil, region=nil, crossbackupaddr=nil, crossbackupstatus=nil)
|
309
311
|
@FileName = filename
|
310
312
|
@Size = size
|
311
313
|
@StartTime = starttime
|
@@ -316,6 +318,7 @@ module TencentCloud
|
|
316
318
|
@Status = status
|
317
319
|
@DBs = dbs
|
318
320
|
@Strategy = strategy
|
321
|
+
@StorageStrategy = storagestrategy
|
319
322
|
@BackupWay = backupway
|
320
323
|
@BackupName = backupname
|
321
324
|
@GroupId = groupid
|
@@ -336,6 +339,7 @@ module TencentCloud
|
|
336
339
|
@Status = params['Status']
|
337
340
|
@DBs = params['DBs']
|
338
341
|
@Strategy = params['Strategy']
|
342
|
+
@StorageStrategy = params['StorageStrategy']
|
339
343
|
@BackupWay = params['BackupWay']
|
340
344
|
@BackupName = params['BackupName']
|
341
345
|
@GroupId = params['GroupId']
|
@@ -769,14 +773,17 @@ module TencentCloud
|
|
769
773
|
# @type InstanceId: String
|
770
774
|
# @param BackupName: 备份名称,若不填则自动生成“实例ID_备份开始时间戳”
|
771
775
|
# @type BackupName: String
|
776
|
+
# @param StorageStrategy: 备份存储策略 0-跟随自定义备份保留策略 1-跟随实例生命周期直到实例下线,默认取值0
|
777
|
+
# @type StorageStrategy: Integer
|
772
778
|
|
773
|
-
attr_accessor :Strategy, :DBNames, :InstanceId, :BackupName
|
779
|
+
attr_accessor :Strategy, :DBNames, :InstanceId, :BackupName, :StorageStrategy
|
774
780
|
|
775
|
-
def initialize(strategy=nil, dbnames=nil, instanceid=nil, backupname=nil)
|
781
|
+
def initialize(strategy=nil, dbnames=nil, instanceid=nil, backupname=nil, storagestrategy=nil)
|
776
782
|
@Strategy = strategy
|
777
783
|
@DBNames = dbnames
|
778
784
|
@InstanceId = instanceid
|
779
785
|
@BackupName = backupname
|
786
|
+
@StorageStrategy = storagestrategy
|
780
787
|
end
|
781
788
|
|
782
789
|
def deserialize(params)
|
@@ -784,6 +791,7 @@ module TencentCloud
|
|
784
791
|
@DBNames = params['DBNames']
|
785
792
|
@InstanceId = params['InstanceId']
|
786
793
|
@BackupName = params['BackupName']
|
794
|
+
@StorageStrategy = params['StorageStrategy']
|
787
795
|
end
|
788
796
|
end
|
789
797
|
|
@@ -3278,10 +3286,12 @@ module TencentCloud
|
|
3278
3286
|
# @type Type: Integer
|
3279
3287
|
# @param BackupFormat: 按照备份文件形式筛选,pkg-打包备份文件,single-单库备份文件
|
3280
3288
|
# @type BackupFormat: String
|
3289
|
+
# @param StorageStrategy: 备份存储策略 0-跟随自定义备份保留策略 1-跟随实例生命周期直到实例下线,默认取值0
|
3290
|
+
# @type StorageStrategy: Integer
|
3281
3291
|
|
3282
|
-
attr_accessor :StartTime, :EndTime, :InstanceId, :Limit, :Offset, :BackupName, :Strategy, :BackupWay, :BackupId, :DatabaseName, :Group, :Type, :BackupFormat
|
3292
|
+
attr_accessor :StartTime, :EndTime, :InstanceId, :Limit, :Offset, :BackupName, :Strategy, :BackupWay, :BackupId, :DatabaseName, :Group, :Type, :BackupFormat, :StorageStrategy
|
3283
3293
|
|
3284
|
-
def initialize(starttime=nil, endtime=nil, instanceid=nil, limit=nil, offset=nil, backupname=nil, strategy=nil, backupway=nil, backupid=nil, databasename=nil, group=nil, type=nil, backupformat=nil)
|
3294
|
+
def initialize(starttime=nil, endtime=nil, instanceid=nil, limit=nil, offset=nil, backupname=nil, strategy=nil, backupway=nil, backupid=nil, databasename=nil, group=nil, type=nil, backupformat=nil, storagestrategy=nil)
|
3285
3295
|
@StartTime = starttime
|
3286
3296
|
@EndTime = endtime
|
3287
3297
|
@InstanceId = instanceid
|
@@ -3295,6 +3305,7 @@ module TencentCloud
|
|
3295
3305
|
@Group = group
|
3296
3306
|
@Type = type
|
3297
3307
|
@BackupFormat = backupformat
|
3308
|
+
@StorageStrategy = storagestrategy
|
3298
3309
|
end
|
3299
3310
|
|
3300
3311
|
def deserialize(params)
|
@@ -3311,6 +3322,7 @@ module TencentCloud
|
|
3311
3322
|
@Group = params['Group']
|
3312
3323
|
@Type = params['Type']
|
3313
3324
|
@BackupFormat = params['BackupFormat']
|
3325
|
+
@StorageStrategy = params['StorageStrategy']
|
3314
3326
|
end
|
3315
3327
|
end
|
3316
3328
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-sqlserver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.658
|
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-09-
|
11
|
+
date: 2023-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|