tencentcloud-sdk-python 3.0.1337__py2.py3-none-any.whl → 3.0.1338__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 (48) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/acp/v20220105/models.py +0 -10
  3. tencentcloud/cdwdoris/v20211228/models.py +30 -0
  4. tencentcloud/cfg/v20210820/models.py +0 -4
  5. tencentcloud/clb/v20180317/models.py +38 -24
  6. tencentcloud/cynosdb/v20190107/models.py +15 -0
  7. tencentcloud/dbbrain/v20191016/models.py +0 -12
  8. tencentcloud/dbbrain/v20210527/models.py +0 -16
  9. tencentcloud/dcdb/v20180411/models.py +15 -0
  10. tencentcloud/dlc/v20210125/models.py +140 -34
  11. tencentcloud/domain/v20180808/models.py +0 -2
  12. tencentcloud/dts/v20180330/models.py +0 -16
  13. tencentcloud/dts/v20211206/models.py +0 -472
  14. tencentcloud/es/v20180416/errorcodes.py +6 -0
  15. tencentcloud/ess/v20201111/ess_client.py +27 -0
  16. tencentcloud/ess/v20201111/models.py +227 -2
  17. tencentcloud/essbasic/v20210526/essbasic_client.py +27 -0
  18. tencentcloud/essbasic/v20210526/models.py +308 -0
  19. tencentcloud/goosefs/v20220519/models.py +0 -22
  20. tencentcloud/lke/v20231130/lke_client.py +6 -1
  21. tencentcloud/lke/v20231130/models.py +8 -8
  22. tencentcloud/lowcode/v20210108/models.py +0 -106
  23. tencentcloud/mariadb/v20170312/errorcodes.py +3 -0
  24. tencentcloud/mariadb/v20170312/models.py +15 -0
  25. tencentcloud/mongodb/v20190725/errorcodes.py +3 -0
  26. tencentcloud/ocr/v20181119/models.py +2 -4
  27. tencentcloud/ocr/v20181119/ocr_client.py +1 -1
  28. tencentcloud/organization/v20210331/models.py +109 -0
  29. tencentcloud/organization/v20210331/organization_client.py +23 -0
  30. tencentcloud/redis/v20180412/models.py +21 -2
  31. tencentcloud/rum/v20210622/models.py +2 -0
  32. tencentcloud/scf/v20180416/models.py +75 -0
  33. tencentcloud/tdmq/v20200217/models.py +2 -296
  34. tencentcloud/tdmq/v20200217/tdmq_client.py +0 -25
  35. tencentcloud/tione/v20211111/errorcodes.py +3 -0
  36. tencentcloud/tione/v20211111/models.py +68 -0
  37. tencentcloud/tse/v20201207/models.py +164 -104
  38. tencentcloud/vclm/v20240523/models.py +58 -4
  39. tencentcloud/vdb/v20230616/models.py +9 -57
  40. tencentcloud/waf/v20180125/models.py +252 -0
  41. tencentcloud/waf/v20180125/waf_client.py +46 -0
  42. tencentcloud/wedata/v20210820/models.py +1578 -93
  43. tencentcloud/wedata/v20210820/wedata_client.py +46 -0
  44. {tencentcloud_sdk_python-3.0.1337.dist-info → tencentcloud_sdk_python-3.0.1338.dist-info}/METADATA +1 -1
  45. {tencentcloud_sdk_python-3.0.1337.dist-info → tencentcloud_sdk_python-3.0.1338.dist-info}/RECORD +48 -48
  46. {tencentcloud_sdk_python-3.0.1337.dist-info → tencentcloud_sdk_python-3.0.1338.dist-info}/LICENSE +0 -0
  47. {tencentcloud_sdk_python-3.0.1337.dist-info → tencentcloud_sdk_python-3.0.1338.dist-info}/WHEEL +0 -0
  48. {tencentcloud_sdk_python-3.0.1337.dist-info → tencentcloud_sdk_python-3.0.1338.dist-info}/top_level.txt +0 -0
@@ -6497,9 +6497,12 @@ class CreateSparkAppTaskRequest(AbstractModel):
6497
6497
  :type JobName: str
6498
6498
  :param _CmdArgs: spark作业程序入参,以空格分隔;一般用于周期性调用使用
6499
6499
  :type CmdArgs: str
