tencentcloud-sdk-cdwdoris 3.0.983 → 3.0.984

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20211228/models.rb +14 -31
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 688f38c4917d2d4e537df8a44afd58943472f532
4
- data.tar.gz: e2b8807715d305b53753b6c577f1c01154f4e59d
3
+ metadata.gz: c7066e0b593874ade07e43aa0e22fb23b195f73c
4
+ data.tar.gz: 3b0c86a0c75639b81370d919e4685294cbffcacb
5
5
  SHA512:
6
- metadata.gz: 7367b6bf09cdb72a47135aa7172dd5b878574e672cc291efa7b5c66d93138cec378290a7299f128ae43d0efb0b1675186aa353d59a78652fcb9b003b5d835943
7
- data.tar.gz: b2162f386cd795b0f2aaa8a1568a1f51d631c5ccea7bfdd21708eb5e0b9e55a8598bb9e5bfac1542c5f447b284ae6c29fb26845b4c7f4887de8b451e91f6a7f3
6
+ metadata.gz: b3c06fbd6a3220143cae29b2f7105cc9521b394d79db1bd6fa5e80d2190390265b7d0ce812da578b9cfb55930d1968ccf2533b0e174c46fb59ecf4f5f99a1a0f
7
+ data.tar.gz: 351145b1ef0c220dba63eeb3071776324a84649b88f0e48f8fb0cedbd6c8fc70767e57b09bd3325bc7e41d5032cfcf42e42e7a26c3ae21146385f59ce6a78b0e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.983
1
+ 3.0.984
@@ -4566,16 +4566,28 @@ module TencentCloud
4566
4566
 
4567
4567
  # RecoverBackUpJob返回参数结构体
4568
4568
  class RecoverBackUpJobResponse < TencentCloud::Common::AbstractModel
4569
+ # @param TotalCount: 恢复任务总数量
4570
+ # @type TotalCount: Integer
4571
+ # @param DuplicateTables: 重复的表名
4572
+ # @type DuplicateTables: Array
4573
+ # @param ErrorMsg: 错误信息
4574
+ # @type ErrorMsg: String
4569
4575
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4570
4576
  # @type RequestId: String
4571
4577
 
4572
- attr_accessor :RequestId
4578
+ attr_accessor :TotalCount, :DuplicateTables, :ErrorMsg, :RequestId
4573
4579
 
4574
- def initialize(requestid=nil)
4580
+ def initialize(totalcount=nil, duplicatetables=nil, errormsg=nil, requestid=nil)
4581
+ @TotalCount = totalcount
4582
+ @DuplicateTables = duplicatetables
4583
+ @ErrorMsg = errormsg
4575
4584
  @RequestId = requestid
4576
4585
  end
4577
4586
 
4578
4587
  def deserialize(params)
4588
+ @TotalCount = params['TotalCount']
4589
+ @DuplicateTables = params['DuplicateTables']
4590
+ @ErrorMsg = params['ErrorMsg']
4579
4591
  @RequestId = params['RequestId']
4580
4592
  end
4581
4593
  end
@@ -4676,15 +4688,12 @@ module TencentCloud
4676
4688
  # @param RegionId: 地域唯一标记
4677
4689
  # @type RegionId: Integer
4678
4690
  # @param Zones: 地域下所有可用区列表
4679
- # 注意:此字段可能返回 null,表示取不到有效值。
4680
4691
  # @type Zones: Array
4681
4692
  # @param Count: 该地域下集群数目
4682
4693
  # @type Count: Integer
4683
4694
  # @param IsInternationalSite: 0代表是国际站 1代表不是
4684
- # 注意:此字段可能返回 null,表示取不到有效值。
4685
4695
  # @type IsInternationalSite: Integer
4686
4696
  # @param Bucket: 桶
4687
- # 注意:此字段可能返回 null,表示取不到有效值。
4688
4697
  # @type Bucket: String
4689
4698
 
4690
4699
  attr_accessor :Name, :Desc, :RegionId, :Zones, :Count, :IsInternationalSite, :Bucket
@@ -4780,22 +4789,16 @@ module TencentCloud
4780
4789
  # @param Type: 分类标记,STANDARD/BIGDATA/HIGHIO分别表示标准型/大数据型/高IO
4781
4790
  # @type Type: String
4782
4791
  # @param SystemDisk: 系统盘描述信息
4783
- # 注意:此字段可能返回 null,表示取不到有效值。
4784
4792
  # @type SystemDisk: :class:`Tencentcloud::Cdwdoris.v20211228.models.DiskSpec`
4785
4793
  # @param DataDisk: 数据盘描述信息
4786
- # 注意:此字段可能返回 null,表示取不到有效值。
4787
4794
  # @type DataDisk: :class:`Tencentcloud::Cdwdoris.v20211228.models.DiskSpec`
4788
4795
  # @param MaxNodeSize: 最大节点数目限制
4789
- # 注意:此字段可能返回 null,表示取不到有效值。
4790
4796
  # @type MaxNodeSize: Integer
4791
4797
  # @param Available: 是否可用,false代表售罄
4792
- # 注意:此字段可能返回 null,表示取不到有效值。
4793
4798
  # @type Available: Boolean
4794
4799
  # @param ComputeSpecDesc: 规格描述信息
4795
- # 注意:此字段可能返回 null,表示取不到有效值。
4796
4800
  # @type ComputeSpecDesc: String
4797
4801
  # @param InstanceQuota: cvm库存
4798
- # 注意:此字段可能返回 null,表示取不到有效值。
4799
4802
  # @type InstanceQuota: Integer
4800
4803
 
4801
4804
  attr_accessor :Name, :Cpu, :Mem, :Type, :SystemDisk, :DataDisk, :MaxNodeSize, :Available, :ComputeSpecDesc, :InstanceQuota
@@ -4982,10 +4985,8 @@ module TencentCloud
4982
4985
  # @param ReserveDynamicPartitionEnable: 是否保持源表中的动态分区
4983
4986
  # @type ReserveDynamicPartitionEnable: Boolean
4984
4987
  # @param BackupJobId: 备份实例id
4985
- # 注意:此字段可能返回 null,表示取不到有效值。
4986
4988
  # @type BackupJobId: Integer
4987
4989
  # @param TaskId: 实例对应snapshot的id
4988
- # 注意:此字段可能返回 null,表示取不到有效值。
4989
4990
  # @type TaskId: Integer
4990
4991
 
4991
4992
  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
@@ -5154,34 +5155,26 @@ module TencentCloud
5154
5155
  # 调度信息
5155
5156
  class ScheduleInfo < TencentCloud::Common::AbstractModel
5156
5157
  # @param EffectivePeriod: 生效周期
5157
- # 注意:此字段可能返回 null,表示取不到有效值。
5158
5158
  # @type EffectivePeriod: String
5159
5159
  # @param ScheduleType: 调度类型,不传该参数时为立即执行:
5160
5160
  # Day-天
5161
5161
  # Week-周
5162
5162
  # Month-月
5163
5163
  # Once-单次
5164
-
5165
- # 注意:此字段可能返回 null,表示取不到有效值。
5166
5164
  # @type ScheduleType: String
5167
5165
  # @param ScheduleData: 执行调度的日期。调度类型为周和月时以英文逗号分隔;
5168
5166
  # 调度类型为单次时,该值是个日期
5169
- # 注意:此字段可能返回 null,表示取不到有效值。
5170
5167
  # @type ScheduleData: String
5171
5168
  # @param ScheduleHour: 执行时间:时
5172
- # 注意:此字段可能返回 null,表示取不到有效值。
5173
5169
  # @type ScheduleHour: Integer
5174
5170
  # @param ScheduleMin: 执行时间:分
5175
- # 注意:此字段可能返回 null,表示取不到有效值。
5176
5171
  # @type ScheduleMin: Integer
5177
5172
  # @param BackupScope: 备份粒度:
5178
5173
  # All-全量
5179
5174
  # Database-按库
5180
5175
  # Table-按表
5181
- # 注意:此字段可能返回 null,表示取不到有效值。
5182
5176
  # @type BackupScope: String
5183
5177
  # @param BackupDatabase: 备份库:如果是按库备份,则需要该字段,库之间用英文逗号分割
5184
- # 注意:此字段可能返回 null,表示取不到有效值。
5185
5178
  # @type BackupDatabase: String
5186
5179
 
5187
5180
  attr_accessor :EffectivePeriod, :ScheduleType, :ScheduleData, :ScheduleHour, :ScheduleMin, :BackupScope, :BackupDatabase
@@ -5362,7 +5355,6 @@ module TencentCloud
5362
5355
  # UpdateCoolDown返回参数结构体
5363
5356
  class UpdateCoolDownResponse < TencentCloud::Common::AbstractModel
5364
5357
  # @param ErrorMsg: 错误信息
5365
- # 注意:此字段可能返回 null,表示取不到有效值。
5366
5358
  # @type ErrorMsg: String
5367
5359
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5368
5360
  # @type RequestId: String
@@ -5447,10 +5439,8 @@ module TencentCloud
5447
5439
  # 用户绑定资源组信息
5448
5440
  class UserWorkloadGroup < TencentCloud::Common::AbstractModel
5449
5441
  # @param UserName: test
5450
- # 注意:此字段可能返回 null,表示取不到有效值。
5451
5442
  # @type UserName: String
5452
5443
  # @param WorkloadGroupName: normal
5453
- # 注意:此字段可能返回 null,表示取不到有效值。
5454
5444
  # @type WorkloadGroupName: String
5455
5445
 
5456
5446
  attr_accessor :UserName, :WorkloadGroupName
@@ -5469,19 +5459,14 @@ module TencentCloud
5469
5459
  # 资源组相关配置
5470
5460
  class WorkloadGroupConfig < TencentCloud::Common::AbstractModel
5471
5461
  # @param WorkloadGroupName: 资源组名称
5472
- # 注意:此字段可能返回 null,表示取不到有效值。
5473
5462
  # @type WorkloadGroupName: String
5474
5463
  # @param CpuShare: CPU权重
5475
- # 注意:此字段可能返回 null,表示取不到有效值。
5476
5464
  # @type CpuShare: Integer
5477
5465
  # @param MemoryLimit: 内存限制,所有资源组的内存限制值之和应该小于等于100
5478
- # 注意:此字段可能返回 null,表示取不到有效值。
5479
5466
  # @type MemoryLimit: Integer
5480
5467
  # @param EnableMemoryOverCommit: 是否允许超配分配
5481
- # 注意:此字段可能返回 null,表示取不到有效值。
5482
5468
  # @type EnableMemoryOverCommit: Boolean
5483
5469
  # @param CpuHardLimit: cpu硬限制
5484
- # 注意:此字段可能返回 null,表示取不到有效值。
5485
5470
  # @type CpuHardLimit: String
5486
5471
 
5487
5472
  attr_accessor :WorkloadGroupName, :CpuShare, :MemoryLimit, :EnableMemoryOverCommit, :CpuHardLimit
@@ -5512,10 +5497,8 @@ module TencentCloud
5512
5497
  # @param ZoneId: 可用区唯一标记
5513
5498
  # @type ZoneId: Integer
5514
5499
  # @param Encrypt: Encryptid
5515
- # 注意:此字段可能返回 null,表示取不到有效值。
5516
5500
  # @type Encrypt: Integer
5517
5501
  # @param Main: 是否为主力园区
5518
- # 注意:此字段可能返回 null,表示取不到有效值。
5519
5502
  # @type Main: Boolean
5520
5503
 
5521
5504
  attr_accessor :Name, :Desc, :ZoneId, :Encrypt, :Main
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.983
4
+ version: 3.0.984
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-01-15 00:00:00.000000000 Z
11
+ date: 2025-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common