tencentcloud-sdk-cdwdoris 3.0.1094 → 3.0.1099
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/v20211228/models.rb +100 -20
- 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: bc9b8c65b8302c949d89d16e672f60c054cfb545
|
4
|
+
data.tar.gz: 57466ec7654e3c5dacd836310eb1f7e8e5ab494d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a35b638d3df7c32107cb97a43b776a7da4732700b1ff218cb9a26ed1f794c63eab44a025eb63800687ba31dc3351666b411a9513e772018bfcee4adfd393d55b
|
7
|
+
data.tar.gz: 32483eea93663d51408ba13faad10ef2841ce69637288fe551ada00aa8f5f93c685f331b61e6d20fd91a80ca1b3900562c1c7c3bf9ac73f0cb3609c91dbd580c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1099
|
data/lib/v20211228/models.rb
CHANGED
@@ -130,10 +130,12 @@ module TencentCloud
|
|
130
130
|
# @type IsUserDefineBucket: Boolean
|
131
131
|
# @param ErrorReason: 错误原因
|
132
132
|
# @type ErrorReason: String
|
133
|
+
# @param SnapshotRemainPolicy: 快照保留策略
|
134
|
+
# @type SnapshotRemainPolicy: :class:`Tencentcloud::Cdwdoris.v20211228.models.SnapshotRemainPolicy`
|
133
135
|
|
134
|
-
attr_accessor :JobId, :Snapshot, :BackUpSize, :BackUpSingleSize, :BackUpTime, :ExpireTime, :JobStatus, :BackupType, :BackupTimeType, :DorisSourceInfo, :JobStatusNum, :BackupCosInfo, :IsUserDefineBucket, :ErrorReason
|
136
|
+
attr_accessor :JobId, :Snapshot, :BackUpSize, :BackUpSingleSize, :BackUpTime, :ExpireTime, :JobStatus, :BackupType, :BackupTimeType, :DorisSourceInfo, :JobStatusNum, :BackupCosInfo, :IsUserDefineBucket, :ErrorReason, :SnapshotRemainPolicy
|
135
137
|
|
136
|
-
def initialize(jobid=nil, snapshot=nil, backupsize=nil, backupsinglesize=nil, backuptime=nil, expiretime=nil, jobstatus=nil, backuptype=nil, backuptimetype=nil, dorissourceinfo=nil, jobstatusnum=nil, backupcosinfo=nil, isuserdefinebucket=nil, errorreason=nil)
|
138
|
+
def initialize(jobid=nil, snapshot=nil, backupsize=nil, backupsinglesize=nil, backuptime=nil, expiretime=nil, jobstatus=nil, backuptype=nil, backuptimetype=nil, dorissourceinfo=nil, jobstatusnum=nil, backupcosinfo=nil, isuserdefinebucket=nil, errorreason=nil, snapshotremainpolicy=nil)
|
137
139
|
@JobId = jobid
|
138
140
|
@Snapshot = snapshot
|
139
141
|
@BackUpSize = backupsize
|
@@ -148,6 +150,7 @@ module TencentCloud
|
|
148
150
|
@BackupCosInfo = backupcosinfo
|
149
151
|
@IsUserDefineBucket = isuserdefinebucket
|
150
152
|
@ErrorReason = errorreason
|
153
|
+
@SnapshotRemainPolicy = snapshotremainpolicy
|
151
154
|
end
|
152
155
|
|
153
156
|
def deserialize(params)
|
@@ -171,6 +174,10 @@ module TencentCloud
|
|
171
174
|
end
|
172
175
|
@IsUserDefineBucket = params['IsUserDefineBucket']
|
173
176
|
@ErrorReason = params['ErrorReason']
|
177
|
+
unless params['SnapshotRemainPolicy'].nil?
|
178
|
+
@SnapshotRemainPolicy = SnapshotRemainPolicy.new
|
179
|
+
@SnapshotRemainPolicy.deserialize(params['SnapshotRemainPolicy'])
|
180
|
+
end
|
174
181
|
end
|
175
182
|
end
|
176
183
|
|
@@ -182,19 +189,23 @@ module TencentCloud
|
|
182
189
|
# @type CosPath: String
|
183
190
|
# @param SnapShotPath: 备份文件名称
|
184
191
|
# @type SnapShotPath: String
|
192
|
+
# @param Region: cos桶所在地域
|
193
|
+
# @type Region: String
|
185
194
|
|
186
|
-
attr_accessor :CosBucket, :CosPath, :SnapShotPath
|
195
|
+
attr_accessor :CosBucket, :CosPath, :SnapShotPath, :Region
|
187
196
|
|
188
|
-
def initialize(cosbucket=nil, cospath=nil, snapshotpath=nil)
|
197
|
+
def initialize(cosbucket=nil, cospath=nil, snapshotpath=nil, region=nil)
|
189
198
|
@CosBucket = cosbucket
|
190
199
|
@CosPath = cospath
|
191
200
|
@SnapShotPath = snapshotpath
|
201
|
+
@Region = region
|
192
202
|
end
|
193
203
|
|
194
204
|
def deserialize(params)
|
195
205
|
@CosBucket = params['CosBucket']
|
196
206
|
@CosPath = params['CosPath']
|
197
207
|
@SnapShotPath = params['SnapShotPath']
|
208
|
+
@Region = params['Region']
|
198
209
|
end
|
199
210
|
end
|
200
211
|
|
@@ -721,7 +732,7 @@ module TencentCloud
|
|
721
732
|
# @type BackupType: Integer
|
722
733
|
# @param DorisSourceInfo: 远端doris集群的连接信息
|
723
734
|
# @type DorisSourceInfo: :class:`Tencentcloud::Cdwdoris.v20211228.models.DorisSourceInfo`
|
724
|
-
# @param BackupTimeType: 0
|
735
|
+
# @param BackupTimeType: 0为周期备份。1时是立即备份。3时是定时备份。
|
725
736
|
# @type BackupTimeType: Integer
|
726
737
|
# @param RestoreType: 0为默认。1时是备份完成后立即恢复
|
727
738
|
# @type RestoreType: Integer
|
@@ -740,15 +751,29 @@ module TencentCloud
|
|
740
751
|
# @type UpdateStatus: Integer
|
741
752
|
# @param CosBucket: 当前任务的cos桶信息
|
742
753
|
# @type CosBucket: String
|
754
|
+
# @param SnapshotRemainPolicy: 快照保留策略
|
755
|
+
# @type SnapshotRemainPolicy: :class:`Tencentcloud::Cdwdoris.v20211228.models.SnapshotRemainPolicy`
|
756
|
+
# @param DataRemoteRegion: 备份数据所在地域,当前地域应该为空
|
757
|
+
# @type DataRemoteRegion: String
|
743
758
|
|
744
|
-
attr_accessor :InstanceId, :OperationType, :ScheduleId, :WeekDays, :ExecuteHour, :BackUpTables, :BackupType, :DorisSourceInfo, :BackupTimeType, :RestoreType, :AuthType, :CosSourceInfo, :ScheduleName, :ScheduleInfo, :UpdateStatus, :CosBucket
|
759
|
+
attr_accessor :InstanceId, :OperationType, :ScheduleId, :WeekDays, :ExecuteHour, :BackUpTables, :BackupType, :DorisSourceInfo, :BackupTimeType, :RestoreType, :AuthType, :CosSourceInfo, :ScheduleName, :ScheduleInfo, :UpdateStatus, :CosBucket, :SnapshotRemainPolicy, :DataRemoteRegion
|
745
760
|
extend Gem::Deprecate
|
746
761
|
deprecate :WeekDays, :none, 2025, 7
|
747
762
|
deprecate :WeekDays=, :none, 2025, 7
|
748
763
|
deprecate :ExecuteHour, :none, 2025, 7
|
749
764
|
deprecate :ExecuteHour=, :none, 2025, 7
|
765
|
+
deprecate :BackupType, :none, 2025, 7
|
766
|
+
deprecate :BackupType=, :none, 2025, 7
|
767
|
+
deprecate :DorisSourceInfo, :none, 2025, 7
|
768
|
+
deprecate :DorisSourceInfo=, :none, 2025, 7
|
769
|
+
deprecate :RestoreType, :none, 2025, 7
|
770
|
+
deprecate :RestoreType=, :none, 2025, 7
|
771
|
+
deprecate :AuthType, :none, 2025, 7
|
772
|
+
deprecate :AuthType=, :none, 2025, 7
|
773
|
+
deprecate :CosSourceInfo, :none, 2025, 7
|
774
|
+
deprecate :CosSourceInfo=, :none, 2025, 7
|
750
775
|
|
751
|
-
def initialize(instanceid=nil, operationtype=nil, scheduleid=nil, weekdays=nil, executehour=nil, backuptables=nil, backuptype=nil, dorissourceinfo=nil, backuptimetype=nil, restoretype=nil, authtype=nil, cossourceinfo=nil, schedulename=nil, scheduleinfo=nil, updatestatus=nil, cosbucket=nil)
|
776
|
+
def initialize(instanceid=nil, operationtype=nil, scheduleid=nil, weekdays=nil, executehour=nil, backuptables=nil, backuptype=nil, dorissourceinfo=nil, backuptimetype=nil, restoretype=nil, authtype=nil, cossourceinfo=nil, schedulename=nil, scheduleinfo=nil, updatestatus=nil, cosbucket=nil, snapshotremainpolicy=nil, dataremoteregion=nil)
|
752
777
|
@InstanceId = instanceid
|
753
778
|
@OperationType = operationtype
|
754
779
|
@ScheduleId = scheduleid
|
@@ -765,6 +790,8 @@ module TencentCloud
|
|
765
790
|
@ScheduleInfo = scheduleinfo
|
766
791
|
@UpdateStatus = updatestatus
|
767
792
|
@CosBucket = cosbucket
|
793
|
+
@SnapshotRemainPolicy = snapshotremainpolicy
|
794
|
+
@DataRemoteRegion = dataremoteregion
|
768
795
|
end
|
769
796
|
|
770
797
|
def deserialize(params)
|
@@ -800,6 +827,11 @@ module TencentCloud
|
|
800
827
|
end
|
801
828
|
@UpdateStatus = params['UpdateStatus']
|
802
829
|
@CosBucket = params['CosBucket']
|
830
|
+
unless params['SnapshotRemainPolicy'].nil?
|
831
|
+
@SnapshotRemainPolicy = SnapshotRemainPolicy.new
|
832
|
+
@SnapshotRemainPolicy.deserialize(params['SnapshotRemainPolicy'])
|
833
|
+
end
|
834
|
+
@DataRemoteRegion = params['DataRemoteRegion']
|
803
835
|
end
|
804
836
|
end
|
805
837
|
|
@@ -3008,10 +3040,12 @@ module TencentCloud
|
|
3008
3040
|
# @type DatabaseName: String
|
3009
3041
|
# @param TableName: 表名
|
3010
3042
|
# @type TableName: String
|
3043
|
+
# @param UserNames: 用户名列表
|
3044
|
+
# @type UserNames: Array
|
3011
3045
|
|
3012
|
-
attr_accessor :InstanceId, :ApiType, :UserName, :WhiteHost, :Catalog, :Catalogs, :DatabaseName, :TableName
|
3046
|
+
attr_accessor :InstanceId, :ApiType, :UserName, :WhiteHost, :Catalog, :Catalogs, :DatabaseName, :TableName, :UserNames
|
3013
3047
|
|
3014
|
-
def initialize(instanceid=nil, apitype=nil, username=nil, whitehost=nil, catalog=nil, catalogs=nil, databasename=nil, tablename=nil)
|
3048
|
+
def initialize(instanceid=nil, apitype=nil, username=nil, whitehost=nil, catalog=nil, catalogs=nil, databasename=nil, tablename=nil, usernames=nil)
|
3015
3049
|
@InstanceId = instanceid
|
3016
3050
|
@ApiType = apitype
|
3017
3051
|
@UserName = username
|
@@ -3020,6 +3054,7 @@ module TencentCloud
|
|
3020
3054
|
@Catalogs = catalogs
|
3021
3055
|
@DatabaseName = databasename
|
3022
3056
|
@TableName = tablename
|
3057
|
+
@UserNames = usernames
|
3023
3058
|
end
|
3024
3059
|
|
3025
3060
|
def deserialize(params)
|
@@ -3031,6 +3066,7 @@ module TencentCloud
|
|
3031
3066
|
@Catalogs = params['Catalogs']
|
3032
3067
|
@DatabaseName = params['DatabaseName']
|
3033
3068
|
@TableName = params['TableName']
|
3069
|
+
@UserNames = params['UserNames']
|
3034
3070
|
end
|
3035
3071
|
end
|
3036
3072
|
|
@@ -3664,14 +3700,16 @@ module TencentCloud
|
|
3664
3700
|
# @type UUID: String
|
3665
3701
|
# @param Zone: 可用区
|
3666
3702
|
# @type Zone: String
|
3703
|
+
# @param VirtualZone: 虚拟可用区
|
3704
|
+
# @type VirtualZone: String
|
3667
3705
|
# @param CreateTime: 创建时间
|
3668
3706
|
# @type CreateTime: String
|
3669
3707
|
# @param ComputeGroupId: 计算组ID
|
3670
3708
|
# @type ComputeGroupId: String
|
3671
3709
|
|
3672
|
-
attr_accessor :Ip, :Spec, :Core, :Memory, :DiskType, :DiskSize, :Role, :Status, :Rip, :FeRole, :UUID, :Zone, :CreateTime, :ComputeGroupId
|
3710
|
+
attr_accessor :Ip, :Spec, :Core, :Memory, :DiskType, :DiskSize, :Role, :Status, :Rip, :FeRole, :UUID, :Zone, :VirtualZone, :CreateTime, :ComputeGroupId
|
3673
3711
|
|
3674
|
-
def initialize(ip=nil, spec=nil, core=nil, memory=nil, disktype=nil, disksize=nil, role=nil, status=nil, rip=nil, ferole=nil, uuid=nil, zone=nil, createtime=nil, computegroupid=nil)
|
3712
|
+
def initialize(ip=nil, spec=nil, core=nil, memory=nil, disktype=nil, disksize=nil, role=nil, status=nil, rip=nil, ferole=nil, uuid=nil, zone=nil, virtualzone=nil, createtime=nil, computegroupid=nil)
|
3675
3713
|
@Ip = ip
|
3676
3714
|
@Spec = spec
|
3677
3715
|
@Core = core
|
@@ -3684,6 +3722,7 @@ module TencentCloud
|
|
3684
3722
|
@FeRole = ferole
|
3685
3723
|
@UUID = uuid
|
3686
3724
|
@Zone = zone
|
3725
|
+
@VirtualZone = virtualzone
|
3687
3726
|
@CreateTime = createtime
|
3688
3727
|
@ComputeGroupId = computegroupid
|
3689
3728
|
end
|
@@ -3701,6 +3740,7 @@ module TencentCloud
|
|
3701
3740
|
@FeRole = params['FeRole']
|
3702
3741
|
@UUID = params['UUID']
|
3703
3742
|
@Zone = params['Zone']
|
3743
|
+
@VirtualZone = params['VirtualZone']
|
3704
3744
|
@CreateTime = params['CreateTime']
|
3705
3745
|
@ComputeGroupId = params['ComputeGroupId']
|
3706
3746
|
end
|
@@ -4176,20 +4216,23 @@ module TencentCloud
|
|
4176
4216
|
# @type UserPrivileges: :class:`Tencentcloud::Cdwdoris.v20211228.models.UpdateUserPrivileges`
|
4177
4217
|
# @param WhiteHost: 用户链接来自的 IP
|
4178
4218
|
# @type WhiteHost: String
|
4179
|
-
# @param UpdateType: 更新类型,默认0,1
|
4219
|
+
# @param UpdateType: 更新类型,默认0,1为更新绑定计算组,2为更新默认计算组
|
4180
4220
|
# @type UpdateType: Integer
|
4181
4221
|
# @param UpdateComputeGroups: 需绑定计算组列表
|
4182
4222
|
# @type UpdateComputeGroups: Array
|
4223
|
+
# @param DefaultComputeGroup: 默认计算组
|
4224
|
+
# @type DefaultComputeGroup: String
|
4183
4225
|
|
4184
|
-
attr_accessor :InstanceId, :UserName, :UserPrivileges, :WhiteHost, :UpdateType, :UpdateComputeGroups
|
4226
|
+
attr_accessor :InstanceId, :UserName, :UserPrivileges, :WhiteHost, :UpdateType, :UpdateComputeGroups, :DefaultComputeGroup
|
4185
4227
|
|
4186
|
-
def initialize(instanceid=nil, username=nil, userprivileges=nil, whitehost=nil, updatetype=nil, updatecomputegroups=nil)
|
4228
|
+
def initialize(instanceid=nil, username=nil, userprivileges=nil, whitehost=nil, updatetype=nil, updatecomputegroups=nil, defaultcomputegroup=nil)
|
4187
4229
|
@InstanceId = instanceid
|
4188
4230
|
@UserName = username
|
4189
4231
|
@UserPrivileges = userprivileges
|
4190
4232
|
@WhiteHost = whitehost
|
4191
4233
|
@UpdateType = updatetype
|
4192
4234
|
@UpdateComputeGroups = updatecomputegroups
|
4235
|
+
@DefaultComputeGroup = defaultcomputegroup
|
4193
4236
|
end
|
4194
4237
|
|
4195
4238
|
def deserialize(params)
|
@@ -4202,6 +4245,7 @@ module TencentCloud
|
|
4202
4245
|
@WhiteHost = params['WhiteHost']
|
4203
4246
|
@UpdateType = params['UpdateType']
|
4204
4247
|
@UpdateComputeGroups = params['UpdateComputeGroups']
|
4248
|
+
@DefaultComputeGroup = params['DefaultComputeGroup']
|
4205
4249
|
end
|
4206
4250
|
end
|
4207
4251
|
|
@@ -4360,10 +4404,12 @@ module TencentCloud
|
|
4360
4404
|
# @type ComputeGroupId: String
|
4361
4405
|
# @param CreateTime: 创建时间
|
4362
4406
|
# @type CreateTime: String
|
4407
|
+
# @param VirtualZone: 虚拟可用区
|
4408
|
+
# @type VirtualZone: String
|
4363
4409
|
|
4364
|
-
attr_accessor :Ip, :Status, :NodeName, :ComponentName, :NodeRole, :LastRestartTime, :Zone, :Id, :RIp, :ComputeGroupId, :CreateTime
|
4410
|
+
attr_accessor :Ip, :Status, :NodeName, :ComponentName, :NodeRole, :LastRestartTime, :Zone, :Id, :RIp, :ComputeGroupId, :CreateTime, :VirtualZone
|
4365
4411
|
|
4366
|
-
def initialize(ip=nil, status=nil, nodename=nil, componentname=nil, noderole=nil, lastrestarttime=nil, zone=nil, id=nil, rip=nil, computegroupid=nil, createtime=nil)
|
4412
|
+
def initialize(ip=nil, status=nil, nodename=nil, componentname=nil, noderole=nil, lastrestarttime=nil, zone=nil, id=nil, rip=nil, computegroupid=nil, createtime=nil, virtualzone=nil)
|
4367
4413
|
@Ip = ip
|
4368
4414
|
@Status = status
|
4369
4415
|
@NodeName = nodename
|
@@ -4375,6 +4421,7 @@ module TencentCloud
|
|
4375
4421
|
@RIp = rip
|
4376
4422
|
@ComputeGroupId = computegroupid
|
4377
4423
|
@CreateTime = createtime
|
4424
|
+
@VirtualZone = virtualzone
|
4378
4425
|
end
|
4379
4426
|
|
4380
4427
|
def deserialize(params)
|
@@ -4389,6 +4436,7 @@ module TencentCloud
|
|
4389
4436
|
@RIp = params['RIp']
|
4390
4437
|
@ComputeGroupId = params['ComputeGroupId']
|
4391
4438
|
@CreateTime = params['CreateTime']
|
4439
|
+
@VirtualZone = params['VirtualZone']
|
4392
4440
|
end
|
4393
4441
|
end
|
4394
4442
|
|
@@ -4416,10 +4464,12 @@ module TencentCloud
|
|
4416
4464
|
# @type ComputeGroupId: String
|
4417
4465
|
# @param RIp: rip
|
4418
4466
|
# @type RIp: String
|
4467
|
+
# @param VirtualZone: 虚拟可用区
|
4468
|
+
# @type VirtualZone: String
|
4419
4469
|
|
4420
|
-
attr_accessor :NodeName, :Status, :Ip, :NodeRole, :ComponentName, :LastRestartTime, :Id, :Zone, :CreateTime, :ComputeGroupId, :RIp
|
4470
|
+
attr_accessor :NodeName, :Status, :Ip, :NodeRole, :ComponentName, :LastRestartTime, :Id, :Zone, :CreateTime, :ComputeGroupId, :RIp, :VirtualZone
|
4421
4471
|
|
4422
|
-
def initialize(nodename=nil, status=nil, ip=nil, noderole=nil, componentname=nil, lastrestarttime=nil, id=nil, zone=nil, createtime=nil, computegroupid=nil, rip=nil)
|
4472
|
+
def initialize(nodename=nil, status=nil, ip=nil, noderole=nil, componentname=nil, lastrestarttime=nil, id=nil, zone=nil, createtime=nil, computegroupid=nil, rip=nil, virtualzone=nil)
|
4423
4473
|
@NodeName = nodename
|
4424
4474
|
@Status = status
|
4425
4475
|
@Ip = ip
|
@@ -4431,6 +4481,7 @@ module TencentCloud
|
|
4431
4481
|
@CreateTime = createtime
|
4432
4482
|
@ComputeGroupId = computegroupid
|
4433
4483
|
@RIp = rip
|
4484
|
+
@VirtualZone = virtualzone
|
4434
4485
|
end
|
4435
4486
|
|
4436
4487
|
def deserialize(params)
|
@@ -4445,6 +4496,7 @@ module TencentCloud
|
|
4445
4496
|
@CreateTime = params['CreateTime']
|
4446
4497
|
@ComputeGroupId = params['ComputeGroupId']
|
4447
4498
|
@RIp = params['RIp']
|
4499
|
+
@VirtualZone = params['VirtualZone']
|
4448
4500
|
end
|
4449
4501
|
end
|
4450
4502
|
|
@@ -5137,10 +5189,12 @@ module TencentCloud
|
|
5137
5189
|
# @type BackupJobId: Integer
|
5138
5190
|
# @param TaskId: 实例对应snapshot的id
|
5139
5191
|
# @type TaskId: Integer
|
5192
|
+
# @param ID: 恢复任务id
|
5193
|
+
# @type ID: Integer
|
5140
5194
|
|
5141
|
-
attr_accessor :JobId, :Label, :Timestamp, :DbName, :State, :AllowLoad, :ReplicationNum, :ReplicaAllocation, :RestoreObjects, :CreateTime, :MetaPreparedTime, :SnapshotFinishedTime, :DownloadFinishedTime, :FinishedTime, :UnfinishedTasks, :Progress, :TaskErrMsg, :Status, :Timeout, :ReserveReplica, :ReserveDynamicPartitionEnable, :BackupJobId, :TaskId
|
5195
|
+
attr_accessor :JobId, :Label, :Timestamp, :DbName, :State, :AllowLoad, :ReplicationNum, :ReplicaAllocation, :RestoreObjects, :CreateTime, :MetaPreparedTime, :SnapshotFinishedTime, :DownloadFinishedTime, :FinishedTime, :UnfinishedTasks, :Progress, :TaskErrMsg, :Status, :Timeout, :ReserveReplica, :ReserveDynamicPartitionEnable, :BackupJobId, :TaskId, :ID
|
5142
5196
|
|
5143
|
-
def initialize(jobid=nil, label=nil, timestamp=nil, dbname=nil, state=nil, allowload=nil, replicationnum=nil, replicaallocation=nil, restoreobjects=nil, createtime=nil, metapreparedtime=nil, snapshotfinishedtime=nil, downloadfinishedtime=nil, finishedtime=nil, unfinishedtasks=nil, progress=nil, taskerrmsg=nil, status=nil, timeout=nil, reservereplica=nil, reservedynamicpartitionenable=nil, backupjobid=nil, taskid=nil)
|
5197
|
+
def initialize(jobid=nil, label=nil, timestamp=nil, dbname=nil, state=nil, allowload=nil, replicationnum=nil, replicaallocation=nil, restoreobjects=nil, createtime=nil, metapreparedtime=nil, snapshotfinishedtime=nil, downloadfinishedtime=nil, finishedtime=nil, unfinishedtasks=nil, progress=nil, taskerrmsg=nil, status=nil, timeout=nil, reservereplica=nil, reservedynamicpartitionenable=nil, backupjobid=nil, taskid=nil, id=nil)
|
5144
5198
|
@JobId = jobid
|
5145
5199
|
@Label = label
|
5146
5200
|
@Timestamp = timestamp
|
@@ -5164,6 +5218,7 @@ module TencentCloud
|
|
5164
5218
|
@ReserveDynamicPartitionEnable = reservedynamicpartitionenable
|
5165
5219
|
@BackupJobId = backupjobid
|
5166
5220
|
@TaskId = taskid
|
5221
|
+
@ID = id
|
5167
5222
|
end
|
5168
5223
|
|
5169
5224
|
def deserialize(params)
|
@@ -5190,6 +5245,7 @@ module TencentCloud
|
|
5190
5245
|
@ReserveDynamicPartitionEnable = params['ReserveDynamicPartitionEnable']
|
5191
5246
|
@BackupJobId = params['BackupJobId']
|
5192
5247
|
@TaskId = params['TaskId']
|
5248
|
+
@ID = params['ID']
|
5193
5249
|
end
|
5194
5250
|
end
|
5195
5251
|
|
@@ -5475,6 +5531,30 @@ module TencentCloud
|
|
5475
5531
|
end
|
5476
5532
|
end
|
5477
5533
|
|
5534
|
+
# 备份快照保留策略
|
5535
|
+
class SnapshotRemainPolicy < TencentCloud::Common::AbstractModel
|
5536
|
+
# @param Type: 0-不主动删除;1-超过指定时间周期自动删除;2-保留指定数据快照
|
5537
|
+
# @type Type: Integer
|
5538
|
+
# @param RemainDays: 保留快照的时间
|
5539
|
+
# @type RemainDays: Integer
|
5540
|
+
# @param RemainLatestNum: 保留最新快照的数量
|
5541
|
+
# @type RemainLatestNum: Integer
|
5542
|
+
|
5543
|
+
attr_accessor :Type, :RemainDays, :RemainLatestNum
|
5544
|
+
|
5545
|
+
def initialize(type=nil, remaindays=nil, remainlatestnum=nil)
|
5546
|
+
@Type = type
|
5547
|
+
@RemainDays = remaindays
|
5548
|
+
@RemainLatestNum = remainlatestnum
|
5549
|
+
end
|
5550
|
+
|
5551
|
+
def deserialize(params)
|
5552
|
+
@Type = params['Type']
|
5553
|
+
@RemainDays = params['RemainDays']
|
5554
|
+
@RemainLatestNum = params['RemainLatestNum']
|
5555
|
+
end
|
5556
|
+
end
|
5557
|
+
|
5478
5558
|
# 标签描述
|
5479
5559
|
class Tag < TencentCloud::Common::AbstractModel
|
5480
5560
|
# @param TagKey: 标签的键
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cdwdoris
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1099
|
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-07-
|
11
|
+
date: 2025-07-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|