6500
+ :param _SourceInfo: 任务来源信息
6501
+ :type SourceInfo: list of KVPair
6500
6502
  """
6501
6503
  self._JobName = None
6502
6504
  self._CmdArgs = None
6505
+ self._SourceInfo = None
6503
6506
 
6504
6507
  @property
6505
6508
  def JobName(self):
@@ -6523,10 +6526,27 @@ class CreateSparkAppTaskRequest(AbstractModel):
6523
6526
  def CmdArgs(self, CmdArgs):
6524
6527
  self._CmdArgs = CmdArgs
6525
6528
 
6529
+ @property
6530
+ def SourceInfo(self):
6531
+ """任务来源信息
6532
+ :rtype: list of KVPair
6533
+ """
6534
+ return self._SourceInfo
6535
+
6536
+ @SourceInfo.setter
6537
+ def SourceInfo(self, SourceInfo):
6538
+ self._SourceInfo = SourceInfo
6539
+
6526
6540
 
6527
6541
  def _deserialize(self, params):
6528
6542
  self._JobName = params.get("JobName")
6529
6543
  self._CmdArgs = params.get("CmdArgs")
6544
+ if params.get("SourceInfo") is not None:
6545
+ self._SourceInfo = []
6546
+ for item in params.get("SourceInfo"):
6547
+ obj = KVPair()
6548
+ obj._deserialize(item)
6549
+ self._SourceInfo.append(obj)
6530
6550
  memeber_set = set(params.keys())
6531
6551
  for name, value in vars(self).items():
6532
6552
  property_name = name[1:]
@@ -6628,6 +6648,8 @@ class CreateSparkSessionBatchSQLRequest(AbstractModel):
6628
6648
  :type IsInherit: int
6629
6649
  :param _CustomKey: 用户自定义主键,需唯一
6630
6650
  :type CustomKey: str
6651
+ :param _SourceInfo: 任务来源信息
6652
+ :type SourceInfo: list of KVPair
6631
6653
  """
6632
6654
  self._DataEngineName = None
6633
6655
  self._ExecuteSQL = None
@@ -6641,6 +6663,7 @@ class CreateSparkSessionBatchSQLRequest(AbstractModel):
6641
6663
  self._Arguments = None
6642
6664
  self._IsInherit = None
6643
6665
  self._CustomKey = None
6666
+ self._SourceInfo = None
6644
6667
 
6645
6668
  @property
6646
6669
  def DataEngineName(self):
@@ -6776,6 +6799,17 @@ class CreateSparkSessionBatchSQLRequest(AbstractModel):
6776
6799
  def CustomKey(self, CustomKey):
6777
6800
  self._CustomKey = CustomKey
6778
6801
 
6802
+ @property
6803
+ def SourceInfo(self):
6804
+ """任务来源信息
6805
+ :rtype: list of KVPair
6806
+ """
6807
+ return self._SourceInfo
6808
+
6809
+ @SourceInfo.setter
6810
+ def SourceInfo(self, SourceInfo):
6811
+ self._SourceInfo = SourceInfo
6812
+
6779
6813
 
6780
6814
  def _deserialize(self, params):
6781
6815
  self._DataEngineName = params.get("DataEngineName")
@@ -6795,6 +6829,12 @@ class CreateSparkSessionBatchSQLRequest(AbstractModel):
6795
6829
  self._Arguments.append(obj)
6796
6830
  self._IsInherit = params.get("IsInherit")
6797
6831
  self._CustomKey = params.get("CustomKey")
6832
+ if params.get("SourceInfo") is not None:
6833
+ self._SourceInfo = []
6834
+ for item in params.get("SourceInfo"):
6835
+ obj = KVPair()
6836
+ obj._deserialize(item)
6837
+ self._SourceInfo.append(obj)
6798
6838
  memeber_set = set(params.keys())
6799
6839
  for name, value in vars(self).items():
6800
6840
  property_name = name[1:]
@@ -7034,12 +7074,15 @@ class CreateTaskRequest(AbstractModel):
7034
7074
  :type DataEngineName: str
7035
7075
  :param _ResourceGroupName: 标准spark执行任务resourceGroupName
7036
7076
  :type ResourceGroupName: str
7077
+ :param _SourceInfo: 任务来源信息
7078
+ :type SourceInfo: list of KVPair
7037
7079
  """
7038
7080
  self._Task = None
7039
7081
  self._DatabaseName = None
7040
7082
  self._DatasourceConnectionName = None
7041
7083
  self._DataEngineName = None
7042
7084
  self._ResourceGroupName = None
7085
+ self._SourceInfo = None
7043
7086
 
7044
7087
  @property
7045
7088
  def Task(self):
@@ -7096,6 +7139,17 @@ class CreateTaskRequest(AbstractModel):
7096
7139
  def ResourceGroupName(self, ResourceGroupName):
7097
7140
  self._ResourceGroupName = ResourceGroupName
7098
7141
 
7142
+ @property
7143
+ def SourceInfo(self):
7144
+ """任务来源信息
7145
+ :rtype: list of KVPair
7146
+ """
7147
+ return self._SourceInfo
7148
+
7149
+ @SourceInfo.setter
7150
+ def SourceInfo(self, SourceInfo):
7151
+ self._SourceInfo = SourceInfo
7152
+
7099
7153
 
7100
7154
  def _deserialize(self, params):
7101
7155
  if params.get("Task") is not None:
@@ -7105,6 +7159,12 @@ class CreateTaskRequest(AbstractModel):
7105
7159
  self._DatasourceConnectionName = params.get("DatasourceConnectionName")
7106
7160
  self._DataEngineName = params.get("DataEngineName")
7107
7161
  self._ResourceGroupName = params.get("ResourceGroupName")
7162
+ if params.get("SourceInfo") is not None:
7163
+ self._SourceInfo = []
7164
+ for item in params.get("SourceInfo"):
7165
+ obj = KVPair()
7166
+ obj._deserialize(item)
7167
+ self._SourceInfo.append(obj)
7108
7168
  memeber_set = set(params.keys())
7109
7169
  for name, value in vars(self).items():
7110
7170
  property_name = name[1:]
@@ -7305,6 +7365,8 @@ class CreateTasksRequest(AbstractModel):
7305
7365
  :type ResourceGroupName: str
7306
7366
  :param _IsMultiStatement: 是否使用multi- statement方式运行一批次任务,true: 是,false: 否
7307
7367
  :type IsMultiStatement: bool
7368
+ :param _SourceInfo: 任务来源信息
7369
+ :type SourceInfo: list of KVPair
7308
7370
  """
7309
7371
  self._DatabaseName = None
7310
7372
  self._Tasks = None
@@ -7312,6 +7374,7 @@ class CreateTasksRequest(AbstractModel):
7312
7374
  self._DataEngineName = None
7313
7375
  self._ResourceGroupName = None
7314
7376
  self._IsMultiStatement = None
7377
+ self._SourceInfo = None
7315
7378
 
7316
7379
  @property
7317
7380
  def DatabaseName(self):
@@ -7379,6 +7442,17 @@ class CreateTasksRequest(AbstractModel):
7379
7442
  def IsMultiStatement(self, IsMultiStatement):
7380
7443
  self._IsMultiStatement = IsMultiStatement
7381
7444
 
7445
+ @property
7446
+ def SourceInfo(self):
7447
+ """任务来源信息
7448
+ :rtype: list of KVPair
7449
+ """
7450
+ return self._SourceInfo
7451
+
7452
+ @SourceInfo.setter
7453
+ def SourceInfo(self, SourceInfo):
7454
+ self._SourceInfo = SourceInfo
7455
+
7382
7456
 
7383
7457
  def _deserialize(self, params):
7384
7458
  self._DatabaseName = params.get("DatabaseName")
@@ -7389,6 +7463,12 @@ class CreateTasksRequest(AbstractModel):
7389
7463
  self._DataEngineName = params.get("DataEngineName")
7390
7464
  self._ResourceGroupName = params.get("ResourceGroupName")
7391
7465
  self._IsMultiStatement = params.get("IsMultiStatement")
7466
+ if params.get("SourceInfo") is not None:
7467
+ self._SourceInfo = []
7468
+ for item in params.get("SourceInfo"):
7469
+ obj = KVPair()
7470
+ obj._deserialize(item)
7471
+ self._SourceInfo.append(obj)
7392
7472
  memeber_set = set(params.keys())
7393
7473
  for name, value in vars(self).items():
7394
7474
  property_name = name[1:]
@@ -14113,10 +14193,13 @@ class DescribeDataEngineEventsRequest(AbstractModel):
14113
14193
  :type Limit: int
14114
14194
  :param _Offset: 偏移量,默认为0
14115
14195
  :type Offset: int
14196
+ :param _SessionId: 资源组id
14197
+ :type SessionId: str
14116
14198
  """
14117
14199
  self._DataEngineName = None
14118
14200
  self._Limit = None
14119
14201
  self._Offset = None
14202
+ self._SessionId = None
14120
14203
 
14121
14204
  @property
14122
14205
  def DataEngineName(self):
@@ -14151,11 +14234,23 @@ class DescribeDataEngineEventsRequest(AbstractModel):
14151
14234
  def Offset(self, Offset):
14152
14235
  self._Offset = Offset
14153
14236
 
14237
+ @property
14238
+ def SessionId(self):
14239
+ """资源组id
14240
+ :rtype: str
14241
+ """
14242
+ return self._SessionId
14243
+
14244
+ @SessionId.setter
14245
+ def SessionId(self, SessionId):
14246
+ self._SessionId = SessionId
14247
+
14154
14248
 
14155
14249
  def _deserialize(self, params):
14156
14250
  self._DataEngineName = params.get("DataEngineName")
14157
14251
  self._Limit = params.get("Limit")
14158
14252
  self._Offset = params.get("Offset")
14253
+ self._SessionId = params.get("SessionId")
14159
14254
  memeber_set = set(params.keys())
14160
14255
  for name, value in vars(self).items():
14161
14256
  property_name = name[1:]
@@ -16072,11 +16167,14 @@ class DescribeNotebookSessionStatementSqlResultRequest(AbstractModel):
16072
16167
  :type NextToken: str
16073
16168
  :param _BatchId: 批次Id
16074
16169
  :type BatchId: str
16170
+ :param _DataFieldCutLen: 返回结果集中字段值长度截取,如果超过该长度则截取到该长度
16171
+ :type DataFieldCutLen: int
16075
16172
  """
16076
16173
  self._TaskId = None
16077
16174
  self._MaxResults = None
16078
16175
  self._NextToken = None
16079
16176
  self._BatchId = None
16177
+ self._DataFieldCutLen = None
16080
16178
 
16081
16179
  @property
16082
16180
  def TaskId(self):
@@ -16122,12 +16220,24 @@ class DescribeNotebookSessionStatementSqlResultRequest(AbstractModel):
16122
16220
  def BatchId(self, BatchId):
16123
16221
  self._BatchId = BatchId
16124
16222
 
16223
+ @property
16224
+ def DataFieldCutLen(self):
16225
+ """返回结果集中字段值长度截取,如果超过该长度则截取到该长度
16226
+ :rtype: int
16227
+ """
16228
+ return self._DataFieldCutLen
16229
+
16230
+ @DataFieldCutLen.setter
16231
+ def DataFieldCutLen(self, DataFieldCutLen):
16232
+ self._DataFieldCutLen = DataFieldCutLen
16233
+
16125
16234
 
16126
16235
  def _deserialize(self, params):
16127
16236
  self._TaskId = params.get("TaskId")
16128
16237
  self._MaxResults = params.get("MaxResults")
16129
16238
  self._NextToken = params.get("NextToken")
16130
16239
  self._BatchId = params.get("BatchId")
16240
+ self._DataFieldCutLen = params.get("DataFieldCutLen")
16131
16241
  memeber_set = set(params.keys())
16132
16242
  for name, value in vars(self).items():
16133
16243
  property_name = name[1:]
@@ -18925,11 +19035,14 @@ class DescribeTaskResultRequest(AbstractModel):
18925
19035
  :type MaxResults: int
18926
19036
  :param _IsTransformDataType: 是否转化数据类型
18927
19037
  :type IsTransformDataType: bool
19038
+ :param _DataFieldCutLen: 返回结果集中字段长度截取,如果字段值长度超过该长度则截取到该长度
19039
+ :type DataFieldCutLen: int
18928
19040
  """
18929
19041
  self._TaskId = None
18930
19042
  self._NextToken = None
18931
19043
  self._MaxResults = None
18932
19044
  self._IsTransformDataType = None
19045
+ self._DataFieldCutLen = None
18933
19046
 
18934
19047
  @property
18935
19048
  def TaskId(self):
@@ -18975,12 +19088,24 @@ class DescribeTaskResultRequest(AbstractModel):
18975
19088
  def IsTransformDataType(self, IsTransformDataType):
18976
19089
  self._IsTransformDataType = IsTransformDataType
18977
19090
 
19091
+ @property
19092
+ def DataFieldCutLen(self):
19093
+ """返回结果集中字段长度截取,如果字段值长度超过该长度则截取到该长度
19094
+ :rtype: int
19095
+ """
19096
+ return self._DataFieldCutLen
19097
+
19098
+ @DataFieldCutLen.setter
19099
+ def DataFieldCutLen(self, DataFieldCutLen):
19100
+ self._DataFieldCutLen = DataFieldCutLen
19101
+
18978
19102
 
18979
19103
  def _deserialize(self, params):
18980
19104
  self._TaskId = params.get("TaskId")
18981
19105
  self._NextToken = params.get("NextToken")
18982
19106
  self._MaxResults = params.get("MaxResults")
18983
19107
  self._IsTransformDataType = params.get("IsTransformDataType")
19108
+ self._DataFieldCutLen = params.get("DataFieldCutLen")
18984
19109
  memeber_set = set(params.keys())
18985
19110
  for name, value in vars(self).items():
18986
19111
  property_name = name[1:]
@@ -19448,11 +19573,14 @@ class DescribeTasksOverviewRequest(AbstractModel):
19448
19573
  :type Filters: list of Filter
19449
19574
  :param _DataEngineName: 引擎名
19450
19575
  :type DataEngineName: str
19576
+ :param _HouseIds: DataEngine-dm8bjs29
19577
+ :type HouseIds: list of str
19451
19578
  """
19452
19579
  self._StartTime = None
19453
19580
  self._EndTime = None
19454
19581
  self._Filters = None
19455
19582
  self._DataEngineName = None
19583
+ self._HouseIds = None
19456
19584
 
19457
19585
  @property
19458
19586
  def StartTime(self):
@@ -19498,6 +19626,17 @@ class DescribeTasksOverviewRequest(AbstractModel):
19498
19626
  def DataEngineName(self, DataEngineName):
19499
19627
  self._DataEngineName = DataEngineName
19500
19628
 
19629
+ @property
19630
+ def HouseIds(self):
19631
+ """DataEngine-dm8bjs29
19632
+ :rtype: list of str
19633
+ """
19634
+ return self._HouseIds
19635
+
19636
+ @HouseIds.setter
19637
+ def HouseIds(self, HouseIds):
19638
+ self._HouseIds = HouseIds
19639
+
19501
19640
 
19502
19641
  def _deserialize(self, params):
19503
19642
  self._StartTime = params.get("StartTime")
@@ -19509,6 +19648,7 @@ class DescribeTasksOverviewRequest(AbstractModel):
19509
19648
  obj._deserialize(item)
19510
19649
  self._Filters.append(obj)
19511
19650
  self._DataEngineName = params.get("DataEngineName")
19651
+ self._HouseIds = params.get("HouseIds")
19512
19652
  memeber_set = set(params.keys())
19513
19653
  for name, value in vars(self).items():
19514
19654
  property_name = name[1:]
@@ -23235,10 +23375,8 @@ class KVPair(AbstractModel):
23235
23375
  def __init__(self):
23236
23376
  r"""
23237
23377
  :param _Key: 配置的key值
23238
- 注意:此字段可能返回 null,表示取不到有效值。
23239
23378
  :type Key: str
23240
23379
  :param _Value: 配置的value值
23241
- 注意:此字段可能返回 null,表示取不到有效值。
23242
23380
  :type Value: str
23243
23381
  """
23244
23382
  self._Key = None
@@ -23247,7 +23385,6 @@ class KVPair(AbstractModel):
23247
23385
  @property
23248
23386
  def Key(self):
23249
23387
  """配置的key值
23250
- 注意:此字段可能返回 null,表示取不到有效值。
23251
23388
  :rtype: str
23252
23389
  """
23253
23390
  return self._Key
@@ -23259,7 +23396,6 @@ class KVPair(AbstractModel):
23259
23396
  @property
23260
23397
  def Value(self):
23261
23398
  """配置的value值
23262
- 注意:此字段可能返回 null,表示取不到有效值。
23263
23399
  :rtype: str
23264
23400
  """
23265
23401
  return self._Value
@@ -26497,13 +26633,10 @@ class NotebookSessionStatementInfo(AbstractModel):
26497
26633
  def __init__(self):
26498
26634
  r"""
26499
26635
  :param _Completed: 完成时间戳
26500
- 注意:此字段可能返回 null,表示取不到有效值。
26501
26636
  :type Completed: int
26502
26637
  :param _Started: 开始时间戳
26503
- 注意:此字段可能返回 null,表示取不到有效值。
26504
26638
  :type Started: int
26505
26639
  :param _Progress: 完成进度,百分制
26506
- 注意:此字段可能返回 null,表示取不到有效值。
26507
26640
  :type Progress: float
26508
26641
  :param _StatementId: Session Statement唯一标识
26509
26642
  :type StatementId: str
@@ -26516,10 +26649,8 @@ class NotebookSessionStatementInfo(AbstractModel):
26516
26649
  注意:此字段可能返回 null,表示取不到有效值。
26517
26650
  :type BatchId: str
26518
26651
  :param _Code: 运行语句
26519
- 注意:此字段可能返回 null,表示取不到有效值。
26520
26652
  :type Code: str
26521
26653
  :param _TaskId: 任务ID
26522
- 注意:此字段可能返回 null,表示取不到有效值。
26523
26654
  :type TaskId: str
26524
26655
  """
26525
26656
  self._Completed = None
@@ -26535,7 +26666,6 @@ class NotebookSessionStatementInfo(AbstractModel):
26535
26666
  @property
26536
26667
  def Completed(self):
26537
26668
  """完成时间戳
26538
- 注意:此字段可能返回 null,表示取不到有效值。
26539
26669
  :rtype: int
26540
26670
  """
26541
26671
  return self._Completed
@@ -26547,7 +26677,6 @@ class NotebookSessionStatementInfo(AbstractModel):
26547
26677
  @property
26548
26678
  def Started(self):
26549
26679
  """开始时间戳
26550
- 注意:此字段可能返回 null,表示取不到有效值。
26551
26680
  :rtype: int
26552
26681
  """
26553
26682
  return self._Started
@@ -26559,7 +26688,6 @@ class NotebookSessionStatementInfo(AbstractModel):
26559
26688
  @property
26560
26689
  def Progress(self):
26561
26690
  """完成进度,百分制
26562
- 注意:此字段可能返回 null,表示取不到有效值。
26563
26691
  :rtype: float
26564
26692
  """
26565
26693
  return self._Progress
@@ -26617,7 +26745,6 @@ class NotebookSessionStatementInfo(AbstractModel):
26617
26745
  @property
26618
26746
  def Code(self):
26619
26747
  """运行语句
26620
- 注意:此字段可能返回 null,表示取不到有效值。
26621
26748
  :rtype: str
26622
26749
  """
26623
26750
  return self._Code
@@ -26629,7 +26756,6 @@ class NotebookSessionStatementInfo(AbstractModel):
26629
26756
  @property
26630
26757
  def TaskId(self):
26631
26758
  """任务ID
26632
- 注意:此字段可能返回 null,表示取不到有效值。
26633
26759
  :rtype: str
26634
26760
  """
26635
26761
  return self._TaskId
@@ -30682,10 +30808,8 @@ class StatementInformation(AbstractModel):
30682
30808
  def __init__(self):
