tencentcloud-sdk-python 3.0.1117__py2.py3-none-any.whl → 3.0.1119__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.

Potentially problematic release.


This version of tencentcloud-sdk-python might be problematic. Click here for more details.

Files changed (42) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/asr/v20190614/asr_client.py +1 -1
  3. tencentcloud/asr/v20190614/models.py +3 -4
  4. tencentcloud/bi/v20220105/models.py +36 -0
  5. tencentcloud/billing/v20180709/models.py +334 -17
  6. tencentcloud/ccc/v20200210/ccc_client.py +69 -0
  7. tencentcloud/ccc/v20200210/errorcodes.py +9 -0
  8. tencentcloud/ccc/v20200210/models.py +620 -0
  9. tencentcloud/cdwpg/v20201230/models.py +12 -0
  10. tencentcloud/ckafka/v20190819/ckafka_client.py +46 -0
  11. tencentcloud/ckafka/v20190819/models.py +288 -1
  12. tencentcloud/clb/v20180317/models.py +0 -1
  13. tencentcloud/cloudstudio/v20230508/models.py +52 -4
  14. tencentcloud/csip/v20221121/models.py +9 -8
  15. tencentcloud/cwp/v20180228/cwp_client.py +6 -2
  16. tencentcloud/cwp/v20180228/models.py +166 -0
  17. tencentcloud/cynosdb/v20190107/cynosdb_client.py +23 -0
  18. tencentcloud/cynosdb/v20190107/models.py +375 -0
  19. tencentcloud/dlc/v20210125/models.py +8 -0
  20. tencentcloud/dsgc/v20190723/models.py +24 -0
  21. tencentcloud/dts/v20211206/models.py +52 -0
  22. tencentcloud/es/v20180416/models.py +163 -5
  23. tencentcloud/ess/v20201111/models.py +51 -34
  24. tencentcloud/essbasic/v20210526/models.py +26 -7
  25. tencentcloud/iotexplorer/v20190423/errorcodes.py +3 -0
  26. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +529 -0
  27. tencentcloud/iotexplorer/v20190423/models.py +3400 -271
  28. tencentcloud/lcic/v20220817/models.py +90 -0
  29. tencentcloud/mps/v20190612/models.py +69 -25
  30. tencentcloud/ocr/v20181119/errorcodes.py +3 -0
  31. tencentcloud/ocr/v20181119/models.py +443 -0
  32. tencentcloud/ocr/v20181119/ocr_client.py +23 -0
  33. tencentcloud/tione/v20211111/models.py +130 -2
  34. tencentcloud/tms/v20201229/tms_client.py +1 -1
  35. tencentcloud/tts/v20190823/models.py +13 -0
  36. tencentcloud/vod/v20180717/models.py +12 -17
  37. tencentcloud/wedata/v20210820/models.py +285 -7
  38. {tencentcloud_sdk_python-3.0.1117.dist-info → tencentcloud_sdk_python-3.0.1119.dist-info}/METADATA +1 -1
  39. {tencentcloud_sdk_python-3.0.1117.dist-info → tencentcloud_sdk_python-3.0.1119.dist-info}/RECORD +42 -42
  40. {tencentcloud_sdk_python-3.0.1117.dist-info → tencentcloud_sdk_python-3.0.1119.dist-info}/LICENSE +0 -0
  41. {tencentcloud_sdk_python-3.0.1117.dist-info → tencentcloud_sdk_python-3.0.1119.dist-info}/WHEEL +0 -0
  42. {tencentcloud_sdk_python-3.0.1117.dist-info → tencentcloud_sdk_python-3.0.1119.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,7 @@ class TmsClient(AbstractClient):
27
27
 
28
28
 
29
29
  def ModerateText(self, request):
30
- """天御文本内容安全审核接口,改接口会按照客户定制标签输出审核结果
30
+ """天御文本内容安全定制标签文本审核接口为定制接口,会按照客户定制标签输出审核结果,如需使用请联系商务经理或[在线客服](https://cloud.tencent.com/online-service?from=doc_1125)咨询。
31
31
 
32
32
  :param request: Request instance for ModerateText.
33
33
  :type request: :class:`tencentcloud.tms.v20201229.models.ModerateTextRequest`
@@ -579,9 +579,12 @@ class TextToVoiceRequest(AbstractModel):
579
579
  :param _SegmentRate: 断句敏感阈值,默认值为:0,取值范围:[0,1,2]。该值越大越不容易断句,模型会更倾向于仅按照标点符号断句。此参数建议不要随意调整,可能会影响合成效果。
580
580
  :type SegmentRate: int
581
581
  :param _EmotionCategory: 控制合成音频的情感,仅支持多情感音色使用。取值: neutral(中性)、sad(悲伤)、happy(高兴)、angry(生气)、fear(恐惧)、news(新闻)、story(故事)、radio(广播)、poetry(诗歌)、call(客服)、撒娇(sajiao)、厌恶(disgusted)、震惊(amaze)、平静(peaceful)、兴奋(exciting)、傲娇(aojiao)、解说(jieshuo)
582
+ 示例值:neutral
582
583
  :type EmotionCategory: str
583
584
  :param _EmotionIntensity: 控制合成音频情感程度,取值范围为[50,200],默认为100;只有EmotionCategory不为空时生效;
584
585
  :type EmotionIntensity: int
586
+ :param _FastVoiceType: 一句话复刻音色id,使用一句话复刻音色时需填写。若使用一句话复刻,VoiceType请填入固定值“200000000”
587
+ :type FastVoiceType: str
585
588
  """
586
589
  self._Text = None
587
590
  self._SessionId = None
@@ -597,6 +600,7 @@ class TextToVoiceRequest(AbstractModel):
597
600
  self._SegmentRate = None
598
601
  self._EmotionCategory = None
599
602
  self._EmotionIntensity = None
603
+ self._FastVoiceType = None
600
604
 
601
605
  @property
602
606
  def Text(self):
@@ -710,6 +714,14 @@ class TextToVoiceRequest(AbstractModel):
710
714
  def EmotionIntensity(self, EmotionIntensity):
711
715
  self._EmotionIntensity = EmotionIntensity
712
716
 
717
+ @property
718
+ def FastVoiceType(self):
719
+ return self._FastVoiceType
720
+
721
+ @FastVoiceType.setter
722
+ def FastVoiceType(self, FastVoiceType):
723
+ self._FastVoiceType = FastVoiceType
724
+
713
725
 
714
726
  def _deserialize(self, params):
715
727
  self._Text = params.get("Text")
@@ -726,6 +738,7 @@ class TextToVoiceRequest(AbstractModel):
726
738
  self._SegmentRate = params.get("SegmentRate")
727
739
  self._EmotionCategory = params.get("EmotionCategory")
728
740
  self._EmotionIntensity = params.get("EmotionIntensity")
741
+ self._FastVoiceType = params.get("FastVoiceType")
729
742
  memeber_set = set(params.keys())
730
743
  for name, value in vars(self).items():
731
744
  property_name = name[1:]
@@ -8889,8 +8889,13 @@ class AreaCLSTargetInfo(AbstractModel):
8889
8889
  def __init__(self):
8890
8890
  r"""
8891
8891
  :param _CLSRegion: 日志集所属地区:
8892
- ap-guangzhou:广州;
8893
- ap-singapore:新加坡。
8892
+ <li>ap-guangzhou:广州;</li>
8893
+ <li>ap-beijing:北京;</li>
8894
+ <li>ap-chengdu:成都;</li>
8895
+ <li>ap-chongqing:重庆;</li>
8896
+ <li>ap-nanjing:南京;</li>
8897
+ <li>ap-shanghai:上海;</li>
8898
+ <li>ap-singapore:新加坡。</li>
8894
8899
  :type CLSRegion: str
8895
8900
  :param _TopicId: 投递的目标主题 ID。
8896
8901
  :type TopicId: str
@@ -12817,9 +12822,7 @@ class CreateCLSLogsetRequest(AbstractModel):
12817
12822
 
12818
12823
  def __init__(self):
12819
12824
  r"""
12820
- :param _CLSRegion: 日志集所属地区:
12821
- ap-guangzhou:广州;
12822
- ap-singapore:新加坡。
12825
+ :param _CLSRegion: 日志集所属的地域,取值有: <li>ap-guangzhou:广州;</li> <li>ap-beijing:北京;</li> <li>ap-chengdu:成都;</li> <li>ap-chongqing:重庆;</li> <li>ap-nanjing:南京;</li> <li>ap-shanghai:上海;</li> <li>ap-singapore:新加坡。</li>
12823
12826
  :type CLSRegion: str
12824
12827
  """
12825
12828
  self._CLSRegion = None
@@ -12889,9 +12892,7 @@ class CreateCLSTopicRequest(AbstractModel):
12889
12892
 
12890
12893
  def __init__(self):
12891
12894
  r"""
12892
- :param _CLSRegion: 日志集所属地区:
12893
- ap-guangzhou:广州;
12894
- ap-singapore:新加坡。
12895
+ :param _CLSRegion: 日志集所属的地域,取值有: <li>ap-guangzhou:广州;</li> <li>ap-beijing:北京;</li> <li>ap-chengdu:成都;</li> <li>ap-chongqing:重庆;</li> <li>ap-nanjing:南京;</li> <li>ap-shanghai:上海;</li> <li>ap-singapore:新加坡。</li>
12895
12896
  :type CLSRegion: str
12896
12897
  :param _TopicName: 日志主题名。
12897
12898
  :type TopicName: str
@@ -16999,9 +17000,7 @@ class DeleteCLSTopicRequest(AbstractModel):
16999
17000
 
17000
17001
  def __init__(self):
17001
17002
  r"""
17002
- :param _CLSRegion: 日志集所属地区:
17003
- ap-guangzhou:广州;
17004
- ap-singapore:新加坡。
17003
+ :param _CLSRegion: 日志集所属的地域,取值有: <li>ap-guangzhou:广州;</li> <li>ap-beijing:北京;</li> <li>ap-chengdu:成都;</li> <li>ap-chongqing:重庆;</li> <li>ap-nanjing:南京;</li> <li>ap-shanghai:上海;</li> <li>ap-singapore:新加坡。</li>
17005
17004
  :type CLSRegion: str
17006
17005
  :param _TopicId: 日志主题 ID。
17007
17006
  :type TopicId: str
@@ -19550,9 +19549,7 @@ class DescribeCLSLogsetsRequest(AbstractModel):
19550
19549
 
19551
19550
  def __init__(self):
19552
19551
  r"""
19553
- :param _CLSRegion: CLS 日志集所属的地域,取值有:
19554
- ap-guangzhou:广州;
19555
- ap-singapore:新加坡。
19552
+ :param _CLSRegion: 日志集所属的地域,取值有: <li>ap-guangzhou:广州;</li> <li>ap-beijing:北京;</li> <li>ap-chengdu:成都;</li> <li>ap-chongqing:重庆;</li> <li>ap-nanjing:南京;</li> <li>ap-shanghai:上海;</li> <li>ap-singapore:新加坡。</li>
19556
19553
  :type CLSRegion: str
19557
19554
  """
19558
19555
  self._CLSRegion = None
@@ -19726,9 +19723,7 @@ class DescribeCLSTopicsRequest(AbstractModel):
19726
19723
 
19727
19724
  def __init__(self):
19728
19725
  r"""
19729
- :param _CLSRegion: 日志集所属地区:
19730
- ap-guangzhou:广州;
19731
- ap-singapore:新加坡。
19726
+ :param _CLSRegion: 日志集所属的地域,取值有: <li>ap-guangzhou:广州;</li> <li>ap-beijing:北京;</li> <li>ap-chengdu:成都;</li> <li>ap-chongqing:重庆;</li> <li>ap-nanjing:南京;</li> <li>ap-shanghai:上海;</li> <li>ap-singapore:新加坡。</li>
19732
19727
  :type CLSRegion: str
19733
19728
  :param _LogsetId: 日志主题所属日志集 ID。
19734
19729
  :type LogsetId: str
@@ -20043,7 +20043,7 @@ class DescribeDataCheckStatRequest(AbstractModel):
20043
20043
 
20044
20044
  def __init__(self):
20045
20045
  r"""
20046
- :param _ProjectId: Project id
20046
+ :param _ProjectId: 项目id
20047
20047
  :type ProjectId: str
20048
20048
  :param _BeginDate: 开始时间,时间戳到秒
20049
20049
  :type BeginDate: str
@@ -26169,9 +26169,9 @@ class DescribeInstancesRequest(AbstractModel):
26169
26169
  r"""
26170
26170
  :param _ProjectId: 项目id
26171
26171
  :type ProjectId: str
26172
- :param _PageNumber: 页数
26172
+ :param _PageNumber: 页数:默认1
26173
26173
  :type PageNumber: int
26174
- :param _PageSize: 分页大小
26174
+ :param _PageSize: 分页大小,默认最小10
26175
26175
  :type PageSize: int
26176
26176
  :param _Filters: 过滤条件
26177
26177
  :type Filters: list of Filter
@@ -30811,7 +30811,7 @@ class DescribeRuleDimStatRequest(AbstractModel):
30811
30811
 
30812
30812
  def __init__(self):
30813
30813
  r"""
30814
- :param _ProjectId: Project Id
30814
+ :param _ProjectId: 项目id
30815
30815
  :type ProjectId: str
30816
30816
  :param _BeginDate: 开始时间,时间戳到秒
30817
30817
  :type BeginDate: str
@@ -31444,7 +31444,7 @@ class DescribeRuleExecStatRequest(AbstractModel):
31444
31444
 
31445
31445
  def __init__(self):
31446
31446
  r"""
31447
- :param _ProjectId: ProjectId 值
31447
+ :param _ProjectId: 项目id
31448
31448
  :type ProjectId: str
31449
31449
  :param _BeginDate: 开始时间,时间戳到秒
31450
31450
  :type BeginDate: str
@@ -38398,7 +38398,7 @@ class DescribeTopTableStatRequest(AbstractModel):
38398
38398
 
38399
38399
  def __init__(self):
38400
38400
  r"""
38401
- :param _ProjectId: Project Id
38401
+ :param _ProjectId: 项目id
38402
38402
  :type ProjectId: str
38403
38403
  :param _BeginDate: 开始时间,时间戳到秒
38404
38404
  :type BeginDate: str
@@ -38494,7 +38494,7 @@ class DescribeTrendStatRequest(AbstractModel):
38494
38494
 
38495
38495
  def __init__(self):
38496
38496
  r"""
38497
- :param _ProjectId: Project id
38497
+ :param _ProjectId: 项目id
38498
38498
  :type ProjectId: str
38499
38499
  :param _BeginDate: 开始时间,时间戳到秒
38500
38500
  :type BeginDate: str
@@ -42111,6 +42111,21 @@ class ExportTaskInfo(AbstractModel):
42111
42111
  :param _FilePath: 文件相对路径
42112
42112
  注意:此字段可能返回 null,表示取不到有效值。
42113
42113
  :type FilePath: str
42114
+ :param _Expire: 是否过期(1.已过期 2.未过期)
42115
+ 注意:此字段可能返回 null,表示取不到有效值。
42116
+ :type Expire: int
42117
+ :param _DatasourceName: 数据源名称
42118
+ 注意:此字段可能返回 null,表示取不到有效值。
42119
+ :type DatasourceName: str
42120
+ :param _DbTableName: 库名+表名
42121
+ 注意:此字段可能返回 null,表示取不到有效值。
42122
+ :type DbTableName: str
42123
+ :param _RuleName: 规则名称
42124
+ 注意:此字段可能返回 null,表示取不到有效值。
42125
+ :type RuleName: str
42126
+ :param _RuleExecId: 规则执行id
42127
+ 注意:此字段可能返回 null,表示取不到有效值。
42128
+ :type RuleExecId: int
42114
42129
  """
42115
42130
  self._ExportTaskId = None
42116
42131
  self._TaskType = None
@@ -42121,6 +42136,11 @@ class ExportTaskInfo(AbstractModel):
42121
42136
  self._SchedulerTaskId = None
42122
42137
  self._SchedulerCurRunDate = None
42123
42138
  self._FilePath = None
42139
+ self._Expire = None
42140
+ self._DatasourceName = None
42141
+ self._DbTableName = None
42142
+ self._RuleName = None
42143
+ self._RuleExecId = None
42124
42144
 
42125
42145
  @property
42126
42146
  def ExportTaskId(self):
@@ -42194,6 +42214,46 @@ class ExportTaskInfo(AbstractModel):
42194
42214
  def FilePath(self, FilePath):
42195
42215
  self._FilePath = FilePath
42196
42216
 
42217
+ @property
42218
+ def Expire(self):
42219
+ return self._Expire
42220
+
42221
+ @Expire.setter
42222
+ def Expire(self, Expire):
42223
+ self._Expire = Expire
42224
+
42225
+ @property
42226
+ def DatasourceName(self):
42227
+ return self._DatasourceName
42228
+
42229
+ @DatasourceName.setter
42230
+ def DatasourceName(self, DatasourceName):
42231
+ self._DatasourceName = DatasourceName
42232
+
42233
+ @property
42234
+ def DbTableName(self):
42235
+ return self._DbTableName
42236
+
42237
+ @DbTableName.setter
42238
+ def DbTableName(self, DbTableName):
42239
+ self._DbTableName = DbTableName
42240
+
42241
+ @property
42242
+ def RuleName(self):
42243
+ return self._RuleName
42244
+
42245
+ @RuleName.setter
42246
+ def RuleName(self, RuleName):
42247
+ self._RuleName = RuleName
42248
+
42249
+ @property
42250
+ def RuleExecId(self):
42251
+ return self._RuleExecId
42252
+
42253
+ @RuleExecId.setter
42254
+ def RuleExecId(self, RuleExecId):
42255
+ self._RuleExecId = RuleExecId
42256
+
42197
42257
 
42198
42258
  def _deserialize(self, params):
42199
42259
  self._ExportTaskId = params.get("ExportTaskId")
@@ -42205,6 +42265,11 @@ class ExportTaskInfo(AbstractModel):
42205
42265
  self._SchedulerTaskId = params.get("SchedulerTaskId")
42206
42266
  self._SchedulerCurRunDate = params.get("SchedulerCurRunDate")
42207
42267
  self._FilePath = params.get("FilePath")
42268
+ self._Expire = params.get("Expire")
42269
+ self._DatasourceName = params.get("DatasourceName")
42270
+ self._DbTableName = params.get("DbTableName")
42271
+ self._RuleName = params.get("RuleName")
42272
+ self._RuleExecId = params.get("RuleExecId")
42208
42273
  memeber_set = set(params.keys())
42209
42274
  for name, value in vars(self).items():
42210
42275
  property_name = name[1:]
@@ -60295,6 +60360,9 @@ class Rule(AbstractModel):
60295
60360
  :param _MonitorStatus: 监控是否开启.0false,1true
60296
60361
  注意:此字段可能返回 null,表示取不到有效值。
60297
60362
  :type MonitorStatus: int
60363
+ :param _TriggerCondition: 触发条件
60364
+ 注意:此字段可能返回 null,表示取不到有效值。
60365
+ :type TriggerCondition: str
60298
60366
  """
60299
60367
  self._RuleId = None
60300
60368
  self._RuleGroupId = None
@@ -60339,6 +60407,7 @@ class Rule(AbstractModel):
60339
60407
  self._DatasourceId = None
60340
60408
  self._DatabaseId = None
60341
60409
  self._MonitorStatus = None
60410
+ self._TriggerCondition = None
60342
60411
 
60343
60412
  @property
60344
60413
  def RuleId(self):
@@ -60684,6 +60753,14 @@ class Rule(AbstractModel):
60684
60753
  def MonitorStatus(self, MonitorStatus):
60685
60754
  self._MonitorStatus = MonitorStatus
60686
60755
 
60756
+ @property
60757
+ def TriggerCondition(self):
60758
+ return self._TriggerCondition
60759
+
60760
+ @TriggerCondition.setter
60761
+ def TriggerCondition(self, TriggerCondition):
60762
+ self._TriggerCondition = TriggerCondition
60763
+
60687
60764
 
60688
60765
  def _deserialize(self, params):
60689
60766
  self._RuleId = params.get("RuleId")
@@ -60737,6 +60814,7 @@ class Rule(AbstractModel):
60737
60814
  self._DatasourceId = params.get("DatasourceId")
60738
60815
  self._DatabaseId = params.get("DatabaseId")
60739
60816
  self._MonitorStatus = params.get("MonitorStatus")
60817
+ self._TriggerCondition = params.get("TriggerCondition")
60740
60818
  memeber_set = set(params.keys())
60741
60819
  for name, value in vars(self).items():
60742
60820
  property_name = name[1:]
@@ -62261,6 +62339,9 @@ class RuleGroupExecResult(AbstractModel):
62261
62339
  :param _EngineType: 实际执行引擎
62262
62340
  注意:此字段可能返回 null,表示取不到有效值。
62263
62341
  :type EngineType: str
62342
+ :param _RuleExecResultVOList: 规则执行结果
62343
+ 注意:此字段可能返回 null,表示取不到有效值。
62344
+ :type RuleExecResultVOList: list of RuleExecResult
62264
62345
  """
62265
62346
  self._RuleGroupExecId = None
62266
62347
  self._RuleGroupId = None
@@ -62277,6 +62358,7 @@ class RuleGroupExecResult(AbstractModel):
62277
62358
  self._Permission = None
62278
62359
  self._ExecDetail = None
62279
62360
  self._EngineType = None
62361
+ self._RuleExecResultVOList = None
62280
62362
 
62281
62363
  @property
62282
62364
  def RuleGroupExecId(self):
@@ -62398,6 +62480,14 @@ class RuleGroupExecResult(AbstractModel):
62398
62480
  def EngineType(self, EngineType):
62399
62481
  self._EngineType = EngineType
62400
62482
 
62483
+ @property
62484
+ def RuleExecResultVOList(self):
62485
+ return self._RuleExecResultVOList
62486
+
62487
+ @RuleExecResultVOList.setter
62488
+ def RuleExecResultVOList(self, RuleExecResultVOList):
62489
+ self._RuleExecResultVOList = RuleExecResultVOList
62490
+
62401
62491
 
62402
62492
  def _deserialize(self, params):
62403
62493
  self._RuleGroupExecId = params.get("RuleGroupExecId")
@@ -62415,6 +62505,12 @@ class RuleGroupExecResult(AbstractModel):
62415
62505
  self._Permission = params.get("Permission")
62416
62506
  self._ExecDetail = params.get("ExecDetail")
62417
62507
  self._EngineType = params.get("EngineType")
62508
+ if params.get("RuleExecResultVOList") is not None:
62509
+ self._RuleExecResultVOList = []
62510
+ for item in params.get("RuleExecResultVOList"):
62511
+ obj = RuleExecResult()
62512
+ obj._deserialize(item)
62513
+ self._RuleExecResultVOList.append(obj)
62418
62514
  memeber_set = set(params.keys())
62419
62515
  for name, value in vars(self).items():
62420
62516
  property_name = name[1:]
@@ -72550,6 +72646,48 @@ class TaskCanvasInfo(AbstractModel):
72550
72646
 
72551
72647
  注意:此字段可能返回 null,表示取不到有效值。
72552
72648
  :type TenantId: str
72649
+ :param _SelfDepend: 自依赖类型
72650
+ 注意:此字段可能返回 null,表示取不到有效值。
72651
+ :type SelfDepend: int
72652
+ :param _ExecutorGroupId: 资源组id
72653
+ 注意:此字段可能返回 null,表示取不到有效值。
72654
+ :type ExecutorGroupId: str
72655
+ :param _ExecutorGroupName: 资源组名称
72656
+ 注意:此字段可能返回 null,表示取不到有效值。
72657
+ :type ExecutorGroupName: str
72658
+ :param _RunPriority: 优先级
72659
+ 注意:此字段可能返回 null,表示取不到有效值。
72660
+ :type RunPriority: str
72661
+ :param _TryLimit: 可充实次数
72662
+ 注意:此字段可能返回 null,表示取不到有效值。
72663
+ :type TryLimit: str
72664
+ :param _RetryAble: 可充实
72665
+ 注意:此字段可能返回 null,表示取不到有效值。
72666
+ :type RetryAble: str
72667
+ :param _RetryWait: 重试等待事件
72668
+ 注意:此字段可能返回 null,表示取不到有效值。
72669
+ :type RetryWait: str
72670
+ :param _LastSchedulerCommitTime: 最近提交时间
72671
+ 注意:此字段可能返回 null,表示取不到有效值。
72672
+ :type LastSchedulerCommitTime: str
72673
+ :param _Notes: 备注
72674
+ 注意:此字段可能返回 null,表示取不到有效值。
72675
+ :type Notes: str
72676
+ :param _Creator: 创建人
72677
+ 注意:此字段可能返回 null,表示取不到有效值。
72678
+ :type Creator: str
72679
+ :param _UpdateUser: 创建人id
72680
+ 注意:此字段可能返回 null,表示取不到有效值。
72681
+ :type UpdateUser: str
72682
+ :param _UpdateUserId: 更新人id
72683
+ 注意:此字段可能返回 null,表示取不到有效值。
72684
+ :type UpdateUserId: str
72685
+ :param _YarnQueue: yarn队列
72686
+ 注意:此字段可能返回 null,表示取不到有效值。
72687
+ :type YarnQueue: str
72688
+ :param _ExecutionTTL: 可执行的timeToLive
72689
+ 注意:此字段可能返回 null,表示取不到有效值。
72690
+ :type ExecutionTTL: int
72553
72691
  """
72554
72692
  self._TaskId = None
72555
72693
  self._TaskName = None
@@ -72585,6 +72723,20 @@ class TaskCanvasInfo(AbstractModel):
72585
72723
  self._UserId = None
72586
72724
  self._OwnerId = None
72587
72725
  self._TenantId = None
72726
+ self._SelfDepend = None
72727
+ self._ExecutorGroupId = None
72728
+ self._ExecutorGroupName = None
72729
+ self._RunPriority = None
72730
+ self._TryLimit = None
72731
+ self._RetryAble = None
72732
+ self._RetryWait = None
72733
+ self._LastSchedulerCommitTime = None
72734
+ self._Notes = None
72735
+ self._Creator = None
72736
+ self._UpdateUser = None
72737
+ self._UpdateUserId = None
72738
+ self._YarnQueue = None
72739
+ self._ExecutionTTL = None
72588
72740
 
72589
72741
  @property
72590
72742
  def TaskId(self):
@@ -72858,6 +73010,118 @@ class TaskCanvasInfo(AbstractModel):
72858
73010
  def TenantId(self, TenantId):
72859
73011
  self._TenantId = TenantId
72860
73012
 
73013
+ @property
73014
+ def SelfDepend(self):
73015
+ return self._SelfDepend
73016
+
73017
+ @SelfDepend.setter
73018
+ def SelfDepend(self, SelfDepend):
73019
+ self._SelfDepend = SelfDepend
73020
+
73021
+ @property
73022
+ def ExecutorGroupId(self):
73023
+ return self._ExecutorGroupId
73024
+
73025
+ @ExecutorGroupId.setter
73026
+ def ExecutorGroupId(self, ExecutorGroupId):
73027
+ self._ExecutorGroupId = ExecutorGroupId
73028
+
73029
+ @property
73030
+ def ExecutorGroupName(self):
73031
+ return self._ExecutorGroupName
73032
+
73033
+ @ExecutorGroupName.setter
73034
+ def ExecutorGroupName(self, ExecutorGroupName):
73035
+ self._ExecutorGroupName = ExecutorGroupName
73036
+
73037
+ @property
73038
+ def RunPriority(self):
73039
+ return self._RunPriority
73040
+
73041
+ @RunPriority.setter
73042
+ def RunPriority(self, RunPriority):
73043
+ self._RunPriority = RunPriority
73044
+
73045
+ @property
73046
+ def TryLimit(self):
73047
+ return self._TryLimit
73048
+
73049
+ @TryLimit.setter
73050
+ def TryLimit(self, TryLimit):
73051
+ self._TryLimit = TryLimit
73052
+
73053
+ @property
73054
+ def RetryAble(self):
73055
+ return self._RetryAble
73056
+
73057
+ @RetryAble.setter
73058
+ def RetryAble(self, RetryAble):
73059
+ self._RetryAble = RetryAble
73060
+
73061
+ @property
73062
+ def RetryWait(self):
73063
+ return self._RetryWait
73064
+
73065
+ @RetryWait.setter
73066
+ def RetryWait(self, RetryWait):
73067
+ self._RetryWait = RetryWait
73068
+
73069
+ @property
73070
+ def LastSchedulerCommitTime(self):
73071
+ return self._LastSchedulerCommitTime
73072
+
73073
+ @LastSchedulerCommitTime.setter
73074
+ def LastSchedulerCommitTime(self, LastSchedulerCommitTime):
73075
+ self._LastSchedulerCommitTime = LastSchedulerCommitTime
73076
+
73077
+ @property
73078
+ def Notes(self):
73079
+ return self._Notes
73080
+
73081
+ @Notes.setter
73082
+ def Notes(self, Notes):
73083
+ self._Notes = Notes
73084
+
73085
+ @property
73086
+ def Creator(self):
73087
+ return self._Creator
73088
+
73089
+ @Creator.setter
73090
+ def Creator(self, Creator):
73091
+ self._Creator = Creator
73092
+
73093
+ @property
73094
+ def UpdateUser(self):
73095
+ return self._UpdateUser
73096
+
73097
+ @UpdateUser.setter
73098
+ def UpdateUser(self, UpdateUser):
73099
+ self._UpdateUser = UpdateUser
73100
+
73101
+ @property
73102
+ def UpdateUserId(self):
73103
+ return self._UpdateUserId
73104
+
73105
+ @UpdateUserId.setter
73106
+ def UpdateUserId(self, UpdateUserId):
73107
+ self._UpdateUserId = UpdateUserId
73108
+
73109
+ @property
73110
+ def YarnQueue(self):
73111
+ return self._YarnQueue
73112
+
73113
+ @YarnQueue.setter
73114
+ def YarnQueue(self, YarnQueue):
73115
+ self._YarnQueue = YarnQueue
73116
+
73117
+ @property
73118
+ def ExecutionTTL(self):
73119
+ return self._ExecutionTTL
73120
+
73121
+ @ExecutionTTL.setter
73122
+ def ExecutionTTL(self, ExecutionTTL):
73123
+ self._ExecutionTTL = ExecutionTTL
73124
+
72861
73125
 
72862
73126
  def _deserialize(self, params):
72863
73127
  self._TaskId = params.get("TaskId")
@@ -72894,6 +73158,20 @@ class TaskCanvasInfo(AbstractModel):
72894
73158
  self._UserId = params.get("UserId")
72895
73159
  self._OwnerId = params.get("OwnerId")
72896
73160
  self._TenantId = params.get("TenantId")
73161
+ self._SelfDepend = params.get("SelfDepend")
73162
+ self._ExecutorGroupId = params.get("ExecutorGroupId")
73163
+ self._ExecutorGroupName = params.get("ExecutorGroupName")
73164
+ self._RunPriority = params.get("RunPriority")
73165
+ self._TryLimit = params.get("TryLimit")
73166
+ self._RetryAble = params.get("RetryAble")
73167
+ self._RetryWait = params.get("RetryWait")
73168
+ self._LastSchedulerCommitTime = params.get("LastSchedulerCommitTime")
73169
+ self._Notes = params.get("Notes")
73170
+ self._Creator = params.get("Creator")
73171
+ self._UpdateUser = params.get("UpdateUser")
73172
+ self._UpdateUserId = params.get("UpdateUserId")
73173
+ self._YarnQueue = params.get("YarnQueue")
73174
+ self._ExecutionTTL = params.get("ExecutionTTL")
72897
73175
  memeber_set = set(params.keys())
72898
73176
  for name, value in vars(self).items():
72899
73177
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python
3
- Version: 3.0.1117
3
+ Version: 3.0.1119
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud