tencentcloud-sdk-python 3.0.1342__py2.py3-none-any.whl → 3.0.1343__py2.py3-none-any.whl

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 (43) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/bi/v20220105/models.py +68 -0
  3. tencentcloud/billing/v20180709/billing_client.py +3 -1
  4. tencentcloud/billing/v20180709/models.py +90 -210
  5. tencentcloud/cdwpg/v20201230/models.py +4 -4
  6. tencentcloud/cdz/v20221123/models.py +0 -4
  7. tencentcloud/cfg/v20210820/models.py +0 -192
  8. tencentcloud/clb/v20180317/clb_client.py +2 -2
  9. tencentcloud/cwp/v20180228/models.py +61 -18
  10. tencentcloud/dbbrain/v20210527/dbbrain_client.py +161 -0
  11. tencentcloud/dbbrain/v20210527/models.py +1743 -387
  12. tencentcloud/domain/v20180808/models.py +0 -2
  13. tencentcloud/dts/v20180330/models.py +0 -6
  14. tencentcloud/dts/v20211206/models.py +2 -210
  15. tencentcloud/ess/v20201111/models.py +69 -4
  16. tencentcloud/essbasic/v20210526/models.py +57 -2
  17. tencentcloud/iotexplorer/v20190423/errorcodes.py +12 -0
  18. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +69 -0
  19. tencentcloud/iotexplorer/v20190423/models.py +995 -65
  20. tencentcloud/iotvideo/v20211125/iotvideo_client.py +46 -0
  21. tencentcloud/iotvideo/v20211125/models.py +188 -0
  22. tencentcloud/lcic/v20220817/errorcodes.py +1 -1
  23. tencentcloud/lighthouse/v20200324/errorcodes.py +12 -9
  24. tencentcloud/lighthouse/v20200324/lighthouse_client.py +24 -17
  25. tencentcloud/lighthouse/v20200324/models.py +68 -36
  26. tencentcloud/lke/v20231130/models.py +2 -2
  27. tencentcloud/lkeap/v20240522/models.py +4 -8
  28. tencentcloud/mps/v20190612/models.py +170 -0
  29. tencentcloud/mqtt/v20240516/errorcodes.py +9 -0
  30. tencentcloud/organization/v20210331/errorcodes.py +3 -0
  31. tencentcloud/organization/v20210331/models.py +0 -82
  32. tencentcloud/tcb/v20180608/models.py +0 -4
  33. tencentcloud/teo/v20220901/models.py +955 -20
  34. tencentcloud/tione/v20211111/models.py +90 -0
  35. tencentcloud/vdb/v20230616/models.py +45 -0
  36. tencentcloud/vdb/v20230616/vdb_client.py +1 -1
  37. tencentcloud/vrs/v20200824/models.py +32 -0
  38. tencentcloud/wedata/v20210820/models.py +77 -0
  39. {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/METADATA +1 -1
  40. {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/RECORD +43 -43
  41. {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/LICENSE +0 -0
  42. {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/WHEEL +0 -0
  43. {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/top_level.txt +0 -0
@@ -122,25 +122,18 @@ class CheckStep(AbstractModel):
122
122
  def __init__(self):
123
123
  r"""
124
124
  :param _StepNo: 步骤编号
125
- 注意:此字段可能返回 null,表示取不到有效值。
126
125
  :type StepNo: int
127
126
  :param _StepId: 步骤Id, 如:ConnectDBCheck、VersionCheck、SrcPrivilegeCheck等,具体校验项和源目标实例相关
128
- 注意:此字段可能返回 null,表示取不到有效值。
129
127
  :type StepId: str
130
128
  :param _StepName: 步骤名称
131
- 注意:此字段可能返回 null,表示取不到有效值。
132
129
  :type StepName: str
133
130
  :param _StepStatus: 此检查步骤的结果,pass(校验通过)、failed(校验失败)、notStarted(校验还未开始进行)、blocked(检验阻塞)、warning(校验有告警,但仍通过)
134
- 注意:此字段可能返回 null,表示取不到有效值。
135
131
  :type StepStatus: str
136
132
  :param _StepMessage: 此检查步骤的错误消息
137
- 注意:此字段可能返回 null,表示取不到有效值。
138
133
  :type StepMessage: str
139
134
  :param _DetailCheckItems: 每个检查步骤里的具体检查项
140
- 注意:此字段可能返回 null,表示取不到有效值。
141
135
  :type DetailCheckItems: list of DetailCheckItem
142
136
  :param _HasSkipped: 是否已跳过
143
- 注意:此字段可能返回 null,表示取不到有效值。
144
137
  :type HasSkipped: bool
145
138
  """
146
139
  self._StepNo = None
@@ -154,7 +147,6 @@ class CheckStep(AbstractModel):
154
147
  @property
155
148
  def StepNo(self):
156
149
  """步骤编号
157
- 注意:此字段可能返回 null,表示取不到有效值。
158
150
  :rtype: int
159
151
  """
160
152
  return self._StepNo
@@ -166,7 +158,6 @@ class CheckStep(AbstractModel):
166
158
  @property
167
159
  def StepId(self):
168
160
  """步骤Id, 如:ConnectDBCheck、VersionCheck、SrcPrivilegeCheck等,具体校验项和源目标实例相关
169
- 注意:此字段可能返回 null,表示取不到有效值。
170
161
  :rtype: str
171
162
  """
172
163
  return self._StepId
@@ -178,7 +169,6 @@ class CheckStep(AbstractModel):
178
169
  @property
179
170
  def StepName(self):
180
171
  """步骤名称
181
- 注意:此字段可能返回 null,表示取不到有效值。
182
172
  :rtype: str
183
173
  """
184
174
  return self._StepName
@@ -190,7 +180,6 @@ class CheckStep(AbstractModel):
190
180
  @property
191
181
  def StepStatus(self):
192
182
  """此检查步骤的结果,pass(校验通过)、failed(校验失败)、notStarted(校验还未开始进行)、blocked(检验阻塞)、warning(校验有告警,但仍通过)
193
- 注意:此字段可能返回 null,表示取不到有效值。
194
183
  :rtype: str
195
184
  """
196
185
  return self._StepStatus
@@ -202,7 +191,6 @@ class CheckStep(AbstractModel):
202
191
  @property
203
192
  def StepMessage(self):
204
193
  """此检查步骤的错误消息
205
- 注意:此字段可能返回 null,表示取不到有效值。
206
194
  :rtype: str
207
195
  """
208
196
  return self._StepMessage
@@ -214,7 +202,6 @@ class CheckStep(AbstractModel):
214
202
  @property
215
203
  def DetailCheckItems(self):
216
204
  """每个检查步骤里的具体检查项
217
- 注意:此字段可能返回 null,表示取不到有效值。
218
205
  :rtype: list of DetailCheckItem
219
206
  """
220
207
  return self._DetailCheckItems
@@ -226,7 +213,6 @@ class CheckStep(AbstractModel):
226
213
  @property
227
214
  def HasSkipped(self):
228
215
  """是否已跳过
229
- 注意:此字段可能返回 null,表示取不到有效值。
230
216
  :rtype: bool
231
217
  """
232
218
  return self._HasSkipped
@@ -386,46 +372,32 @@ class CompareAbstractInfo(AbstractModel):
386
372
  def __init__(self):
387
373
  r"""
388
374
  :param _Options: 校验配置参数
389
- 注意:此字段可能返回 null,表示取不到有效值。
390
375
  :type Options: :class:`tencentcloud.dts.v20211206.models.CompareOptions`
391
376
  :param _Objects: 一致性校验对比对象
392
- 注意:此字段可能返回 null,表示取不到有效值。
393
377
  :type Objects: :class:`tencentcloud.dts.v20211206.models.CompareObject`
394
378
  :param _Conclusion: 对比结论: same,different
395
- 注意:此字段可能返回 null,表示取不到有效值。
396
379
  :type Conclusion: str
397
380
  :param _Status: 任务状态: success,failed
398
- 注意:此字段可能返回 null,表示取不到有效值。
399
381
  :type Status: str
400
382
  :param _TotalTables: 总的表数量
401
- 注意:此字段可能返回 null,表示取不到有效值。
402
383
  :type TotalTables: int
403
384
  :param _CheckedTables: 已校验的表数量
404
- 注意:此字段可能返回 null,表示取不到有效值。
405
385
  :type CheckedTables: int
406
386
  :param _DifferentTables: 不一致的表数量
407
- 注意:此字段可能返回 null,表示取不到有效值。
408
387
  :type DifferentTables: int
409
388
  :param _SkippedTables: 跳过校验的表数量
410
- 注意:此字段可能返回 null,表示取不到有效值。
411
389
  :type SkippedTables: int
412
390
  :param _NearlyTableCount: 预估表总数
413
- 注意:此字段可能返回 null,表示取不到有效值。
414
391
  :type NearlyTableCount: int
415
392
  :param _DifferentRows: 不一致的数据行数量
416
- 注意:此字段可能返回 null,表示取不到有效值。
417
393
  :type DifferentRows: int
418
394
  :param _SrcSampleRows: 源库行数,当对比类型为**行数对比**时此项有意义
419
- 注意:此字段可能返回 null,表示取不到有效值。
420
395
  :type SrcSampleRows: int
421
396
  :param _DstSampleRows: 目标库行数,当对比类型为**行数对比**时此项有意义
422
- 注意:此字段可能返回 null,表示取不到有效值。
423
397
  :type DstSampleRows: int
424
398
  :param _StartedAt: 开始时间
425
- 注意:此字段可能返回 null,表示取不到有效值。
426
399
  :type StartedAt: str
427
400
  :param _FinishedAt: 结束时间
428
- 注意:此字段可能返回 null,表示取不到有效值。
429
401
  :type FinishedAt: str
430
402
  """
431
403
  self._Options = None
@@ -446,7 +418,6 @@ class CompareAbstractInfo(AbstractModel):
446
418
  @property
447
419
  def Options(self):
448
420
  """校验配置参数
449
- 注意:此字段可能返回 null,表示取不到有效值。
450
421
  :rtype: :class:`tencentcloud.dts.v20211206.models.CompareOptions`
451
422
  """
452
423
  return self._Options
@@ -458,7 +429,6 @@ class CompareAbstractInfo(AbstractModel):
458
429
  @property
459
430
  def Objects(self):
460
431
  """一致性校验对比对象
461
- 注意:此字段可能返回 null,表示取不到有效值。
462
432
  :rtype: :class:`tencentcloud.dts.v20211206.models.CompareObject`
463
433
  """
464
434
  return self._Objects
@@ -470,7 +440,6 @@ class CompareAbstractInfo(AbstractModel):
470
440
  @property
471
441
  def Conclusion(self):
472
442
  """对比结论: same,different
473
- 注意:此字段可能返回 null,表示取不到有效值。
474
443
  :rtype: str
475
444
  """
476
445
  return self._Conclusion
@@ -482,7 +451,6 @@ class CompareAbstractInfo(AbstractModel):
482
451
  @property
483
452
  def Status(self):
484
453
  """任务状态: success,failed
485
- 注意:此字段可能返回 null,表示取不到有效值。
486
454
  :rtype: str
487
455
  """
488
456
  return self._Status
@@ -494,7 +462,6 @@ class CompareAbstractInfo(AbstractModel):
494
462
  @property
495
463
  def TotalTables(self):
496
464
  """总的表数量
497
- 注意:此字段可能返回 null,表示取不到有效值。
498
465
  :rtype: int
499
466
  """
500
467
  return self._TotalTables
@@ -506,7 +473,6 @@ class CompareAbstractInfo(AbstractModel):
506
473
  @property
507
474
  def CheckedTables(self):
508
475
  """已校验的表数量
509
- 注意:此字段可能返回 null,表示取不到有效值。
510
476
  :rtype: int
511
477
  """
512
478
  return self._CheckedTables
@@ -518,7 +484,6 @@ class CompareAbstractInfo(AbstractModel):
518
484
  @property
519
485
  def DifferentTables(self):
520
486
  """不一致的表数量
521
- 注意:此字段可能返回 null,表示取不到有效值。
522
487
  :rtype: int
523
488
  """
524
489
  return self._DifferentTables
@@ -530,7 +495,6 @@ class CompareAbstractInfo(AbstractModel):
530
495
  @property
531
496
  def SkippedTables(self):
532
497
  """跳过校验的表数量
533
- 注意:此字段可能返回 null,表示取不到有效值。
534
498
  :rtype: int
535
499
  """
536
500
  return self._SkippedTables
@@ -542,7 +506,6 @@ class CompareAbstractInfo(AbstractModel):
542
506
  @property
543
507
  def NearlyTableCount(self):
544
508
  """预估表总数
545
- 注意:此字段可能返回 null,表示取不到有效值。
546
509
  :rtype: int
547
510
  """
548
511
  return self._NearlyTableCount
@@ -554,7 +517,6 @@ class CompareAbstractInfo(AbstractModel):
554
517
  @property
555
518
  def DifferentRows(self):
556
519
  """不一致的数据行数量
557
- 注意:此字段可能返回 null,表示取不到有效值。
558
520
  :rtype: int
559
521
  """
560
522
  return self._DifferentRows
@@ -566,7 +528,6 @@ class CompareAbstractInfo(AbstractModel):
566
528
  @property
567
529
  def SrcSampleRows(self):
568
530
  """源库行数,当对比类型为**行数对比**时此项有意义
569
- 注意:此字段可能返回 null,表示取不到有效值。
570
531
  :rtype: int
571
532
  """
572
533
  return self._SrcSampleRows
@@ -578,7 +539,6 @@ class CompareAbstractInfo(AbstractModel):
578
539
  @property
579
540
  def DstSampleRows(self):
580
541
  """目标库行数,当对比类型为**行数对比**时此项有意义
581
- 注意:此字段可能返回 null,表示取不到有效值。
582
542
  :rtype: int
583
543
  """
584
544
  return self._DstSampleRows
@@ -590,7 +550,6 @@ class CompareAbstractInfo(AbstractModel):
590
550
  @property
591
551
  def StartedAt(self):
592
552
  """开始时间
593
- 注意:此字段可能返回 null,表示取不到有效值。
594
553
  :rtype: str
595
554
  """
596
555
  return self._StartedAt
@@ -602,7 +561,6 @@ class CompareAbstractInfo(AbstractModel):
602
561
  @property
603
562
  def FinishedAt(self):
604
563
  """结束时间
605
- 注意:此字段可能返回 null,表示取不到有效值。
606
564
  :rtype: str
607
565
  """
608
566
  return self._FinishedAt
@@ -685,19 +643,14 @@ class CompareDetailInfo(AbstractModel):
685
643
  def __init__(self):
686
644
  r"""
687
645
  :param _Difference: 数据不一致的表详情
688
- 注意:此字段可能返回 null,表示取不到有效值。
689
646
  :type Difference: :class:`tencentcloud.dts.v20211206.models.DifferenceDetail`
690
647
  :param _Skipped: 跳过校验的表详情
691
- 注意:此字段可能返回 null,表示取不到有效值。
692
648
  :type Skipped: :class:`tencentcloud.dts.v20211206.models.SkippedDetail`
693
649
  :param _DifferenceAdvancedObjects: 数据库不一致的详情,mongodb业务用到
694
- 注意:此字段可能返回 null,表示取不到有效值。
695
650
  :type DifferenceAdvancedObjects: :class:`tencentcloud.dts.v20211206.models.DifferenceAdvancedObjectsDetail`
696
651
  :param _DifferenceData: 数据不一致的详情,mongodb业务用到
697
- 注意:此字段可能返回 null,表示取不到有效值。
698
652
  :type DifferenceData: :class:`tencentcloud.dts.v20211206.models.DifferenceDataDetail`
699
653
  :param _DifferenceRow: 数据行不一致的详情,mongodb业务用到
700
- 注意:此字段可能返回 null,表示取不到有效值。
701
654
  :type DifferenceRow: :class:`tencentcloud.dts.v20211206.models.DifferenceRowDetail`
702
655
  """
703
656
  self._Difference = None
@@ -709,7 +662,6 @@ class CompareDetailInfo(AbstractModel):
709
662
  @property
710
663
  def Difference(self):
711
664
  """数据不一致的表详情
712
- 注意:此字段可能返回 null,表示取不到有效值。
713
665
  :rtype: :class:`tencentcloud.dts.v20211206.models.DifferenceDetail`
714
666
  """
715
667
  return self._Difference
@@ -721,7 +673,6 @@ class CompareDetailInfo(AbstractModel):
721
673
  @property
722
674
  def Skipped(self):
723
675
  """跳过校验的表详情
724
- 注意:此字段可能返回 null,表示取不到有效值。
725
676
  :rtype: :class:`tencentcloud.dts.v20211206.models.SkippedDetail`
726
677
  """
727
678
  return self._Skipped
@@ -733,7 +684,6 @@ class CompareDetailInfo(AbstractModel):
733
684
  @property
734
685
  def DifferenceAdvancedObjects(self):
735
686
  """数据库不一致的详情,mongodb业务用到
736
- 注意:此字段可能返回 null,表示取不到有效值。
737
687
  :rtype: :class:`tencentcloud.dts.v20211206.models.DifferenceAdvancedObjectsDetail`
738
688
  """
739
689
  return self._DifferenceAdvancedObjects
@@ -745,7 +695,6 @@ class CompareDetailInfo(AbstractModel):
745
695
  @property
746
696
  def DifferenceData(self):
747
697
  """数据不一致的详情,mongodb业务用到
748
- 注意:此字段可能返回 null,表示取不到有效值。
749
698
  :rtype: :class:`tencentcloud.dts.v20211206.models.DifferenceDataDetail`
750
699
  """
751
700
  return self._DifferenceData
@@ -757,7 +706,6 @@ class CompareDetailInfo(AbstractModel):
757
706
  @property
758
707
  def DifferenceRow(self):
759
708
  """数据行不一致的详情,mongodb业务用到
760
- 注意:此字段可能返回 null,表示取不到有效值。
761
709
  :rtype: :class:`tencentcloud.dts.v20211206.models.DifferenceRowDetail`
762
710
  """
763
711
  return self._DifferenceRow
@@ -805,6 +753,7 @@ class CompareObject(AbstractModel):
805
753
  :param _ObjectItems: 对象列表
806
754
  :type ObjectItems: list of CompareObjectItem
807
755
  :param _AdvancedObjects: 高级对象类型,目前只支持mongodb链路。如index(索引),shardkey(片键),schema(库表)
756
+ 注意:此字段可能返回 null,表示取不到有效值。
808
757
  :type AdvancedObjects: list of str
809
758
  """
810
759
  self._ObjectMode = None
@@ -836,6 +785,7 @@ class CompareObject(AbstractModel):
836
785
  @property
837
786
  def AdvancedObjects(self):
838
787
  """高级对象类型,目前只支持mongodb链路。如index(索引),shardkey(片键),schema(库表)
788
+ 注意:此字段可能返回 null,表示取不到有效值。
839
789
  :rtype: list of str
840
790
  """
841
791
  return self._AdvancedObjects
@@ -1198,46 +1148,32 @@ class CompareTaskItem(AbstractModel):
1198
1148
  def __init__(self):
1199
1149
  r"""
1200
1150
  :param _JobId: 任务id
1201
- 注意:此字段可能返回 null,表示取不到有效值。
1202
1151
  :type JobId: str
1203
1152
  :param _CompareTaskId: 对比任务 Id
1204
- 注意:此字段可能返回 null,表示取不到有效值。
1205
1153
  :type CompareTaskId: str
1206
1154
  :param _TaskName: 对比任务名称
1207
- 注意:此字段可能返回 null,表示取不到有效值。
1208
1155
  :type TaskName: str
1209
1156
  :param _Status: 对比任务状态, 可能的值:created - 创建完成;readyRun - 等待运行;running - 运行中;success - 成功;stopping - 结束中;failed - 失败;canceled - 已终止
1210
- 注意:此字段可能返回 null,表示取不到有效值。
1211
1157
  :type Status: str
1212
1158
  :param _Config: 对比任务配置
1213
- 注意:此字段可能返回 null,表示取不到有效值。
1214
1159
  :type Config: :class:`tencentcloud.dts.v20211206.models.CompareObject`
1215
1160
  :param _CheckProcess: 对比任务校验详情
1216
- 注意:此字段可能返回 null,表示取不到有效值。
1217
1161
  :type CheckProcess: :class:`tencentcloud.dts.v20211206.models.ProcessProgress`
1218
1162
  :param _CompareProcess: 对比任务运行详情
1219
- 注意:此字段可能返回 null,表示取不到有效值。
1220
1163
  :type CompareProcess: :class:`tencentcloud.dts.v20211206.models.ProcessProgress`
1221
1164
  :param _Conclusion: 对比结果, 可能的值:same - 一致;different - 不一致;skipAll - 跳过
1222
- 注意:此字段可能返回 null,表示取不到有效值。
1223
1165
  :type Conclusion: str
1224
1166
  :param _CreatedAt: 任务创建时间
1225
- 注意:此字段可能返回 null,表示取不到有效值。
1226
1167
  :type CreatedAt: str
1227
1168
  :param _StartedAt: 任务启动时间
1228
- 注意:此字段可能返回 null,表示取不到有效值。
1229
1169
  :type StartedAt: str
1230
1170
  :param _FinishedAt: 对比结束时间
1231
- 注意:此字段可能返回 null,表示取不到有效值。
1232
1171
  :type FinishedAt: str
1233
1172
  :param _Method: 对比类型,dataCheck(完整数据对比)、sampleDataCheck(抽样数据对比)、rowsCount(行数对比)
1234
- 注意:此字段可能返回 null,表示取不到有效值。
1235
1173
  :type Method: str
1236
1174
  :param _Options: 对比配置信息
1237
- 注意:此字段可能返回 null,表示取不到有效值。
1238
1175
  :type Options: :class:`tencentcloud.dts.v20211206.models.CompareOptions`
1239
1176
  :param _Message: 一致性校验提示信息
1240
- 注意:此字段可能返回 null,表示取不到有效值。
1241
1177
  :type Message: str
1242
1178
  """
1243
1179
  self._JobId = None
@@ -1258,7 +1194,6 @@ class CompareTaskItem(AbstractModel):
1258
1194
  @property
1259
1195
  def JobId(self):
1260
1196
  """任务id
1261
- 注意:此字段可能返回 null,表示取不到有效值。
1262
1197
  :rtype: str
1263
1198
  """
1264
1199
  return self._JobId
@@ -1270,7 +1205,6 @@ class CompareTaskItem(AbstractModel):
1270
1205
  @property
1271
1206
  def CompareTaskId(self):
1272
1207
  """对比任务 Id
1273
- 注意:此字段可能返回 null,表示取不到有效值。
1274
1208
  :rtype: str
1275
1209
  """
1276
1210
  return self._CompareTaskId
@@ -1282,7 +1216,6 @@ class CompareTaskItem(AbstractModel):
1282
1216
  @property
1283
1217
  def TaskName(self):
1284
1218
  """对比任务名称
1285
- 注意:此字段可能返回 null,表示取不到有效值。
1286
1219
  :rtype: str
1287
1220
  """
1288
1221
  return self._TaskName
@@ -1294,7 +1227,6 @@ class CompareTaskItem(AbstractModel):
1294
1227
  @property
1295
1228
  def Status(self):
1296
1229
  """对比任务状态, 可能的值:created - 创建完成;readyRun - 等待运行;running - 运行中;success - 成功;stopping - 结束中;failed - 失败;canceled - 已终止
1297
- 注意:此字段可能返回 null,表示取不到有效值。
1298
1230
  :rtype: str
1299
1231
  """
1300
1232
  return self._Status
@@ -1306,7 +1238,6 @@ class CompareTaskItem(AbstractModel):
1306
1238
  @property
1307
1239
  def Config(self):
1308
1240
  """对比任务配置
1309
- 注意:此字段可能返回 null,表示取不到有效值。
1310
1241
  :rtype: :class:`tencentcloud.dts.v20211206.models.CompareObject`
1311
1242
  """
1312
1243
  return self._Config
@@ -1318,7 +1249,6 @@ class CompareTaskItem(AbstractModel):
1318
1249
  @property
1319
1250
  def CheckProcess(self):
1320
1251
  """对比任务校验详情
1321
- 注意:此字段可能返回 null,表示取不到有效值。
1322
1252
  :rtype: :class:`tencentcloud.dts.v20211206.models.ProcessProgress`
1323
1253
  """
1324
1254
  return self._CheckProcess
@@ -1330,7 +1260,6 @@ class CompareTaskItem(AbstractModel):
1330
1260
  @property
1331
1261
  def CompareProcess(self):
1332
1262
  """对比任务运行详情
1333
- 注意:此字段可能返回 null,表示取不到有效值。
1334
1263
  :rtype: :class:`tencentcloud.dts.v20211206.models.ProcessProgress`
1335
1264
  """
1336
1265
  return self._CompareProcess
@@ -1342,7 +1271,6 @@ class CompareTaskItem(AbstractModel):
1342
1271
  @property
1343
1272
  def Conclusion(self):
1344
1273
  """对比结果, 可能的值:same - 一致;different - 不一致;skipAll - 跳过
1345
- 注意:此字段可能返回 null,表示取不到有效值。
1346
1274
  :rtype: str
1347
1275
  """
1348
1276
  return self._Conclusion
@@ -1354,7 +1282,6 @@ class CompareTaskItem(AbstractModel):
1354
1282
  @property
1355
1283
  def CreatedAt(self):
1356
1284
  """任务创建时间
1357
- 注意:此字段可能返回 null,表示取不到有效值。
1358
1285
  :rtype: str
1359
1286
  """
1360
1287
  return self._CreatedAt
@@ -1366,7 +1293,6 @@ class CompareTaskItem(AbstractModel):
1366
1293
  @property
1367
1294
  def StartedAt(self):
1368
1295
  """任务启动时间
1369
- 注意:此字段可能返回 null,表示取不到有效值。
1370
1296
  :rtype: str
1371
1297
  """
1372
1298
  return self._StartedAt
@@ -1378,7 +1304,6 @@ class CompareTaskItem(AbstractModel):
1378
1304
  @property
1379
1305
  def FinishedAt(self):
1380
1306
  """对比结束时间
1381
- 注意:此字段可能返回 null,表示取不到有效值。
1382
1307
  :rtype: str
1383
1308
  """
1384
1309
  return self._FinishedAt
@@ -1390,7 +1315,6 @@ class CompareTaskItem(AbstractModel):
1390
1315
  @property
1391
1316
  def Method(self):
1392
1317
  """对比类型,dataCheck(完整数据对比)、sampleDataCheck(抽样数据对比)、rowsCount(行数对比)
1393
- 注意:此字段可能返回 null,表示取不到有效值。
1394
1318
  :rtype: str
1395
1319
  """
1396
1320
  return self._Method
@@ -1402,7 +1326,6 @@ class CompareTaskItem(AbstractModel):
1402
1326
  @property
1403
1327
  def Options(self):
1404
1328
  """对比配置信息
1405
- 注意:此字段可能返回 null,表示取不到有效值。
1406
1329
  :rtype: :class:`tencentcloud.dts.v20211206.models.CompareOptions`
1407
1330
  """
1408
1331
  return self._Options
@@ -1414,7 +1337,6 @@ class CompareTaskItem(AbstractModel):
1414
1337
  @property
1415
1338
  def Message(self):
1416
1339
  """一致性校验提示信息
1417
- 注意:此字段可能返回 null,表示取不到有效值。
1418
1340
  :rtype: str
1419
1341
  """
1420
1342
  return self._Message
@@ -2502,7 +2424,6 @@ class CreateCompareTaskResponse(AbstractModel):
2502
2424
  def __init__(self):
2503
2425
  r"""
2504
2426
  :param _CompareTaskId: 数据对比任务 ID,形如:dts-8yv4w2i1-cmp-37skmii9
2505
- 注意:此字段可能返回 null,表示取不到有效值。
2506
2427
  :type CompareTaskId: str
2507
2428
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2508
2429
  :type RequestId: str
@@ -2513,7 +2434,6 @@ class CreateCompareTaskResponse(AbstractModel):
2513
2434
  @property
2514
2435
  def CompareTaskId(self):
2515
2436
  """数据对比任务 ID,形如:dts-8yv4w2i1-cmp-37skmii9
2516
- 注意:此字段可能返回 null,表示取不到有效值。
2517
2437
  :rtype: str
2518
2438
  """
2519
2439
  return self._CompareTaskId
@@ -5238,10 +5158,8 @@ class DescribeCompareReportResponse(AbstractModel):
5238
5158
  def __init__(self):
5239
5159
  r"""
5240
5160
  :param _Abstract: 一致性校验摘要信息
5241
- 注意:此字段可能返回 null,表示取不到有效值。
5242
5161
  :type Abstract: :class:`tencentcloud.dts.v20211206.models.CompareAbstractInfo`
5243
5162
  :param _Detail: 一致性校验详细信息
5244
- 注意:此字段可能返回 null,表示取不到有效值。
5245
5163
  :type Detail: :class:`tencentcloud.dts.v20211206.models.CompareDetailInfo`
5246
5164
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5247
5165
  :type RequestId: str
@@ -5253,7 +5171,6 @@ class DescribeCompareReportResponse(AbstractModel):
5253
5171
  @property
5254
5172
  def Abstract(self):
5255
5173
  """一致性校验摘要信息
5256
- 注意:此字段可能返回 null,表示取不到有效值。
5257
5174
  :rtype: :class:`tencentcloud.dts.v20211206.models.CompareAbstractInfo`
5258
5175
  """
5259
5176
  return self._Abstract
@@ -5265,7 +5182,6 @@ class DescribeCompareReportResponse(AbstractModel):
5265
5182
  @property
5266
5183
  def Detail(self):
5267
5184
  """一致性校验详细信息
5268
- 注意:此字段可能返回 null,表示取不到有效值。
5269
5185
  :rtype: :class:`tencentcloud.dts.v20211206.models.CompareDetailInfo`
5270
5186
  """
5271
5187
  return self._Detail
@@ -5400,10 +5316,8 @@ class DescribeCompareTasksResponse(AbstractModel):
5400
5316
  def __init__(self):
5401
5317
  r"""
5402
5318
  :param _TotalCount: 数量
5403
- 注意:此字段可能返回 null,表示取不到有效值。
5404
5319
  :type TotalCount: int
5405
5320
  :param _Items: 一致性校验列表
5406
- 注意:此字段可能返回 null,表示取不到有效值。
5407
5321
  :type Items: list of CompareTaskItem
5408
5322
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5409
5323
  :type RequestId: str
@@ -5415,7 +5329,6 @@ class DescribeCompareTasksResponse(AbstractModel):
5415
5329
  @property
5416
5330
  def TotalCount(self):
5417
5331
  """数量
5418
- 注意:此字段可能返回 null,表示取不到有效值。
5419
5332
  :rtype: int
5420
5333
  """
5421
5334
  return self._TotalCount
@@ -5427,7 +5340,6 @@ class DescribeCompareTasksResponse(AbstractModel):
5427
5340
  @property
5428
5341
  def Items(self):
5429
5342
  """一致性校验列表
5430
- 注意:此字段可能返回 null,表示取不到有效值。
5431
5343
  :rtype: list of CompareTaskItem
5432
5344
  """
5433
5345
  return self._Items
@@ -5866,13 +5778,10 @@ class DescribeMigrationCheckJobResponse(AbstractModel):
5866
5778
  def __init__(self):
5867
5779
  r"""
5868
5780
  :param _Status: 校验任务执行状态,如:notStarted(未开始)、running(校验中)、failed(校验任务失败)、success(任务成功)
5869
- 注意:此字段可能返回 null,表示取不到有效值。
5870
5781
  :type Status: str
5871
5782
  :param _BriefMsg: 校验任务结果输出简要信息
5872
- 注意:此字段可能返回 null,表示取不到有效值。
5873
5783
  :type BriefMsg: str
5874
5784
  :param _StepInfo: 检查步骤
5875
- 注意:此字段可能返回 null,表示取不到有效值。
5876
5785
  :type StepInfo: list of CheckStep
5877
5786
  :param _CheckFlag: 校验结果,如:checkPass(校验通过)、checkNotPass(校验未通过)
5878
5787
  :type CheckFlag: str
@@ -5888,7 +5797,6 @@ class DescribeMigrationCheckJobResponse(AbstractModel):
5888
5797
  @property
5889
5798
  def Status(self):
5890
5799
  """校验任务执行状态,如:notStarted(未开始)、running(校验中)、failed(校验任务失败)、success(任务成功)
5891
- 注意:此字段可能返回 null,表示取不到有效值。
5892
5800
  :rtype: str
5893
5801
  """
5894
5802
  return self._Status
@@ -5900,7 +5808,6 @@ class DescribeMigrationCheckJobResponse(AbstractModel):
5900
5808
  @property
5901
5809
  def BriefMsg(self):
5902
5810
  """校验任务结果输出简要信息
5903
- 注意:此字段可能返回 null,表示取不到有效值。
5904
5811
  :rtype: str
5905
5812
  """
5906
5813
  return self._BriefMsg
@@ -5912,7 +5819,6 @@ class DescribeMigrationCheckJobResponse(AbstractModel):
5912
5819
  @property
5913
5820
  def StepInfo(self):
5914
5821
  """检查步骤
5915
- 注意:此字段可能返回 null,表示取不到有效值。
5916
5822
  :rtype: list of CheckStep
5917
5823
  """
5918
5824
  return self._StepInfo
@@ -6657,10 +6563,8 @@ class DescribeMigrationJobsResponse(AbstractModel):
6657
6563
  def __init__(self):
6658
6564
  r"""
6659
6565
  :param _TotalCount: 迁移任务数量
6660
- 注意:此字段可能返回 null,表示取不到有效值。
6661
6566
  :type TotalCount: int
6662
6567
  :param _JobList: 迁移任务列表
6663
- 注意:此字段可能返回 null,表示取不到有效值。
6664
6568
  :type JobList: list of JobItem
6665
6569
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6666
6570
  :type RequestId: str
@@ -6672,7 +6576,6 @@ class DescribeMigrationJobsResponse(AbstractModel):
6672
6576
  @property
6673
6577
  def TotalCount(self):
6674
6578
  """迁移任务数量
6675
- 注意:此字段可能返回 null,表示取不到有效值。
6676
6579
  :rtype: int
6677
6580
  """
6678
6581
  return self._TotalCount
@@ -6684,7 +6587,6 @@ class DescribeMigrationJobsResponse(AbstractModel):
6684
6587
  @property
6685
6588
  def JobList(self):
6686
6589
  """迁移任务列表
6687
- 注意:此字段可能返回 null,表示取不到有效值。
6688
6590
  :rtype: list of JobItem
6689
6591
  """
6690
6592
  return self._JobList
@@ -8534,28 +8436,20 @@ class DetailCheckItem(AbstractModel):
8534
8436
  def __init__(self):
8535
8437
  r"""
8536
8438
  :param _CheckItemName: 检查项的名称,如:源实例权限检查
8537
- 注意:此字段可能返回 null,表示取不到有效值。
8538
8439
  :type CheckItemName: str
8539
8440
  :param _Description: 检查项详细内容
8540
- 注意:此字段可能返回 null,表示取不到有效值。
8541
8441
  :type Description: str
8542
8442
  :param _CheckResult: pass(通过),failed(失败), warning(校验有警告,但仍通过)
8543
- 注意:此字段可能返回 null,表示取不到有效值。
8544
8443
  :type CheckResult: str
8545
8444
  :param _FailureReason: 检查项失败原因
8546
- 注意:此字段可能返回 null,表示取不到有效值。
8547
8445
  :type FailureReason: str
8548
8446
  :param _Solution: 解决方案
8549
- 注意:此字段可能返回 null,表示取不到有效值。
8550
8447
  :type Solution: str
8551
8448
  :param _ErrorLog: 运行报错日志
8552
- 注意:此字段可能返回 null,表示取不到有效值。
8553
8449
  :type ErrorLog: list of str
8554
8450
  :param _HelpDoc: 详细帮助的文档链接
8555
- 注意:此字段可能返回 null,表示取不到有效值。
8556
8451
  :type HelpDoc: list of str
8557
8452
  :param _SkipInfo: 跳过风险文案
8558
- 注意:此字段可能返回 null,表示取不到有效值。
8559
8453
  :type SkipInfo: str
8560
8454
  """
8561
8455
  self._CheckItemName = None
@@ -8570,7 +8464,6 @@ class DetailCheckItem(AbstractModel):
8570
8464
  @property
8571
8465
  def CheckItemName(self):
8572
8466
  """检查项的名称,如:源实例权限检查
8573
- 注意:此字段可能返回 null,表示取不到有效值。
8574
8467
  :rtype: str
8575
8468
  """
8576
8469
  return self._CheckItemName
@@ -8582,7 +8475,6 @@ class DetailCheckItem(AbstractModel):
8582
8475
  @property
8583
8476
  def Description(self):
8584
8477
  """检查项详细内容
8585
- 注意:此字段可能返回 null,表示取不到有效值。
8586
8478
  :rtype: str
8587
8479
  """
8588
8480
  return self._Description
@@ -8594,7 +8486,6 @@ class DetailCheckItem(AbstractModel):
8594
8486
  @property
8595
8487
  def CheckResult(self):
8596
8488
  """pass(通过),failed(失败), warning(校验有警告,但仍通过)
8597
- 注意:此字段可能返回 null,表示取不到有效值。
8598
8489
  :rtype: str
8599
8490
  """
8600
8491
  return self._CheckResult
@@ -8606,7 +8497,6 @@ class DetailCheckItem(AbstractModel):
8606
8497
  @property
8607
8498
  def FailureReason(self):
8608
8499
  """检查项失败原因
8609
- 注意:此字段可能返回 null,表示取不到有效值。
8610
8500
  :rtype: str
8611
8501
  """
8612
8502
  return self._FailureReason
@@ -8618,7 +8508,6 @@ class DetailCheckItem(AbstractModel):
8618
8508
  @property
8619
8509
  def Solution(self):
8620
8510
  """解决方案
8621
- 注意:此字段可能返回 null,表示取不到有效值。
8622
8511
  :rtype: str
8623
8512
  """
8624
8513
  return self._Solution
@@ -8630,7 +8519,6 @@ class DetailCheckItem(AbstractModel):
8630
8519
  @property
8631
8520
  def ErrorLog(self):
8632
8521
  """运行报错日志
8633
- 注意:此字段可能返回 null,表示取不到有效值。
8634
8522
  :rtype: list of str
8635
8523
  """
8636
8524
  return self._ErrorLog
@@ -8642,7 +8530,6 @@ class DetailCheckItem(AbstractModel):
8642
8530
  @property
8643
8531
  def HelpDoc(self):
8644
8532
  """详细帮助的文档链接
8645
- 注意:此字段可能返回 null,表示取不到有效值。
8646
8533
  :rtype: list of str
8647
8534
  """
8648
8535
  return self._HelpDoc
@@ -8654,7 +8541,6 @@ class DetailCheckItem(AbstractModel):
8654
8541
  @property
8655
8542
  def SkipInfo(self):
8656
8543
  """跳过风险文案
8657
- 注意:此字段可能返回 null,表示取不到有效值。
8658
8544
  :rtype: str
8659
8545
  """
8660
8546
  return self._SkipInfo
@@ -8749,25 +8635,18 @@ class DifferenceData(AbstractModel):
8749
8635
  def __init__(self):
8750
8636
  r"""
8751
8637
  :param _Db: 数据库名
8752
- 注意:此字段可能返回 null,表示取不到有效值。
8753
8638
  :type Db: str
8754
8639
  :param _Table: 集合
8755
- 注意:此字段可能返回 null,表示取不到有效值。
8756
8640
  :type Table: str
8757
8641
  :param _SrcChunk: 源端ID
8758
- 注意:此字段可能返回 null,表示取不到有效值。
8759
8642
  :type SrcChunk: str
8760
8643
  :param _DstChunk: 目标端ID
8761
- 注意:此字段可能返回 null,表示取不到有效值。
8762
8644
  :type DstChunk: str
8763
8645
  :param _SrcItem: 源端值
8764
- 注意:此字段可能返回 null,表示取不到有效值。
8765
8646
  :type SrcItem: str
8766
8647
  :param _DstItem: 目标端值
8767
- 注意:此字段可能返回 null,表示取不到有效值。
8768
8648
  :type DstItem: str
8769
8649
  :param _UpdatedAt: 更新时间
8770
- 注意:此字段可能返回 null,表示取不到有效值。
8771
8650
  :type UpdatedAt: str
8772
8651
  """
8773
8652
  self._Db = None
@@ -8781,7 +8660,6 @@ class DifferenceData(AbstractModel):
8781
8660
  @property
8782
8661
  def Db(self):
8783
8662
  """数据库名
8784
- 注意:此字段可能返回 null,表示取不到有效值。
8785
8663
  :rtype: str
8786
8664
  """
8787
8665
  return self._Db
@@ -8793,7 +8671,6 @@ class DifferenceData(AbstractModel):
8793
8671
  @property
8794
8672
  def Table(self):
8795
8673
  """集合
8796
- 注意:此字段可能返回 null,表示取不到有效值。
8797
8674
  :rtype: str
8798
8675
  """
8799
8676
  return self._Table
@@ -8805,7 +8682,6 @@ class DifferenceData(AbstractModel):
8805
8682
  @property
8806
8683
  def SrcChunk(self):
8807
8684
  """源端ID
8808
- 注意:此字段可能返回 null,表示取不到有效值。
8809
8685
  :rtype: str
8810
8686
  """
8811
8687
  return self._SrcChunk
@@ -8817,7 +8693,6 @@ class DifferenceData(AbstractModel):
8817
8693
  @property
8818
8694
  def DstChunk(self):
8819
8695
  """目标端ID
8820
- 注意:此字段可能返回 null,表示取不到有效值。
8821
8696
  :rtype: str
8822
8697
  """
8823
8698
  return self._DstChunk
@@ -8829,7 +8704,6 @@ class DifferenceData(AbstractModel):
8829
8704
  @property
8830
8705
  def SrcItem(self):
8831
8706
  """源端值
8832
- 注意:此字段可能返回 null,表示取不到有效值。
8833
8707
  :rtype: str
8834
8708
  """
8835
8709
  return self._SrcItem
@@ -8841,7 +8715,6 @@ class DifferenceData(AbstractModel):
8841
8715
  @property
8842
8716
  def DstItem(self):
8843
8717
  """目标端值
8844
- 注意:此字段可能返回 null,表示取不到有效值。
8845
8718
  :rtype: str
8846
8719
  """
8847
8720
  return self._DstItem
@@ -8853,7 +8726,6 @@ class DifferenceData(AbstractModel):
8853
8726
  @property
8854
8727
  def UpdatedAt(self):
8855
8728
  """更新时间
8856
- 注意:此字段可能返回 null,表示取不到有效值。
8857
8729
  :rtype: str
8858
8730
  """
8859
8731
  return self._UpdatedAt
@@ -8889,7 +8761,6 @@ class DifferenceDataDetail(AbstractModel):
8889
8761
  def __init__(self):
8890
8762
  r"""
8891
8763
  :param _TotalCount: 总数
8892
- 注意:此字段可能返回 null,表示取不到有效值。
8893
8764
  :type TotalCount: int
8894
8765
  :param _Items: mongo数据不一致详细列表
8895
8766
  注意:此字段可能返回 null,表示取不到有效值。
@@ -8901,7 +8772,6 @@ class DifferenceDataDetail(AbstractModel):
8901
8772
  @property
8902
8773
  def TotalCount(self):
8903
8774
  """总数
8904
- 注意:此字段可能返回 null,表示取不到有效值。
8905
8775
  :rtype: int
8906
8776
  """
8907
8777
  return self._TotalCount
@@ -8949,7 +8819,6 @@ class DifferenceDetail(AbstractModel):
8949
8819
  def __init__(self):
8950
8820
  r"""
8951
8821
  :param _TotalCount: 数据不一致的表数量
8952
- 注意:此字段可能返回 null,表示取不到有效值。
8953
8822
  :type TotalCount: int
8954
8823
  :param _Items: 校验不一致的表详情
8955
8824
  注意:此字段可能返回 null,表示取不到有效值。
@@ -8961,7 +8830,6 @@ class DifferenceDetail(AbstractModel):
8961
8830
  @property
8962
8831
  def TotalCount(self):
8963
8832
  """数据不一致的表数量
8964
- 注意:此字段可能返回 null,表示取不到有效值。
8965
8833
  :rtype: int
8966
8834
  """
8967
8835
  return self._TotalCount
@@ -9009,34 +8877,24 @@ class DifferenceItem(AbstractModel):
9009
8877
  def __init__(self):
9010
8878
  r"""
9011
8879
  :param _Db: 数据库名
9012
- 注意:此字段可能返回 null,表示取不到有效值。
9013
8880
  :type Db: str
9014
8881
  :param _Table: 表名
9015
- 注意:此字段可能返回 null,表示取不到有效值。
9016
8882
  :type Table: str
9017
8883
  :param _Chunk: 分块号
9018
- 注意:此字段可能返回 null,表示取不到有效值。
9019
8884
  :type Chunk: int
9020
8885
  :param _SrcItem: 源库数值
9021
- 注意:此字段可能返回 null,表示取不到有效值。
9022
8886
  :type SrcItem: str
9023
8887
  :param _DstItem: 目标库数值
9024
- 注意:此字段可能返回 null,表示取不到有效值。
9025
8888
  :type DstItem: str
9026
8889
  :param _IndexName: 索引名称
9027
- 注意:此字段可能返回 null,表示取不到有效值。
9028
8890
  :type IndexName: str
9029
8891
  :param _LowerBoundary: 索引下边界
9030
- 注意:此字段可能返回 null,表示取不到有效值。
9031
8892
  :type LowerBoundary: str
9032
8893
  :param _UpperBoundary: 索引上边界
9033
- 注意:此字段可能返回 null,表示取不到有效值。
9034
8894
  :type UpperBoundary: str
9035
8895
  :param _CostTime: 对比消耗时间,单位为 ms
9036
- 注意:此字段可能返回 null,表示取不到有效值。
9037
8896
  :type CostTime: float
9038
8897
  :param _FinishedAt: 完成时间
9039
- 注意:此字段可能返回 null,表示取不到有效值。
9040
8898
  :type FinishedAt: str
9041
8899
  """
9042
8900
  self._Db = None
@@ -9053,7 +8911,6 @@ class DifferenceItem(AbstractModel):
9053
8911
  @property
9054
8912
  def Db(self):
9055
8913
  """数据库名
9056
- 注意:此字段可能返回 null,表示取不到有效值。
9057
8914
  :rtype: str
9058
8915
  """
9059
8916
  return self._Db
@@ -9065,7 +8922,6 @@ class DifferenceItem(AbstractModel):
9065
8922
  @property
9066
8923
  def Table(self):
9067
8924
  """表名
9068
- 注意:此字段可能返回 null,表示取不到有效值。
9069
8925
  :rtype: str
9070
8926
  """
9071
8927
  return self._Table
@@ -9077,7 +8933,6 @@ class DifferenceItem(AbstractModel):
9077
8933
  @property
9078
8934
  def Chunk(self):
9079
8935
  """分块号
9080
- 注意:此字段可能返回 null,表示取不到有效值。
9081
8936
  :rtype: int
9082
8937
  """
9083
8938
  return self._Chunk
@@ -9089,7 +8944,6 @@ class DifferenceItem(AbstractModel):
9089
8944
  @property
9090
8945
  def SrcItem(self):
9091
8946
  """源库数值
9092
- 注意:此字段可能返回 null,表示取不到有效值。
9093
8947
  :rtype: str
9094
8948
  """
9095
8949
  return self._SrcItem
@@ -9101,7 +8955,6 @@ class DifferenceItem(AbstractModel):
9101
8955
  @property
9102
8956
  def DstItem(self):
9103
8957
  """目标库数值
9104
- 注意:此字段可能返回 null,表示取不到有效值。
9105
8958
  :rtype: str
9106
8959
  """
9107
8960
  return self._DstItem
@@ -9113,7 +8966,6 @@ class DifferenceItem(AbstractModel):
9113
8966
  @property
9114
8967
  def IndexName(self):
9115
8968
  """索引名称
9116
- 注意:此字段可能返回 null,表示取不到有效值。
9117
8969
  :rtype: str
9118
8970
  """
9119
8971
  return self._IndexName
@@ -9125,7 +8977,6 @@ class DifferenceItem(AbstractModel):
9125
8977
  @property
9126
8978
  def LowerBoundary(self):
9127
8979
  """索引下边界
9128
- 注意:此字段可能返回 null,表示取不到有效值。
9129
8980
  :rtype: str
9130
8981
  """
9131
8982
  return self._LowerBoundary
@@ -9137,7 +8988,6 @@ class DifferenceItem(AbstractModel):
9137
8988
  @property
9138
8989
  def UpperBoundary(self):
9139
8990
  """索引上边界
9140
- 注意:此字段可能返回 null,表示取不到有效值。
9141
8991
  :rtype: str
9142
8992
  """
9143
8993
  return self._UpperBoundary
@@ -9149,7 +8999,6 @@ class DifferenceItem(AbstractModel):
9149
8999
  @property
9150
9000
  def CostTime(self):
9151
9001
  """对比消耗时间,单位为 ms
9152
- 注意:此字段可能返回 null,表示取不到有效值。
9153
9002
  :rtype: float
9154
9003
  """
9155
9004
  return self._CostTime
@@ -9161,7 +9010,6 @@ class DifferenceItem(AbstractModel):
9161
9010
  @property
9162
9011
  def FinishedAt(self):
9163
9012
  """完成时间
9164
- 注意:此字段可能返回 null,表示取不到有效值。
9165
9013
  :rtype: str
9166
9014
  """
9167
9015
  return self._FinishedAt
@@ -9200,7 +9048,6 @@ class DifferenceRowDetail(AbstractModel):
9200
9048
  def __init__(self):
9201
9049
  r"""
9202
9050
  :param _TotalCount: 不一致总数
9203
- 注意:此字段可能返回 null,表示取不到有效值。
9204
9051
  :type TotalCount: int
9205
9052
  :param _Items: 不一致列表
9206
9053
  注意:此字段可能返回 null,表示取不到有效值。
@@ -9212,7 +9059,6 @@ class DifferenceRowDetail(AbstractModel):
9212
9059
  @property
9213
9060
  def TotalCount(self):
9214
9061
  """不一致总数
9215
- 注意:此字段可能返回 null,表示取不到有效值。
9216
9062
  :rtype: int
9217
9063
  """
9218
9064
  return self._TotalCount
@@ -10739,63 +10585,44 @@ class JobItem(AbstractModel):
10739
10585
  def __init__(self):
10740
10586
  r"""
10741
10587
  :param _JobId: 数据迁移任务ID
10742
- 注意:此字段可能返回 null,表示取不到有效值。
10743
10588
  :type JobId: str
10744
10589
  :param _JobName: 数据迁移任务名称
10745
- 注意:此字段可能返回 null,表示取不到有效值。
10746
10590
  :type JobName: str
10747
10591
  :param _CreateTime: 任务创建(提交)时间,格式为 yyyy-mm-dd hh:mm:ss
10748
- 注意:此字段可能返回 null,表示取不到有效值。
10749
10592
  :type CreateTime: str
10750
10593
  :param _UpdateTime: 任务更新时间,格式为 yyyy-mm-dd hh:mm:ss
10751
- 注意:此字段可能返回 null,表示取不到有效值。
10752
10594
  :type UpdateTime: str
10753
10595
  :param _StartTime: 任务开始执行时间,格式为 yyyy-mm-dd hh:mm:ss
10754
- 注意:此字段可能返回 null,表示取不到有效值。
10755
10596
  :type StartTime: str
10756
10597
  :param _EndTime: 任务执行结束时间,格式为 yyyy-mm-dd hh:mm:ss
10757
- 注意:此字段可能返回 null,表示取不到有效值。
10758
10598
  :type EndTime: str
10759
10599
  :param _BriefMsg: 迁移任务错误信息
10760
- 注意:此字段可能返回 null,表示取不到有效值。
10761
10600
  :type BriefMsg: str
10762
10601
  :param _Status: 任务状态,取值为:creating(创建中)、created(创建完成)、checking(校验中)、checkPass(校验通过)、checkNotPass(校验不通过)、readyRun(准备运行)、running(任务运行)、readyComplete(准备完成)、success(任务成功)、failed(任务失败)、stopping(中止中)、completing(完成中)、
10763
10602
  pausing(暂停中)、
10764
10603
  manualPaused(已暂停)
10765
- 注意:此字段可能返回 null,表示取不到有效值。
10766
10604
  :type Status: str
10767
10605
  :param _RunMode: 任务运行模式,值包括:immediate(立即运行),timed(定时运行)
10768
- 注意:此字段可能返回 null,表示取不到有效值。
10769
10606
  :type RunMode: str
10770
10607
  :param _ExpectRunTime: 期待启动时间,当RunMode取值为timed时,此值必填,形如:2022-07-11 16:20:49
10771
- 注意:此字段可能返回 null,表示取不到有效值。
10772
10608
  :type ExpectRunTime: str
10773
10609
  :param _Action: 任务操作信息
10774
- 注意:此字段可能返回 null,表示取不到有效值。
10775
10610
  :type Action: :class:`tencentcloud.dts.v20211206.models.MigrateAction`
10776
10611
  :param _StepInfo: 迁移执行过程信息
10777
- 注意:此字段可能返回 null,表示取不到有效值。
10778
10612
  :type StepInfo: :class:`tencentcloud.dts.v20211206.models.MigrateDetailInfo`
10779
10613
  :param _SrcInfo: 源实例信息
10780
- 注意:此字段可能返回 null,表示取不到有效值。
10781
10614
  :type SrcInfo: :class:`tencentcloud.dts.v20211206.models.DBEndpointInfo`
10782
10615
  :param _DstInfo: 目标端信息
10783
- 注意:此字段可能返回 null,表示取不到有效值。
10784
10616
  :type DstInfo: :class:`tencentcloud.dts.v20211206.models.DBEndpointInfo`
10785
10617
  :param _CompareTask: 数据一致性校验结果
10786
- 注意:此字段可能返回 null,表示取不到有效值。
10787
10618
  :type CompareTask: :class:`tencentcloud.dts.v20211206.models.CompareTaskInfo`
10788
10619
  :param _TradeInfo: 计费状态信息
10789
- 注意:此字段可能返回 null,表示取不到有效值。
10790
10620
  :type TradeInfo: :class:`tencentcloud.dts.v20211206.models.TradeInfo`
10791
10621
  :param _Tags: 标签信息
10792
- 注意:此字段可能返回 null,表示取不到有效值。
10793
10622
  :type Tags: list of TagItem
10794
10623
  :param _AutoRetryTimeRangeMinutes: 自动重试时间段信息
10795
- 注意:此字段可能返回 null,表示取不到有效值。
10796
10624
  :type AutoRetryTimeRangeMinutes: int
10797
10625
  :param _DumperResumeCtrl: 全量导出可重入标识:enum::"yes"/"no"。yes表示当前任务可重入、no表示当前任务处于全量导出且不可重入阶段;如果在该值为no时重启任务导出流程不支持断点续传
10798
- 注意:此字段可能返回 null,表示取不到有效值。
10799
10626
  :type DumperResumeCtrl: str
10800
10627
  """
10801
10628
  self._JobId = None
@@ -10821,7 +10648,6 @@ manualPaused(已暂停)
10821
10648
  @property
10822
10649
  def JobId(self):
10823
10650
  """数据迁移任务ID
10824
- 注意:此字段可能返回 null,表示取不到有效值。
10825
10651
  :rtype: str
10826
10652
  """
10827
10653
  return self._JobId
@@ -10833,7 +10659,6 @@ manualPaused(已暂停)
10833
10659
  @property
10834
10660
  def JobName(self):
10835
10661
  """数据迁移任务名称
10836
- 注意:此字段可能返回 null,表示取不到有效值。
10837
10662
  :rtype: str
10838
10663
  """
10839
10664
  return self._JobName
@@ -10845,7 +10670,6 @@ manualPaused(已暂停)
10845
10670
  @property
10846
10671
  def CreateTime(self):
10847
10672
  """任务创建(提交)时间,格式为 yyyy-mm-dd hh:mm:ss
10848
- 注意:此字段可能返回 null,表示取不到有效值。
10849
10673
  :rtype: str
10850
10674
  """
10851
10675
  return self._CreateTime
@@ -10857,7 +10681,6 @@ manualPaused(已暂停)
10857
10681
  @property
10858
10682
  def UpdateTime(self):
10859
10683
  """任务更新时间,格式为 yyyy-mm-dd hh:mm:ss
10860
- 注意:此字段可能返回 null,表示取不到有效值。
10861
10684
  :rtype: str
10862
10685
  """
10863
10686
  return self._UpdateTime
@@ -10869,7 +10692,6 @@ manualPaused(已暂停)
10869
10692
  @property
10870
10693
  def StartTime(self):
10871
10694
  """任务开始执行时间,格式为 yyyy-mm-dd hh:mm:ss
10872
- 注意:此字段可能返回 null,表示取不到有效值。
10873
10695
  :rtype: str
10874
10696
  """
10875
10697
  return self._StartTime
@@ -10881,7 +10703,6 @@ manualPaused(已暂停)
10881
10703
  @property
10882
10704
  def EndTime(self):
10883
10705
  """任务执行结束时间,格式为 yyyy-mm-dd hh:mm:ss
10884
- 注意:此字段可能返回 null,表示取不到有效值。
10885
10706
  :rtype: str
10886
10707
  """
10887
10708
  return self._EndTime
@@ -10893,7 +10714,6 @@ manualPaused(已暂停)
10893
10714
  @property
10894
10715
  def BriefMsg(self):
10895
10716
  """迁移任务错误信息
10896
- 注意:此字段可能返回 null,表示取不到有效值。
10897
10717
  :rtype: str
10898
10718
  """
10899
10719
  return self._BriefMsg
@@ -10907,7 +10727,6 @@ manualPaused(已暂停)
10907
10727
  """任务状态,取值为:creating(创建中)、created(创建完成)、checking(校验中)、checkPass(校验通过)、checkNotPass(校验不通过)、readyRun(准备运行)、running(任务运行)、readyComplete(准备完成)、success(任务成功)、failed(任务失败)、stopping(中止中)、completing(完成中)、
10908
10728
  pausing(暂停中)、
10909
10729
  manualPaused(已暂停)
10910
- 注意:此字段可能返回 null,表示取不到有效值。
10911
10730
  :rtype: str
10912
10731
  """
10913
10732
  return self._Status
@@ -10919,7 +10738,6 @@ manualPaused(已暂停)
10919
10738
  @property
10920
10739
  def RunMode(self):
10921
10740
  """任务运行模式,值包括:immediate(立即运行),timed(定时运行)
10922
- 注意:此字段可能返回 null,表示取不到有效值。
10923
10741
  :rtype: str
10924
10742
  """
10925
10743
  return self._RunMode
@@ -10931,7 +10749,6 @@ manualPaused(已暂停)
10931
10749
  @property
10932
10750
  def ExpectRunTime(self):
10933
10751
  """期待启动时间,当RunMode取值为timed时,此值必填,形如:2022-07-11 16:20:49
10934
- 注意:此字段可能返回 null,表示取不到有效值。
10935
10752
  :rtype: str
10936
10753
  """
10937
10754
  return self._ExpectRunTime
@@ -10943,7 +10760,6 @@ manualPaused(已暂停)
10943
10760
  @property
10944
10761
  def Action(self):
10945
10762
  """任务操作信息
10946
- 注意:此字段可能返回 null,表示取不到有效值。
10947
10763
  :rtype: :class:`tencentcloud.dts.v20211206.models.MigrateAction`
10948
10764
  """
10949
10765
  return self._Action
@@ -10955,7 +10771,6 @@ manualPaused(已暂停)
10955
10771
  @property
10956
10772
  def StepInfo(self):
10957
10773
  """迁移执行过程信息
10958
- 注意:此字段可能返回 null,表示取不到有效值。
10959
10774
  :rtype: :class:`tencentcloud.dts.v20211206.models.MigrateDetailInfo`
10960
10775
  """
10961
10776
  return self._StepInfo
@@ -10967,7 +10782,6 @@ manualPaused(已暂停)
10967
10782
  @property
10968
10783
  def SrcInfo(self):
10969
10784
  """源实例信息
10970
- 注意:此字段可能返回 null,表示取不到有效值。
10971
10785
  :rtype: :class:`tencentcloud.dts.v20211206.models.DBEndpointInfo`
10972
10786
  """
10973
10787
  return self._SrcInfo
@@ -10979,7 +10793,6 @@ manualPaused(已暂停)
10979
10793
  @property
10980
10794
  def DstInfo(self):
10981
10795
  """目标端信息
10982
- 注意:此字段可能返回 null,表示取不到有效值。
10983
10796
  :rtype: :class:`tencentcloud.dts.v20211206.models.DBEndpointInfo`
10984
10797
  """
10985
10798
  return self._DstInfo
@@ -10991,7 +10804,6 @@ manualPaused(已暂停)
10991
10804
  @property
10992
10805
  def CompareTask(self):
10993
10806
  """数据一致性校验结果
10994
- 注意:此字段可能返回 null,表示取不到有效值。
10995
10807
  :rtype: :class:`tencentcloud.dts.v20211206.models.CompareTaskInfo`
10996
10808
  """
10997
10809
  return self._CompareTask
@@ -11003,7 +10815,6 @@ manualPaused(已暂停)
11003
10815
  @property
11004
10816
  def TradeInfo(self):
11005
10817
  """计费状态信息
11006
- 注意:此字段可能返回 null,表示取不到有效值。
11007
10818
  :rtype: :class:`tencentcloud.dts.v20211206.models.TradeInfo`
11008
10819
  """
11009
10820
  return self._TradeInfo
@@ -11015,7 +10826,6 @@ manualPaused(已暂停)
11015
10826
  @property
11016
10827
  def Tags(self):
11017
10828
  """标签信息
11018
- 注意:此字段可能返回 null,表示取不到有效值。
11019
10829
  :rtype: list of TagItem
11020
10830
  """
11021
10831
  return self._Tags
@@ -11027,7 +10837,6 @@ manualPaused(已暂停)
11027
10837
  @property
11028
10838
  def AutoRetryTimeRangeMinutes(self):
11029
10839
  """自动重试时间段信息
11030
- 注意:此字段可能返回 null,表示取不到有效值。
11031
10840
  :rtype: int
11032
10841
  """
11033
10842
  return self._AutoRetryTimeRangeMinutes
@@ -11039,7 +10848,6 @@ manualPaused(已暂停)
11039
10848
  @property
11040
10849
  def DumperResumeCtrl(self):
11041
10850
  """全量导出可重入标识:enum::"yes"/"no"。yes表示当前任务可重入、no表示当前任务处于全量导出且不可重入阶段;如果在该值为no时重启任务导出流程不支持断点续传
11042
- 注意:此字段可能返回 null,表示取不到有效值。
11043
10851
  :rtype: str
11044
10852
  """
11045
10853
  return self._DumperResumeCtrl
@@ -15084,16 +14892,12 @@ class RowsCountDifference(AbstractModel):
15084
14892
  def __init__(self):
15085
14893
  r"""
15086
14894
  :param _Db: 数据库名
15087
- 注意:此字段可能返回 null,表示取不到有效值。
15088
14895
  :type Db: str
15089
14896
  :param _Table: 集合
15090
- 注意:此字段可能返回 null,表示取不到有效值。
15091
14897
  :type Table: str
15092
14898
  :param _SrcCount: 源端行数
15093
- 注意:此字段可能返回 null,表示取不到有效值。
15094
14899
  :type SrcCount: int
15095
14900
  :param _DstCount: 目标端行数
15096
- 注意:此字段可能返回 null,表示取不到有效值。
15097
14901
  :type DstCount: int
15098
14902
  """
15099
14903
  self._Db = None
@@ -15104,7 +14908,6 @@ class RowsCountDifference(AbstractModel):
15104
14908
  @property
15105
14909
  def Db(self):
15106
14910
  """数据库名
15107
- 注意:此字段可能返回 null,表示取不到有效值。
15108
14911
  :rtype: str
15109
14912
  """
15110
14913
  return self._Db
@@ -15116,7 +14919,6 @@ class RowsCountDifference(AbstractModel):
15116
14919
  @property
15117
14920
  def Table(self):
15118
14921
  """集合
15119
- 注意:此字段可能返回 null,表示取不到有效值。
15120
14922
  :rtype: str
15121
14923
  """
15122
14924
  return self._Table
@@ -15128,7 +14930,6 @@ class RowsCountDifference(AbstractModel):
15128
14930
  @property
15129
14931
  def SrcCount(self):
15130
14932
  """源端行数
15131
- 注意:此字段可能返回 null,表示取不到有效值。
15132
14933
  :rtype: int
15133
14934
  """
15134
14935
  return self._SrcCount
@@ -15140,7 +14941,6 @@ class RowsCountDifference(AbstractModel):
15140
14941
  @property
15141
14942
  def DstCount(self):
15142
14943
  """目标端行数
15143
- 注意:此字段可能返回 null,表示取不到有效值。
15144
14944
  :rtype: int
15145
14945
  """
15146
14946
  return self._DstCount
@@ -15361,7 +15161,6 @@ class SkippedDetail(AbstractModel):
15361
15161
  def __init__(self):
15362
15162
  r"""
15363
15163
  :param _TotalCount: 跳过的表数量
15364
- 注意:此字段可能返回 null,表示取不到有效值。
15365
15164
  :type TotalCount: int
15366
15165
  :param _Items: 跳过校验的表详情
15367
15166
  注意:此字段可能返回 null,表示取不到有效值。
@@ -15373,7 +15172,6 @@ class SkippedDetail(AbstractModel):
15373
15172
  @property
15374
15173
  def TotalCount(self):
15375
15174
  """跳过的表数量
15376
- 注意:此字段可能返回 null,表示取不到有效值。
15377
15175
  :rtype: int
15378
15176
  """
15379
15177
  return self._TotalCount
@@ -15421,13 +15219,10 @@ class SkippedItem(AbstractModel):
15421
15219
  def __init__(self):
15422
15220
  r"""
15423
15221
  :param _Db: 数据库名
15424
- 注意:此字段可能返回 null,表示取不到有效值。
15425
15222
  :type Db: str
15426
15223
  :param _Table: 表名
15427
- 注意:此字段可能返回 null,表示取不到有效值。
15428
15224
  :type Table: str
15429
15225
  :param _Reason: 未发起检查的原因
15430
- 注意:此字段可能返回 null,表示取不到有效值。
15431
15226
  :type Reason: str
15432
15227
  """
15433
15228
  self._Db = None
@@ -15437,7 +15232,6 @@ class SkippedItem(AbstractModel):
15437
15232
  @property
15438
15233
  def Db(self):
15439
15234
  """数据库名
15440
- 注意:此字段可能返回 null,表示取不到有效值。
15441
15235
  :rtype: str
15442
15236
  """
15443
15237
  return self._Db
@@ -15449,7 +15243,6 @@ class SkippedItem(AbstractModel):
15449
15243
  @property
15450
15244
  def Table(self):
15451
15245
  """表名
15452
- 注意:此字段可能返回 null,表示取不到有效值。
15453
15246
  :rtype: str
15454
15247
  """
15455
15248
  return self._Table
@@ -15461,7 +15254,6 @@ class SkippedItem(AbstractModel):
15461
15254
  @property
15462
15255
  def Reason(self):
15463
15256
  """未发起检查的原因
15464
- 注意:此字段可能返回 null,表示取不到有效值。
15465
15257
  :rtype: str
15466
15258
  """
15467
15259
  return self._Reason