30683
30809
  r"""
30684
30810
  :param _TaskId: SQL任务唯一ID
30685
- 注意:此字段可能返回 null,表示取不到有效值。
30686
30811
  :type TaskId: str
30687
30812
  :param _SQL: SQL内容
30688
- 注意:此字段可能返回 null,表示取不到有效值。
30689
30813
  :type SQL: str
30690
30814
  """
30691
30815
  self._TaskId = None
@@ -30694,7 +30818,6 @@ class StatementInformation(AbstractModel):
30694
30818
  @property
30695
30819
  def TaskId(self):
30696
30820
  """SQL任务唯一ID
30697
- 注意:此字段可能返回 null,表示取不到有效值。
30698
30821
  :rtype: str
30699
30822
  """
30700
30823
  return self._TaskId
@@ -30706,7 +30829,6 @@ class StatementInformation(AbstractModel):
30706
30829
  @property
30707
30830
  def SQL(self):
30708
30831
  """SQL内容
30709
- 注意:此字段可能返回 null,表示取不到有效值。
30710
30832
  :rtype: str
30711
30833
  """
30712
30834
  return self._SQL
@@ -30737,16 +30859,13 @@ class StatementOutput(AbstractModel):
30737
30859
  def __init__(self):
30738
30860
  r"""
30739
30861
  :param _ExecutionCount: 执行总数
30740
- 注意:此字段可能返回 null,表示取不到有效值。
30741
30862
  :type ExecutionCount: int
30742
30863
  :param _Data: Statement数据
30743
30864
  注意:此字段可能返回 null,表示取不到有效值。
30744
30865
  :type Data: list of KVPair
30745
30866
  :param _Status: Statement状态:ok,error
30746
- 注意:此字段可能返回 null,表示取不到有效值。
30747
30867
  :type Status: str
30748
30868
  :param _ErrorName: 错误名称
30749
- 注意:此字段可能返回 null,表示取不到有效值。
30750
30869
  :type ErrorName: str
30751
30870
  :param _ErrorValue: 错误类型
30752
30871
  注意:此字段可能返回 null,表示取不到有效值。
@@ -30755,7 +30874,6 @@ class StatementOutput(AbstractModel):
30755
30874
  注意:此字段可能返回 null,表示取不到有效值。
30756
30875
  :type ErrorMessage: list of str
30757
30876
  :param _SQLResult: SQL类型任务结果返回
30758
- 注意:此字段可能返回 null,表示取不到有效值。
30759
30877
  :type SQLResult: str
30760
30878
  """
30761
30879
  self._ExecutionCount = None
@@ -30769,7 +30887,6 @@ class StatementOutput(AbstractModel):
30769
30887
  @property
30770
30888
  def ExecutionCount(self):
30771
30889
  """执行总数
30772
- 注意:此字段可能返回 null,表示取不到有效值。
30773
30890
  :rtype: int
30774
30891
  """
30775
30892
  return self._ExecutionCount
@@ -30793,7 +30910,6 @@ class StatementOutput(AbstractModel):
30793
30910
  @property
30794
30911
  def Status(self):
30795
30912
  """Statement状态:ok,error
30796
- 注意:此字段可能返回 null,表示取不到有效值。
30797
30913
  :rtype: str
30798
30914
  """
30799
30915
  return self._Status
@@ -30805,7 +30921,6 @@ class StatementOutput(AbstractModel):
30805
30921
  @property
30806
30922
  def ErrorName(self):
30807
30923
  """错误名称
30808
- 注意:此字段可能返回 null,表示取不到有效值。
30809
30924
  :rtype: str
30810
30925
  """
30811
30926
  return self._ErrorName
@@ -30841,7 +30956,6 @@ class StatementOutput(AbstractModel):
30841
30956
  @property
30842
30957
  def SQLResult(self):
30843
30958
  """SQL类型任务结果返回
30844
- 注意:此字段可能返回 null,表示取不到有效值。
30845
30959
  :rtype: str
30846
30960
  """
30847
30961
  return self._SQLResult
@@ -33230,10 +33344,8 @@ class TaskResultInfo(AbstractModel):
33230
33344
  :param _TaskId: 任务唯一ID
33231
33345
  :type TaskId: str
33232
33346
  :param _DatasourceConnectionName: 数据源名称,当前任务执行时候选中的默认数据源
33233
- 注意:此字段可能返回 null,表示取不到有效值。
33234
33347
  :type DatasourceConnectionName: str
33235
33348
  :param _DatabaseName: 数据库名称,当前任务执行时候选中的默认数据库
33236
- 注意:此字段可能返回 null,表示取不到有效值。
33237
33349
  :type DatabaseName: str
33238
33350
  :param _SQL: 当前执行的SQL,一个任务包含一个SQL
33239
33351
  :type SQL: str
@@ -33257,7 +33369,6 @@ class TaskResultInfo(AbstractModel):
33257
33369
  注意:此字段可能返回 null,表示取不到有效值。
33258
33370
  :type ResultSchema: list of Column
