tencentcloud-sdk-python-wedata 3.1.81__tar.gz → 3.1.86__tar.gz
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.
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/setup.py +1 -1
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/tencentcloud/wedata/v20210820/models.py +52 -18
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/tencentcloud/wedata/v20250806/models.py +57 -8
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/tencentcloud_sdk_python_wedata.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_wedata-3.1.86/tencentcloud_sdk_python_wedata.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_wedata-3.1.81/tencentcloud_sdk_python_wedata.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/README.rst +0 -0
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/setup.cfg +0 -0
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/tencentcloud/wedata/__init__.py +0 -0
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/tencentcloud/wedata/v20210820/__init__.py +0 -0
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/tencentcloud/wedata/v20210820/errorcodes.py +0 -0
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/tencentcloud/wedata/v20210820/wedata_client.py +0 -0
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/tencentcloud/wedata/v20210820/wedata_client_async.py +0 -0
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/tencentcloud/wedata/v20250806/__init__.py +0 -0
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/tencentcloud/wedata/v20250806/errorcodes.py +0 -0
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/tencentcloud/wedata/v20250806/wedata_client.py +0 -0
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/tencentcloud/wedata/v20250806/wedata_client_async.py +0 -0
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/tencentcloud_sdk_python_wedata.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/tencentcloud_sdk_python_wedata.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_wedata-3.1.81 → tencentcloud_sdk_python_wedata-3.1.86}/tencentcloud_sdk_python_wedata.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-wedata
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.86
|
|
4
4
|
Summary: Tencent Cloud Wedata SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.86
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-wedata',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.86,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Wedata SDK for Python',
|
|
@@ -102940,32 +102940,38 @@ class SystemRole(AbstractModel):
|
|
|
102940
102940
|
|
|
102941
102941
|
def __init__(self):
|
|
102942
102942
|
r"""
|
|
102943
|
-
:param _RoleId:
|
|
102943
|
+
:param _RoleId: <p>角色id</p>
|
|
102944
102944
|
:type RoleId: str
|
|
102945
|
-
:param _Name:
|
|
102945
|
+
:param _Name: <p>角色名称</p>
|
|
102946
102946
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
102947
102947
|
:type Name: str
|
|
102948
|
-
:param _NameCn:
|
|
102948
|
+
:param _NameCn: <p>角色昵称</p>
|
|
102949
102949
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
102950
102950
|
:type NameCn: str
|
|
102951
|
-
:param _Description:
|
|
102951
|
+
:param _Description: <p>描述</p>
|
|
102952
102952
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
102953
102953
|
:type Description: str
|
|
102954
|
-
:param _Privileges:
|
|
102954
|
+
:param _Privileges: <p>角色权限</p>
|
|
102955
102955
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
102956
102956
|
:type Privileges: list of RolePrivilege
|
|
102957
|
-
:param _MethodPaths:
|
|
102957
|
+
:param _MethodPaths: <p>方法路径</p>
|
|
102958
102958
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
102959
102959
|
:type MethodPaths: list of str
|
|
102960
|
-
:param _RoleType:
|
|
102960
|
+
:param _RoleType: <p>角色类型, 分为System,Tenant,Project,Commercial</p>
|
|
102961
102961
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
102962
102962
|
:type RoleType: str
|
|
102963
|
-
:param _SystemInit:
|
|
102963
|
+
:param _SystemInit: <p>是否系统默认</p>
|
|
102964
102964
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
102965
102965
|
:type SystemInit: bool
|
|
102966
|
-
:param _Params:
|
|
102966
|
+
:param _Params: <p>自定义参数</p>
|
|
102967
102967
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
102968
102968
|
:type Params: str
|
|
102969
|
+
:param _CreateTimeStr: <p>创建时间</p>
|
|
102970
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
102971
|
+
:type CreateTimeStr: str
|
|
102972
|
+
:param _Creator: <p>创建人</p>
|
|
102973
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
102974
|
+
:type Creator: str
|
|
102969
102975
|
"""
|
|
102970
102976
|
self._RoleId = None
|
|
102971
102977
|
self._Name = None
|
|
@@ -102976,10 +102982,12 @@ class SystemRole(AbstractModel):
|
|
|
102976
102982
|
self._RoleType = None
|
|
102977
102983
|
self._SystemInit = None
|
|
102978
102984
|
self._Params = None
|
|
102985
|
+
self._CreateTimeStr = None
|
|
102986
|
+
self._Creator = None
|
|
102979
102987
|
|
|
102980
102988
|
@property
|
|
102981
102989
|
def RoleId(self):
|
|
102982
|
-
r"""
|
|
102990
|
+
r"""<p>角色id</p>
|
|
102983
102991
|
:rtype: str
|
|
102984
102992
|
"""
|
|
102985
102993
|
return self._RoleId
|
|
@@ -102990,7 +102998,7 @@ class SystemRole(AbstractModel):
|
|
|
102990
102998
|
|
|
102991
102999
|
@property
|
|
102992
103000
|
def Name(self):
|
|
102993
|
-
r"""
|
|
103001
|
+
r"""<p>角色名称</p>
|
|
102994
103002
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
102995
103003
|
:rtype: str
|
|
102996
103004
|
"""
|
|
@@ -103002,7 +103010,7 @@ class SystemRole(AbstractModel):
|
|
|
103002
103010
|
|
|
103003
103011
|
@property
|
|
103004
103012
|
def NameCn(self):
|
|
103005
|
-
r"""
|
|
103013
|
+
r"""<p>角色昵称</p>
|
|
103006
103014
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
103007
103015
|
:rtype: str
|
|
103008
103016
|
"""
|
|
@@ -103014,7 +103022,7 @@ class SystemRole(AbstractModel):
|
|
|
103014
103022
|
|
|
103015
103023
|
@property
|
|
103016
103024
|
def Description(self):
|
|
103017
|
-
r"""
|
|
103025
|
+
r"""<p>描述</p>
|
|
103018
103026
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
103019
103027
|
:rtype: str
|
|
103020
103028
|
"""
|
|
@@ -103026,7 +103034,7 @@ class SystemRole(AbstractModel):
|
|
|
103026
103034
|
|
|
103027
103035
|
@property
|
|
103028
103036
|
def Privileges(self):
|
|
103029
|
-
r"""
|
|
103037
|
+
r"""<p>角色权限</p>
|
|
103030
103038
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
103031
103039
|
:rtype: list of RolePrivilege
|
|
103032
103040
|
"""
|
|
@@ -103038,7 +103046,7 @@ class SystemRole(AbstractModel):
|
|
|
103038
103046
|
|
|
103039
103047
|
@property
|
|
103040
103048
|
def MethodPaths(self):
|
|
103041
|
-
r"""
|
|
103049
|
+
r"""<p>方法路径</p>
|
|
103042
103050
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
103043
103051
|
:rtype: list of str
|
|
103044
103052
|
"""
|
|
@@ -103050,7 +103058,7 @@ class SystemRole(AbstractModel):
|
|
|
103050
103058
|
|
|
103051
103059
|
@property
|
|
103052
103060
|
def RoleType(self):
|
|
103053
|
-
r"""
|
|
103061
|
+
r"""<p>角色类型, 分为System,Tenant,Project,Commercial</p>
|
|
103054
103062
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
103055
103063
|
:rtype: str
|
|
103056
103064
|
"""
|
|
@@ -103062,7 +103070,7 @@ class SystemRole(AbstractModel):
|
|
|
103062
103070
|
|
|
103063
103071
|
@property
|
|
103064
103072
|
def SystemInit(self):
|
|
103065
|
-
r"""
|
|
103073
|
+
r"""<p>是否系统默认</p>
|
|
103066
103074
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
103067
103075
|
:rtype: bool
|
|
103068
103076
|
"""
|
|
@@ -103074,7 +103082,7 @@ class SystemRole(AbstractModel):
|
|
|
103074
103082
|
|
|
103075
103083
|
@property
|
|
103076
103084
|
def Params(self):
|
|
103077
|
-
r"""
|
|
103085
|
+
r"""<p>自定义参数</p>
|
|
103078
103086
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
103079
103087
|
:rtype: str
|
|
103080
103088
|
"""
|
|
@@ -103084,6 +103092,30 @@ class SystemRole(AbstractModel):
|
|
|
103084
103092
|
def Params(self, Params):
|
|
103085
103093
|
self._Params = Params
|
|
103086
103094
|
|
|
103095
|
+
@property
|
|
103096
|
+
def CreateTimeStr(self):
|
|
103097
|
+
r"""<p>创建时间</p>
|
|
103098
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
103099
|
+
:rtype: str
|
|
103100
|
+
"""
|
|
103101
|
+
return self._CreateTimeStr
|
|
103102
|
+
|
|
103103
|
+
@CreateTimeStr.setter
|
|
103104
|
+
def CreateTimeStr(self, CreateTimeStr):
|
|
103105
|
+
self._CreateTimeStr = CreateTimeStr
|
|
103106
|
+
|
|
103107
|
+
@property
|
|
103108
|
+
def Creator(self):
|
|
103109
|
+
r"""<p>创建人</p>
|
|
103110
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
103111
|
+
:rtype: str
|
|
103112
|
+
"""
|
|
103113
|
+
return self._Creator
|
|
103114
|
+
|
|
103115
|
+
@Creator.setter
|
|
103116
|
+
def Creator(self, Creator):
|
|
103117
|
+
self._Creator = Creator
|
|
103118
|
+
|
|
103087
103119
|
|
|
103088
103120
|
def _deserialize(self, params):
|
|
103089
103121
|
self._RoleId = params.get("RoleId")
|
|
@@ -103100,6 +103132,8 @@ class SystemRole(AbstractModel):
|
|
|
103100
103132
|
self._RoleType = params.get("RoleType")
|
|
103101
103133
|
self._SystemInit = params.get("SystemInit")
|
|
103102
103134
|
self._Params = params.get("Params")
|
|
103135
|
+
self._CreateTimeStr = params.get("CreateTimeStr")
|
|
103136
|
+
self._Creator = params.get("Creator")
|
|
103103
103137
|
memeber_set = set(params.keys())
|
|
103104
103138
|
for name, value in vars(self).items():
|
|
103105
103139
|
property_name = name[1:]
|
|
@@ -8227,6 +8227,8 @@ class CreateTriggerTaskSchedulerConfiguration(AbstractModel):
|
|
|
8227
8227
|
:type DependencyTriggerPolicy: str
|
|
8228
8228
|
:param _AllowDownstreamDependency: <p>是否允许下游依赖 1允许 0不允许</p><p>取值范围:[0, 1]</p><p>默认值:1</p>
|
|
8229
8229
|
:type AllowDownstreamDependency: int
|
|
8230
|
+
:param _ScheduleType: <p>调度类型: 0 正常调度 1 空跑调度</p><p>枚举值:</p><ul><li>0: 正常调度</li><li>1: 空跑调度</li></ul><p>默认值:0</p>
|
|
8231
|
+
:type ScheduleType: int
|
|
8230
8232
|
"""
|
|
8231
8233
|
self._UpstreamDependencyConfigList = None
|
|
8232
8234
|
self._RunPriorityType = None
|
|
@@ -8240,6 +8242,7 @@ class CreateTriggerTaskSchedulerConfiguration(AbstractModel):
|
|
|
8240
8242
|
self._TaskOutputRegistryList = None
|
|
8241
8243
|
self._DependencyTriggerPolicy = None
|
|
8242
8244
|
self._AllowDownstreamDependency = None
|
|
8245
|
+
self._ScheduleType = None
|
|
8243
8246
|
|
|
8244
8247
|
@property
|
|
8245
8248
|
def UpstreamDependencyConfigList(self):
|
|
@@ -8373,6 +8376,17 @@ class CreateTriggerTaskSchedulerConfiguration(AbstractModel):
|
|
|
8373
8376
|
def AllowDownstreamDependency(self, AllowDownstreamDependency):
|
|
8374
8377
|
self._AllowDownstreamDependency = AllowDownstreamDependency
|
|
8375
8378
|
|
|
8379
|
+
@property
|
|
8380
|
+
def ScheduleType(self):
|
|
8381
|
+
r"""<p>调度类型: 0 正常调度 1 空跑调度</p><p>枚举值:</p><ul><li>0: 正常调度</li><li>1: 空跑调度</li></ul><p>默认值:0</p>
|
|
8382
|
+
:rtype: int
|
|
8383
|
+
"""
|
|
8384
|
+
return self._ScheduleType
|
|
8385
|
+
|
|
8386
|
+
@ScheduleType.setter
|
|
8387
|
+
def ScheduleType(self, ScheduleType):
|
|
8388
|
+
self._ScheduleType = ScheduleType
|
|
8389
|
+
|
|
8376
8390
|
|
|
8377
8391
|
def _deserialize(self, params):
|
|
8378
8392
|
if params.get("UpstreamDependencyConfigList") is not None:
|
|
@@ -8407,6 +8421,7 @@ class CreateTriggerTaskSchedulerConfiguration(AbstractModel):
|
|
|
8407
8421
|
self._TaskOutputRegistryList.append(obj)
|
|
8408
8422
|
self._DependencyTriggerPolicy = params.get("DependencyTriggerPolicy")
|
|
8409
8423
|
self._AllowDownstreamDependency = params.get("AllowDownstreamDependency")
|
|
8424
|
+
self._ScheduleType = params.get("ScheduleType")
|
|
8410
8425
|
memeber_set = set(params.keys())
|
|
8411
8426
|
for name, value in vars(self).items():
|
|
8412
8427
|
property_name = name[1:]
|
|
@@ -19414,27 +19429,31 @@ class InTaskParameter(AbstractModel):
|
|
|
19414
19429
|
|
|
19415
19430
|
def __init__(self):
|
|
19416
19431
|
r"""
|
|
19417
|
-
:param _ParamKey:
|
|
19432
|
+
:param _ParamKey: <p>参数名</p>
|
|
19418
19433
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19419
19434
|
:type ParamKey: str
|
|
19420
|
-
:param _ParamDesc:
|
|
19435
|
+
:param _ParamDesc: <p>参数描述:格式为 项目标识.任务名称.参数名;例:project_wedata_1.sh_250820_104107.pp_out</p>
|
|
19421
19436
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19422
19437
|
:type ParamDesc: str
|
|
19423
|
-
:param _FromTaskId:
|
|
19438
|
+
:param _FromTaskId: <p>父任务ID</p>
|
|
19424
19439
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19425
19440
|
:type FromTaskId: str
|
|
19426
|
-
:param _FromParamKey:
|
|
19441
|
+
:param _FromParamKey: <p>父任务参数key</p>
|
|
19427
19442
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19428
19443
|
:type FromParamKey: str
|
|
19444
|
+
:param _Type: <p>任务输入类型,默认使用TASK</p><p>枚举值:</p><ul><li>TASK: 来源为父任务</li><li>CONSTANT: 常量值,目前仅for-each节点支持</li></ul>
|
|
19445
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
19446
|
+
:type Type: str
|
|
19429
19447
|
"""
|
|
19430
19448
|
self._ParamKey = None
|
|
19431
19449
|
self._ParamDesc = None
|
|
19432
19450
|
self._FromTaskId = None
|
|
19433
19451
|
self._FromParamKey = None
|
|
19452
|
+
self._Type = None
|
|
19434
19453
|
|
|
19435
19454
|
@property
|
|
19436
19455
|
def ParamKey(self):
|
|
19437
|
-
r"""
|
|
19456
|
+
r"""<p>参数名</p>
|
|
19438
19457
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19439
19458
|
:rtype: str
|
|
19440
19459
|
"""
|
|
@@ -19446,7 +19465,7 @@ class InTaskParameter(AbstractModel):
|
|
|
19446
19465
|
|
|
19447
19466
|
@property
|
|
19448
19467
|
def ParamDesc(self):
|
|
19449
|
-
r"""
|
|
19468
|
+
r"""<p>参数描述:格式为 项目标识.任务名称.参数名;例:project_wedata_1.sh_250820_104107.pp_out</p>
|
|
19450
19469
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19451
19470
|
:rtype: str
|
|
19452
19471
|
"""
|
|
@@ -19458,7 +19477,7 @@ class InTaskParameter(AbstractModel):
|
|
|
19458
19477
|
|
|
19459
19478
|
@property
|
|
19460
19479
|
def FromTaskId(self):
|
|
19461
|
-
r"""
|
|
19480
|
+
r"""<p>父任务ID</p>
|
|
19462
19481
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19463
19482
|
:rtype: str
|
|
19464
19483
|
"""
|
|
@@ -19470,7 +19489,7 @@ class InTaskParameter(AbstractModel):
|
|
|
19470
19489
|
|
|
19471
19490
|
@property
|
|
19472
19491
|
def FromParamKey(self):
|
|
19473
|
-
r"""
|
|
19492
|
+
r"""<p>父任务参数key</p>
|
|
19474
19493
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19475
19494
|
:rtype: str
|
|
19476
19495
|
"""
|
|
@@ -19480,12 +19499,25 @@ class InTaskParameter(AbstractModel):
|
|
|
19480
19499
|
def FromParamKey(self, FromParamKey):
|
|
19481
19500
|
self._FromParamKey = FromParamKey
|
|
19482
19501
|
|
|
19502
|
+
@property
|
|
19503
|
+
def Type(self):
|
|
19504
|
+
r"""<p>任务输入类型,默认使用TASK</p><p>枚举值:</p><ul><li>TASK: 来源为父任务</li><li>CONSTANT: 常量值,目前仅for-each节点支持</li></ul>
|
|
19505
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
19506
|
+
:rtype: str
|
|
19507
|
+
"""
|
|
19508
|
+
return self._Type
|
|
19509
|
+
|
|
19510
|
+
@Type.setter
|
|
19511
|
+
def Type(self, Type):
|
|
19512
|
+
self._Type = Type
|
|
19513
|
+
|
|
19483
19514
|
|
|
19484
19515
|
def _deserialize(self, params):
|
|
19485
19516
|
self._ParamKey = params.get("ParamKey")
|
|
19486
19517
|
self._ParamDesc = params.get("ParamDesc")
|
|
19487
19518
|
self._FromTaskId = params.get("FromTaskId")
|
|
19488
19519
|
self._FromParamKey = params.get("FromParamKey")
|
|
19520
|
+
self._Type = params.get("Type")
|
|
19489
19521
|
memeber_set = set(params.keys())
|
|
19490
19522
|
for name, value in vars(self).items():
|
|
19491
19523
|
property_name = name[1:]
|
|
@@ -56685,6 +56717,9 @@ class TriggerTaskSchedulerConfiguration(AbstractModel):
|
|
|
56685
56717
|
:param _AllowDownstreamDependency: <p>是否允许下游依赖 1允许 0不允许</p><p>取值范围:[0, 1]</p>
|
|
56686
56718
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
56687
56719
|
:type AllowDownstreamDependency: int
|
|
56720
|
+
:param _ScheduleType: <p>调度类型: 0 正常调度 1 空跑调度</p><p>枚举值:</p><ul><li>0: 正常调度</li><li>1: 空跑调度</li></ul><p>默认值:0</p>
|
|
56721
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
56722
|
+
:type ScheduleType: int
|
|
56688
56723
|
"""
|
|
56689
56724
|
self._UpstreamDependencyConfigList = None
|
|
56690
56725
|
self._RunPriorityType = None
|
|
@@ -56698,6 +56733,7 @@ class TriggerTaskSchedulerConfiguration(AbstractModel):
|
|
|
56698
56733
|
self._TaskOutputRegistryList = None
|
|
56699
56734
|
self._DependencyTriggerPolicy = None
|
|
56700
56735
|
self._AllowDownstreamDependency = None
|
|
56736
|
+
self._ScheduleType = None
|
|
56701
56737
|
|
|
56702
56738
|
@property
|
|
56703
56739
|
def UpstreamDependencyConfigList(self):
|
|
@@ -56843,6 +56879,18 @@ class TriggerTaskSchedulerConfiguration(AbstractModel):
|
|
|
56843
56879
|
def AllowDownstreamDependency(self, AllowDownstreamDependency):
|
|
56844
56880
|
self._AllowDownstreamDependency = AllowDownstreamDependency
|
|
56845
56881
|
|
|
56882
|
+
@property
|
|
56883
|
+
def ScheduleType(self):
|
|
56884
|
+
r"""<p>调度类型: 0 正常调度 1 空跑调度</p><p>枚举值:</p><ul><li>0: 正常调度</li><li>1: 空跑调度</li></ul><p>默认值:0</p>
|
|
56885
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
56886
|
+
:rtype: int
|
|
56887
|
+
"""
|
|
56888
|
+
return self._ScheduleType
|
|
56889
|
+
|
|
56890
|
+
@ScheduleType.setter
|
|
56891
|
+
def ScheduleType(self, ScheduleType):
|
|
56892
|
+
self._ScheduleType = ScheduleType
|
|
56893
|
+
|
|
56846
56894
|
|
|
56847
56895
|
def _deserialize(self, params):
|
|
56848
56896
|
if params.get("UpstreamDependencyConfigList") is not None:
|
|
@@ -56877,6 +56925,7 @@ class TriggerTaskSchedulerConfiguration(AbstractModel):
|
|
|
56877
56925
|
self._TaskOutputRegistryList.append(obj)
|
|
56878
56926
|
self._DependencyTriggerPolicy = params.get("DependencyTriggerPolicy")
|
|
56879
56927
|
self._AllowDownstreamDependency = params.get("AllowDownstreamDependency")
|
|
56928
|
+
self._ScheduleType = params.get("ScheduleType")
|
|
56880
56929
|
memeber_set = set(params.keys())
|
|
56881
56930
|
for name, value in vars(self).items():
|
|
56882
56931
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-wedata
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.86
|
|
4
4
|
Summary: Tencent Cloud Wedata SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.86
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.86
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.81
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|