33259
33371
  :param _ResultSet: 结果信息,反转义后,外层数组的每个元素为一行数据
33260
- 注意:此字段可能返回 null,表示取不到有效值。
33261
33372
  :type ResultSet: str
33262
33373
  :param _NextToken: 分页信息,如果没有更多结果数据,nextToken为空
33263
33374
  :type NextToken: str
@@ -33270,7 +33381,6 @@ class TaskResultInfo(AbstractModel):
33270
33381
  :param _TotalTime: 任务耗时,单位: ms
33271
33382
  :type TotalTime: int
33272
33383
  :param _QueryResultTime: 获取结果消耗的时间
33273
- 注意:此字段可能返回 null,表示取不到有效值。
33274
33384
  :type QueryResultTime: float
33275
33385
  """
33276
33386
  self._TaskId = None
@@ -33308,7 +33418,6 @@ class TaskResultInfo(AbstractModel):
33308
33418
  @property
33309
33419
  def DatasourceConnectionName(self):
33310
33420
  """数据源名称,当前任务执行时候选中的默认数据源
33311
- 注意:此字段可能返回 null,表示取不到有效值。
33312
33421
  :rtype: str
33313
33422
  """
33314
33423
  return self._DatasourceConnectionName
@@ -33320,7 +33429,6 @@ class TaskResultInfo(AbstractModel):
33320
33429
  @property
33321
33430
  def DatabaseName(self):
33322
33431
  """数据库名称,当前任务执行时候选中的默认数据库
33323
- 注意:此字段可能返回 null,表示取不到有效值。
33324
33432
  :rtype: str
33325
33433
  """
33326
33434
  return self._DatabaseName
@@ -33443,7 +33551,6 @@ class TaskResultInfo(AbstractModel):
33443
33551
  @property
33444
33552
  def ResultSet(self):
33445
33553
  """结果信息,反转义后,外层数组的每个元素为一行数据
33446
- 注意:此字段可能返回 null,表示取不到有效值。
33447
33554
  :rtype: str
33448
33555
  """
33449
33556
  return self._ResultSet
@@ -33510,7 +33617,6 @@ class TaskResultInfo(AbstractModel):
33510
33617
  @property
33511
33618
  def QueryResultTime(self):
33512
33619
  """获取结果消耗的时间
33513
- 注意:此字段可能返回 null,表示取不到有效值。
33514
33620
  :rtype: float
33515
33621
  """
33516
33622
  return self._QueryResultTime
@@ -4602,7 +4602,6 @@ class DescribeCustomDnsHostSetResponse(AbstractModel):
4602
4602
  def __init__(self):
4603
4603
  r"""
4604
4604
  :param _DnsHostSet: 自定义DNS Host 列表
4605
- 注意:此字段可能返回 null,表示取不到有效值。
4606
4605
  :type DnsHostSet: list of CustomDnsHost
4607
4606
  :param _TotalCount: 自定义DNS Host总数
4608
4607
  :type TotalCount: int
@@ -4616,7 +4615,6 @@ class DescribeCustomDnsHostSetResponse(AbstractModel):
4616
4615
  @property
4617
4616
  def DnsHostSet(self):
4618
4617
  """自定义DNS Host 列表
4619
- 注意:此字段可能返回 null,表示取不到有效值。
4620
4618
  :rtype: list of CustomDnsHost
4621
4619
  """
4622
4620
  return self._DnsHostSet
@@ -2986,7 +2986,6 @@ class MigrateStepDetailInfo(AbstractModel):
2986
2986
  :param _Status: 步骤状态:0-默认值,1-成功,2-失败,3-执行中,4-未执行
2987
2987
  :type Status: int
2988
2988
  :param _StartTime: 当前步骤开始的时间,格式为"yyyy-mm-dd hh:mm:ss",该字段不存在或者为空是无意义
2989
- 注意:此字段可能返回 null,表示取不到有效值。
2990
2989
  :type StartTime: str
2991
2990
  """
2992
2991
  self._StepNo = None
@@ -3042,7 +3041,6 @@ class MigrateStepDetailInfo(AbstractModel):
3042
3041
  @property
3043
3042
  def StartTime(self):
3044
3043
  """当前步骤开始的时间,格式为"yyyy-mm-dd hh:mm:ss",该字段不存在或者为空是无意义
3045
- 注意:此字段可能返回 null,表示取不到有效值。
3046
3044
  :rtype: str
3047
3045
  """
3048
3046
  return self._StartTime
@@ -4279,7 +4277,6 @@ class SubsErr(AbstractModel):
4279
4277
  def __init__(self):
4280
4278
  r"""
4281
4279
  :param _Message: 错误信息
4282
- 注意:此字段可能返回 null,表示取不到有效值。
4283
4280
  :type Message: str
4284
4281
  """
4285
4282
  self._Message = None
@@ -4287,7 +4284,6 @@ class SubsErr(AbstractModel):
4287
4284
  @property
4288
4285
  def Message(self):
4289
4286
  """错误信息
4290
- 注意:此字段可能返回 null,表示取不到有效值。
4291
4287
  :rtype: str
4292
4288
  """
4293
4289
  return self._Message
@@ -4343,7 +4339,6 @@ class SubscribeInfo(AbstractModel):
4343
4339
  :param _ConsumeStartTime: 最近一次修改的消费时间起点,如果从未修改则为零值
4344
4340
  :type ConsumeStartTime: str
4345
4341
  :param _AutoRenewFlag: 自动续费标识。只有当 PayType=0,该值才有意义。枚举值:0-不自动续费,1-自动续费
4346
- 注意:此字段可能返回 null,表示取不到有效值。
4347
4342
  :type AutoRenewFlag: int
4348
4343
  :param _Region: 数据订阅实例所属地域
4349
4344
  :type Region: str
@@ -4365,7 +4360,6 @@ class SubscribeInfo(AbstractModel):
4365
4360
  注意:此字段可能返回 null,表示取不到有效值。
4366
4361
  :type Tags: list of TagItem
4367
4362
  :param _SubscribeVersion: 订阅实例版本;txdts-旧版数据订阅,kafka-kafka版本数据订阅
4368
- 注意:此字段可能返回 null,表示取不到有效值。
4369
4363
  :type SubscribeVersion: str
4370
4364
  """
4371
4365
  self._SubscribeId = None
@@ -4539,7 +4533,6 @@ class SubscribeInfo(AbstractModel):
4539
4533
  @property
4540
4534
  def AutoRenewFlag(self):
4541
4535
  """自动续费标识。只有当 PayType=0,该值才有意义。枚举值:0-不自动续费,1-自动续费
4542
- 注意:此字段可能返回 null,表示取不到有效值。
4543
4536
  :rtype: int
4544
4537
  """
4545
4538
  return self._AutoRenewFlag
@@ -4651,7 +4644,6 @@ class SubscribeInfo(AbstractModel):
4651
4644
  @property
4652
4645
  def SubscribeVersion(self):
4653
4646
  """订阅实例版本;txdts-旧版数据订阅,kafka-kafka版本数据订阅
4654
- 注意:此字段可能返回 null,表示取不到有效值。
4655
4647
  :rtype: str
4656
4648
  """
4657
4649
  return self._SubscribeVersion
@@ -4709,13 +4701,10 @@ class SubscribeObject(AbstractModel):
4709
4701
  def __init__(self):
4710
4702
  r"""
4711
4703
  :param _ObjectsType: 数据订阅对象的类型,0-数据库,1-数据库内的表
4712
- 注意:此字段可能返回 null,表示取不到有效值。
4713
4704
  :type ObjectsType: int
4714
4705
  :param _DatabaseName: 订阅数据库的名称
4715
- 注意:此字段可能返回 null,表示取不到有效值。
4716
4706
  :type DatabaseName: str
4717
4707
  :param _TableNames: 订阅数据库中表名称数组
4718
- 注意:此字段可能返回 null,表示取不到有效值。
4719
4708
  :type TableNames: list of str
4720
4709
  """
4721
4710
  self._ObjectsType = None
@@ -4725,7 +4714,6 @@ class SubscribeObject(AbstractModel):
4725
4714
  @property
4726
4715
  def ObjectsType(self):
4727
4716
  """数据订阅对象的类型,0-数据库,1-数据库内的表
4728
- 注意:此字段可能返回 null,表示取不到有效值。
4729
4717
  :rtype: int
4730
4718
  """
4731
4719
  return self._ObjectsType
@@ -4737,7 +4725,6 @@ class SubscribeObject(AbstractModel):
4737
4725
  @property
4738
4726
  def DatabaseName(self):
4739
4727
  """订阅数据库的名称
4740
- 注意:此字段可能返回 null,表示取不到有效值。
4741
4728
  :rtype: str
4742
4729
  """
4743
4730
  return self._DatabaseName
@@ -4749,7 +4736,6 @@ class SubscribeObject(AbstractModel):
4749
4736
  @property
4750
4737
  def TableNames(self):
4751
4738
  """订阅数据库中表名称数组
4752
- 注意:此字段可能返回 null,表示取不到有效值。
4753
4739
  :rtype: list of str
4754
4740
  """
4755
4741
  return self._TableNames
@@ -4834,7 +4820,6 @@ class TagItem(AbstractModel):
4834
4820
  :param _TagKey: 标签键值
4835
4821
  :type TagKey: str
4836
4822
  :param _TagValue: 标签值
4837
- 注意:此字段可能返回 null,表示取不到有效值。
4838
4823
  :type TagValue: str
4839
4824
  """
4840
4825
  self._TagKey = None
@@ -4854,7 +4839,6 @@ class TagItem(AbstractModel):
4854
4839
  @property
4855
4840
  def TagValue(self):
4856
4841
  """标签值
4857
- 注意:此字段可能返回 null,表示取不到有效值。
4858
4842
  :rtype: str
4859
4843
  """
4860
4844
  return self._TagValue