tencentcloud-sdk-python 3.0.1388__py2.py3-none-any.whl → 3.0.1390__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/batch/v20170312/models.py +26 -26
- tencentcloud/bh/v20230418/models.py +315 -0
- tencentcloud/bi/v20220105/models.py +115 -0
- tencentcloud/cam/v20190116/errorcodes.py +6 -0
- tencentcloud/cam/v20190116/models.py +0 -8
- tencentcloud/cbs/v20170312/models.py +10 -10
- tencentcloud/cdb/v20170320/cdb_client.py +23 -0
- tencentcloud/cdb/v20170320/models.py +861 -0
- tencentcloud/cdn/v20180606/models.py +2 -2
- tencentcloud/cdwdoris/v20211228/models.py +19 -0
- tencentcloud/cfw/v20190904/models.py +36 -0
- tencentcloud/cloudapp/v20220530/models.py +15 -0
- tencentcloud/cvm/v20170312/models.py +2 -0
- tencentcloud/cynosdb/v20190107/models.py +239 -6
- tencentcloud/dlc/v20210125/models.py +18 -18
- tencentcloud/emr/v20190103/emr_client.py +23 -0
- tencentcloud/emr/v20190103/models.py +379 -0
- tencentcloud/ess/v20201111/ess_client.py +1 -1
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/gs/v20191118/models.py +15 -0
- tencentcloud/hai/v20230812/errorcodes.py +3 -0
- tencentcloud/keewidb/v20220308/errorcodes.py +6 -0
- tencentcloud/keewidb/v20220308/models.py +8 -8
- tencentcloud/live/v20180801/models.py +2 -0
- tencentcloud/lke/v20231130/models.py +4 -4
- tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
- tencentcloud/mps/v20190612/models.py +45 -0
- tencentcloud/oceanus/v20190422/models.py +747 -2
- tencentcloud/ses/v20201002/models.py +180 -0
- tencentcloud/ses/v20201002/ses_client.py +23 -0
- tencentcloud/ssl/v20191205/errorcodes.py +3 -0
- tencentcloud/ssl/v20191205/models.py +15 -0
- tencentcloud/tag/v20180813/models.py +0 -26
- tencentcloud/tione/v20211111/models.py +62 -0
- tencentcloud/tione/v20211111/tione_client.py +3 -0
- tencentcloud/trabbit/v20230418/models.py +30 -0
- tencentcloud/tsf/v20180326/models.py +20 -0
- tencentcloud/vpc/v20170312/models.py +117 -2
- tencentcloud/vpc/v20170312/vpc_client.py +46 -0
- tencentcloud/wedata/v20210820/models.py +188 -2
- {tencentcloud_sdk_python-3.0.1388.dist-info → tencentcloud_sdk_python-3.0.1390.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1388.dist-info → tencentcloud_sdk_python-3.0.1390.dist-info}/RECORD +46 -46
- {tencentcloud_sdk_python-3.0.1388.dist-info → tencentcloud_sdk_python-3.0.1390.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1388.dist-info → tencentcloud_sdk_python-3.0.1390.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1388.dist-info → tencentcloud_sdk_python-3.0.1390.dist-info}/top_level.txt +0 -0
@@ -3157,10 +3157,13 @@ class AvailableZoneScatterScheduleRule(AbstractModel):
|
|
3157
3157
|
:type MaxUnbalanceQuantity: int
|
3158
3158
|
:param _IsForceSchedule: -
|
3159
3159
|
:type IsForceSchedule: bool
|
3160
|
+
:param _Paths: -
|
3161
|
+
:type Paths: list of CommonOption
|
3160
3162
|
"""
|
3161
3163
|
self._ScatterDimension = None
|
3162
3164
|
self._MaxUnbalanceQuantity = None
|
3163
3165
|
self._IsForceSchedule = None
|
3166
|
+
self._Paths = None
|
3164
3167
|
|
3165
3168
|
@property
|
3166
3169
|
def ScatterDimension(self):
|
@@ -3195,11 +3198,28 @@ class AvailableZoneScatterScheduleRule(AbstractModel):
|
|
3195
3198
|
def IsForceSchedule(self, IsForceSchedule):
|
3196
3199
|
self._IsForceSchedule = IsForceSchedule
|
3197
3200
|
|
3201
|
+
@property
|
3202
|
+
def Paths(self):
|
3203
|
+
"""-
|
3204
|
+
:rtype: list of CommonOption
|
3205
|
+
"""
|
3206
|
+
return self._Paths
|
3207
|
+
|
3208
|
+
@Paths.setter
|
3209
|
+
def Paths(self, Paths):
|
3210
|
+
self._Paths = Paths
|
3211
|
+
|
3198
3212
|
|
3199
3213
|
def _deserialize(self, params):
|
3200
3214
|
self._ScatterDimension = params.get("ScatterDimension")
|
3201
3215
|
self._MaxUnbalanceQuantity = params.get("MaxUnbalanceQuantity")
|
3202
3216
|
self._IsForceSchedule = params.get("IsForceSchedule")
|
3217
|
+
if params.get("Paths") is not None:
|
3218
|
+
self._Paths = []
|
3219
|
+
for item in params.get("Paths"):
|
3220
|
+
obj = CommonOption()
|
3221
|
+
obj._deserialize(item)
|
3222
|
+
self._Paths.append(obj)
|
3203
3223
|
memeber_set = set(params.keys())
|
3204
3224
|
for name, value in vars(self).items():
|
3205
3225
|
property_name = name[1:]
|
@@ -1900,7 +1900,7 @@ class AllocateAddressesRequest(AbstractModel):
|
|
1900
1900
|
<li>AntiDDoSEIP:高防 IP。仅部分地域支持高防IP,详情可见弹性公网IP[产品概述](https://cloud.tencent.com/document/product/1199/41646)。</li>
|
1901
1901
|
:type AddressType: str
|
1902
1902
|
:param _AnycastZone: Anycast发布域。
|
1903
|
-
<ul style="margin:0"><li>已开通Anycast公网加速白名单的用户,可选值:<ul><li>ANYCAST_ZONE_GLOBAL:全球发布域(需要额外开通Anycast全球加速白名单)</li><li>ANYCAST_ZONE_OVERSEAS:境外发布域</li
|
1903
|
+
<ul style="margin:0"><li>已开通Anycast公网加速白名单的用户,可选值:<ul><li>ANYCAST_ZONE_GLOBAL:全球发布域(需要额外开通Anycast全球加速白名单)</li><li>ANYCAST_ZONE_OVERSEAS:境外发布域</li></ul>默认值:ANYCAST_ZONE_OVERSEAS。</li></ul>
|
1904
1904
|
:type AnycastZone: str
|
1905
1905
|
:param _VipCluster: 指定IP地址申请EIP,每个账户每个月只有三次配额
|
1906
1906
|
:type VipCluster: list of str
|
@@ -2036,7 +2036,7 @@ AnycastEIP是否用于绑定负载均衡。
|
|
2036
2036
|
@property
|
2037
2037
|
def AnycastZone(self):
|
2038
2038
|
"""Anycast发布域。
|
2039
|
-
<ul style="margin:0"><li>已开通Anycast公网加速白名单的用户,可选值:<ul><li>ANYCAST_ZONE_GLOBAL:全球发布域(需要额外开通Anycast全球加速白名单)</li><li>ANYCAST_ZONE_OVERSEAS:境外发布域</li
|
2039
|
+
<ul style="margin:0"><li>已开通Anycast公网加速白名单的用户,可选值:<ul><li>ANYCAST_ZONE_GLOBAL:全球发布域(需要额外开通Anycast全球加速白名单)</li><li>ANYCAST_ZONE_OVERSEAS:境外发布域</li></ul>默认值:ANYCAST_ZONE_OVERSEAS。</li></ul>
|
2040
2040
|
:rtype: str
|
2041
2041
|
"""
|
2042
2042
|
return self._AnycastZone
|
@@ -2058,6 +2058,8 @@ AnycastEIP是否用于绑定负载均衡。
|
|
2058
2058
|
|
2059
2059
|
@property
|
2060
2060
|
def ApplicableForCLB(self):
|
2061
|
+
warnings.warn("parameter `ApplicableForCLB` is deprecated", DeprecationWarning)
|
2062
|
+
|
2061
2063
|
"""<b>[已废弃]</b> AnycastEIP不再区分是否负载均衡。原参数说明如下:
|
2062
2064
|
AnycastEIP是否用于绑定负载均衡。
|
2063
2065
|
<ul style="margin:0"><li>已开通Anycast公网加速白名单的用户,可选值:<ul><li>TRUE:AnycastEIP可绑定对象为负载均衡</li>
|
@@ -2068,6 +2070,8 @@ AnycastEIP是否用于绑定负载均衡。
|
|
2068
2070
|
|
2069
2071
|
@ApplicableForCLB.setter
|
2070
2072
|
def ApplicableForCLB(self, ApplicableForCLB):
|
2073
|
+
warnings.warn("parameter `ApplicableForCLB` is deprecated", DeprecationWarning)
|
2074
|
+
|
2071
2075
|
self._ApplicableForCLB = ApplicableForCLB
|
2072
2076
|
|
2073
2077
|
@property
|
@@ -3636,6 +3640,40 @@ class AssociateDirectConnectGatewayNatGatewayResponse(AbstractModel):
|
|
3636
3640
|
self._RequestId = params.get("RequestId")
|
3637
3641
|
|
3638
3642
|
|
3643
|
+
class AssociateHaVipInstanceRequest(AbstractModel):
|
3644
|
+
"""AssociateHaVipInstance请求参数结构体
|
3645
|
+
|
3646
|
+
"""
|
3647
|
+
|
3648
|
+
|
3649
|
+
class AssociateHaVipInstanceResponse(AbstractModel):
|
3650
|
+
"""AssociateHaVipInstance返回参数结构体
|
3651
|
+
|
3652
|
+
"""
|
3653
|
+
|
3654
|
+
def __init__(self):
|
3655
|
+
r"""
|
3656
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3657
|
+
:type RequestId: str
|
3658
|
+
"""
|
3659
|
+
self._RequestId = None
|
3660
|
+
|
3661
|
+
@property
|
3662
|
+
def RequestId(self):
|
3663
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3664
|
+
:rtype: str
|
3665
|
+
"""
|
3666
|
+
return self._RequestId
|
3667
|
+
|
3668
|
+
@RequestId.setter
|
3669
|
+
def RequestId(self, RequestId):
|
3670
|
+
self._RequestId = RequestId
|
3671
|
+
|
3672
|
+
|
3673
|
+
def _deserialize(self, params):
|
3674
|
+
self._RequestId = params.get("RequestId")
|
3675
|
+
|
3676
|
+
|
3639
3677
|
class AssociateIPv6AddressRequest(AbstractModel):
|
3640
3678
|
"""AssociateIPv6Address请求参数结构体
|
3641
3679
|
|
@@ -40395,6 +40433,75 @@ class DisassociateDirectConnectGatewayNatGatewayResponse(AbstractModel):
|
|
40395
40433
|
self._RequestId = params.get("RequestId")
|
40396
40434
|
|
40397
40435
|
|
40436
|
+
class DisassociateHaVipInstanceRequest(AbstractModel):
|
40437
|
+
"""DisassociateHaVipInstance请求参数结构体
|
40438
|
+
|
40439
|
+
"""
|
40440
|
+
|
40441
|
+
def __init__(self):
|
40442
|
+
r"""
|
40443
|
+
:param _HaVipAssociationSet: HaVip解绑的子机或网卡。最多支持10个实例。
|
40444
|
+
:type HaVipAssociationSet: list of HaVipAssociation
|
40445
|
+
"""
|
40446
|
+
self._HaVipAssociationSet = None
|
40447
|
+
|
40448
|
+
@property
|
40449
|
+
def HaVipAssociationSet(self):
|
40450
|
+
"""HaVip解绑的子机或网卡。最多支持10个实例。
|
40451
|
+
:rtype: list of HaVipAssociation
|
40452
|
+
"""
|
40453
|
+
return self._HaVipAssociationSet
|
40454
|
+
|
40455
|
+
@HaVipAssociationSet.setter
|
40456
|
+
def HaVipAssociationSet(self, HaVipAssociationSet):
|
40457
|
+
self._HaVipAssociationSet = HaVipAssociationSet
|
40458
|
+
|
40459
|
+
|
40460
|
+
def _deserialize(self, params):
|
40461
|
+
if params.get("HaVipAssociationSet") is not None:
|
40462
|
+
self._HaVipAssociationSet = []
|
40463
|
+
for item in params.get("HaVipAssociationSet"):
|
40464
|
+
obj = HaVipAssociation()
|
40465
|
+
obj._deserialize(item)
|
40466
|
+
self._HaVipAssociationSet.append(obj)
|
40467
|
+
memeber_set = set(params.keys())
|
40468
|
+
for name, value in vars(self).items():
|
40469
|
+
property_name = name[1:]
|
40470
|
+
if property_name in memeber_set:
|
40471
|
+
memeber_set.remove(property_name)
|
40472
|
+
if len(memeber_set) > 0:
|
40473
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
40474
|
+
|
40475
|
+
|
40476
|
+
|
40477
|
+
class DisassociateHaVipInstanceResponse(AbstractModel):
|
40478
|
+
"""DisassociateHaVipInstance返回参数结构体
|
40479
|
+
|
40480
|
+
"""
|
40481
|
+
|
40482
|
+
def __init__(self):
|
40483
|
+
r"""
|
40484
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
40485
|
+
:type RequestId: str
|
40486
|
+
"""
|
40487
|
+
self._RequestId = None
|
40488
|
+
|
40489
|
+
@property
|
40490
|
+
def RequestId(self):
|
40491
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
40492
|
+
:rtype: str
|
40493
|
+
"""
|
40494
|
+
return self._RequestId
|
40495
|
+
|
40496
|
+
@RequestId.setter
|
40497
|
+
def RequestId(self, RequestId):
|
40498
|
+
self._RequestId = RequestId
|
40499
|
+
|
40500
|
+
|
40501
|
+
def _deserialize(self, params):
|
40502
|
+
self._RequestId = params.get("RequestId")
|
40503
|
+
|
40504
|
+
|
40398
40505
|
class DisassociateIPv6AddressRequest(AbstractModel):
|
40399
40506
|
"""DisassociateIPv6Address请求参数结构体
|
40400
40507
|
|
@@ -47932,6 +48039,8 @@ class ModifyAddressesBandwidthRequest(AbstractModel):
|
|
47932
48039
|
|
47933
48040
|
@property
|
47934
48041
|
def StartTime(self):
|
48042
|
+
warnings.warn("parameter `StartTime` is deprecated", DeprecationWarning)
|
48043
|
+
|
47935
48044
|
"""包月带宽起始时间(已废弃,输入无效)
|
47936
48045
|
:rtype: str
|
47937
48046
|
"""
|
@@ -47939,10 +48048,14 @@ class ModifyAddressesBandwidthRequest(AbstractModel):
|
|
47939
48048
|
|
47940
48049
|
@StartTime.setter
|
47941
48050
|
def StartTime(self, StartTime):
|
48051
|
+
warnings.warn("parameter `StartTime` is deprecated", DeprecationWarning)
|
48052
|
+
|
47942
48053
|
self._StartTime = StartTime
|
47943
48054
|
|
47944
48055
|
@property
|
47945
48056
|
def EndTime(self):
|
48057
|
+
warnings.warn("parameter `EndTime` is deprecated", DeprecationWarning)
|
48058
|
+
|
47946
48059
|
"""包月带宽结束时间(已废弃,输入无效)
|
47947
48060
|
:rtype: str
|
47948
48061
|
"""
|
@@ -47950,6 +48063,8 @@ class ModifyAddressesBandwidthRequest(AbstractModel):
|
|
47950
48063
|
|
47951
48064
|
@EndTime.setter
|
47952
48065
|
def EndTime(self, EndTime):
|
48066
|
+
warnings.warn("parameter `EndTime` is deprecated", DeprecationWarning)
|
48067
|
+
|
47953
48068
|
self._EndTime = EndTime
|
47954
48069
|
|
47955
48070
|
|
@@ -429,6 +429,29 @@ class VpcClient(AbstractClient):
|
|
429
429
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
430
430
|
|
431
431
|
|
432
|
+
def AssociateHaVipInstance(self, request):
|
433
|
+
"""本接口(AssociateHaVipInstance)用于HAVIP绑定子机或网卡(限制HaVip的飘移范围)。
|
434
|
+
|
435
|
+
:param request: Request instance for AssociateHaVipInstance.
|
436
|
+
:type request: :class:`tencentcloud.vpc.v20170312.models.AssociateHaVipInstanceRequest`
|
437
|
+
:rtype: :class:`tencentcloud.vpc.v20170312.models.AssociateHaVipInstanceResponse`
|
438
|
+
|
439
|
+
"""
|
440
|
+
try:
|
441
|
+
params = request._serialize()
|
442
|
+
headers = request.headers
|
443
|
+
body = self.call("AssociateHaVipInstance", params, headers=headers)
|
444
|
+
response = json.loads(body)
|
445
|
+
model = models.AssociateHaVipInstanceResponse()
|
446
|
+
model._deserialize(response["Response"])
|
447
|
+
return model
|
448
|
+
except Exception as e:
|
449
|
+
if isinstance(e, TencentCloudSDKException):
|
450
|
+
raise
|
451
|
+
else:
|
452
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
453
|
+
|
454
|
+
|
432
455
|
def AssociateIPv6Address(self, request):
|
433
456
|
"""本接口(AssociateIPv6Address)用于将弹性公网IPv6(简称EIPv6)实例绑定到 CVM 或弹性网卡配置的内网 IPv6 地址上。
|
434
457
|
|
@@ -6409,6 +6432,29 @@ class VpcClient(AbstractClient):
|
|
6409
6432
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
6410
6433
|
|
6411
6434
|
|
6435
|
+
def DisassociateHaVipInstance(self, request):
|
6436
|
+
"""本接口(DisassociateHaVipInstance)用于HAVIP解绑子机或网卡(去掉HaVip飘移范围)。
|
6437
|
+
|
6438
|
+
:param request: Request instance for DisassociateHaVipInstance.
|
6439
|
+
:type request: :class:`tencentcloud.vpc.v20170312.models.DisassociateHaVipInstanceRequest`
|
6440
|
+
:rtype: :class:`tencentcloud.vpc.v20170312.models.DisassociateHaVipInstanceResponse`
|
6441
|
+
|
6442
|
+
"""
|
6443
|
+
try:
|
6444
|
+
params = request._serialize()
|
6445
|
+
headers = request.headers
|
6446
|
+
body = self.call("DisassociateHaVipInstance", params, headers=headers)
|
6447
|
+
response = json.loads(body)
|
6448
|
+
model = models.DisassociateHaVipInstanceResponse()
|
6449
|
+
model._deserialize(response["Response"])
|
6450
|
+
return model
|
6451
|
+
except Exception as e:
|
6452
|
+
if isinstance(e, TencentCloudSDKException):
|
6453
|
+
raise
|
6454
|
+
else:
|
6455
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
6456
|
+
|
6457
|
+
|
6412
6458
|
def DisassociateIPv6Address(self, request):
|
6413
6459
|
"""本接口(DisassociateIPv6Address)用于解绑弹性公网 IPv6(简称EIPv6)实例。
|
6414
6460
|
|
@@ -10217,7 +10217,7 @@ class CommonIdOpsDto(AbstractModel):
|
|
10217
10217
|
|
10218
10218
|
def __init__(self):
|
10219
10219
|
r"""
|
10220
|
-
:param _Id:
|
10220
|
+
:param _Id: 返回补录计划名称_ok
|
10221
10221
|
注意:此字段可能返回 null,表示取不到有效值。
|
10222
10222
|
:type Id: str
|
10223
10223
|
"""
|
@@ -10225,7 +10225,7 @@ class CommonIdOpsDto(AbstractModel):
|
|
10225
10225
|
|
10226
10226
|
@property
|
10227
10227
|
def Id(self):
|
10228
|
-
"""
|
10228
|
+
"""返回补录计划名称_ok
|
10229
10229
|
注意:此字段可能返回 null,表示取不到有效值。
|
10230
10230
|
:rtype: str
|
10231
10231
|
"""
|
@@ -13407,6 +13407,12 @@ class CreateOpsMakePlanRequest(AbstractModel):
|
|
13407
13407
|
:type SameSelfWorkflowDependType: bool
|
13408
13408
|
:param _SelfWorkflowDependency: 补录扩展属性
|
13409
13409
|
:type SelfWorkflowDependency: str
|
13410
|
+
:param _MakeType: 任务 TASK; 项目: PROJECT
|
13411
|
+
:type MakeType: str
|
13412
|
+
:param _StatusList: 任务状态
|
13413
|
+
:type StatusList: str
|
13414
|
+
:param _MakeCheckEventType: 补录是否跳过事件检查
|
13415
|
+
:type MakeCheckEventType: str
|
13410
13416
|
"""
|
13411
13417
|
self._ProjectId = None
|
13412
13418
|
self._MakeName = None
|
@@ -13434,6 +13440,9 @@ class CreateOpsMakePlanRequest(AbstractModel):
|
|
13434
13440
|
self._MakeExtList = None
|
13435
13441
|
self._SameSelfWorkflowDependType = None
|
13436
13442
|
self._SelfWorkflowDependency = None
|
13443
|
+
self._MakeType = None
|
13444
|
+
self._StatusList = None
|
13445
|
+
self._MakeCheckEventType = None
|
13437
13446
|
|
13438
13447
|
@property
|
13439
13448
|
def ProjectId(self):
|
@@ -13724,6 +13733,39 @@ class CreateOpsMakePlanRequest(AbstractModel):
|
|
13724
13733
|
def SelfWorkflowDependency(self, SelfWorkflowDependency):
|
13725
13734
|
self._SelfWorkflowDependency = SelfWorkflowDependency
|
13726
13735
|
|
13736
|
+
@property
|
13737
|
+
def MakeType(self):
|
13738
|
+
"""任务 TASK; 项目: PROJECT
|
13739
|
+
:rtype: str
|
13740
|
+
"""
|
13741
|
+
return self._MakeType
|
13742
|
+
|
13743
|
+
@MakeType.setter
|
13744
|
+
def MakeType(self, MakeType):
|
13745
|
+
self._MakeType = MakeType
|
13746
|
+
|
13747
|
+
@property
|
13748
|
+
def StatusList(self):
|
13749
|
+
"""任务状态
|
13750
|
+
:rtype: str
|
13751
|
+
"""
|
13752
|
+
return self._StatusList
|
13753
|
+
|
13754
|
+
@StatusList.setter
|
13755
|
+
def StatusList(self, StatusList):
|
13756
|
+
self._StatusList = StatusList
|
13757
|
+
|
13758
|
+
@property
|
13759
|
+
def MakeCheckEventType(self):
|
13760
|
+
"""补录是否跳过事件检查
|
13761
|
+
:rtype: str
|
13762
|
+
"""
|
13763
|
+
return self._MakeCheckEventType
|
13764
|
+
|
13765
|
+
@MakeCheckEventType.setter
|
13766
|
+
def MakeCheckEventType(self, MakeCheckEventType):
|
13767
|
+
self._MakeCheckEventType = MakeCheckEventType
|
13768
|
+
|
13727
13769
|
|
13728
13770
|
def _deserialize(self, params):
|
13729
13771
|
self._ProjectId = params.get("ProjectId")
|
@@ -13767,6 +13809,9 @@ class CreateOpsMakePlanRequest(AbstractModel):
|
|
13767
13809
|
self._MakeExtList.append(obj)
|
13768
13810
|
self._SameSelfWorkflowDependType = params.get("SameSelfWorkflowDependType")
|
13769
13811
|
self._SelfWorkflowDependency = params.get("SelfWorkflowDependency")
|
13812
|
+
self._MakeType = params.get("MakeType")
|
13813
|
+
self._StatusList = params.get("StatusList")
|
13814
|
+
self._MakeCheckEventType = params.get("MakeCheckEventType")
|
13770
13815
|
memeber_set = set(params.keys())
|
13771
13816
|
for name, value in vars(self).items():
|
13772
13817
|
property_name = name[1:]
|
@@ -44720,6 +44765,10 @@ class DownloadLogByLineRequest(AbstractModel):
|
|
44720
44765
|
:type ParseErrorTip: bool
|
44721
44766
|
:param _FileType: log 0 code 1 result 2 custo 3
|
44722
44767
|
:type FileType: int
|
44768
|
+
:param _QueryFileFlag: 查询文件标志:0: 从执行机获取,1: 从cos获取,获取不到会再从执行机获取
|
44769
|
+
:type QueryFileFlag: int
|
44770
|
+
:param _ExtInfo: 透传字段,如果queryFileFlag为1,则ext回作为上一页的分页标识offset
|
44771
|
+
:type ExtInfo: str
|
44723
44772
|
"""
|
44724
44773
|
self._StartLine = None
|
44725
44774
|
self._LineCount = None
|
@@ -44733,6 +44782,8 @@ class DownloadLogByLineRequest(AbstractModel):
|
|
44733
44782
|
self._JobType = None
|
44734
44783
|
self._ParseErrorTip = None
|
44735
44784
|
self._FileType = None
|
44785
|
+
self._QueryFileFlag = None
|
44786
|
+
self._ExtInfo = None
|
44736
44787
|
|
44737
44788
|
@property
|
44738
44789
|
def StartLine(self):
|
@@ -44866,6 +44917,28 @@ class DownloadLogByLineRequest(AbstractModel):
|
|
44866
44917
|
def FileType(self, FileType):
|
44867
44918
|
self._FileType = FileType
|
44868
44919
|
|
44920
|
+
@property
|
44921
|
+
def QueryFileFlag(self):
|
44922
|
+
"""查询文件标志:0: 从执行机获取,1: 从cos获取,获取不到会再从执行机获取
|
44923
|
+
:rtype: int
|
44924
|
+
"""
|
44925
|
+
return self._QueryFileFlag
|
44926
|
+
|
44927
|
+
@QueryFileFlag.setter
|
44928
|
+
def QueryFileFlag(self, QueryFileFlag):
|
44929
|
+
self._QueryFileFlag = QueryFileFlag
|
44930
|
+
|
44931
|
+
@property
|
44932
|
+
def ExtInfo(self):
|
44933
|
+
"""透传字段,如果queryFileFlag为1,则ext回作为上一页的分页标识offset
|
44934
|
+
:rtype: str
|
44935
|
+
"""
|
44936
|
+
return self._ExtInfo
|
44937
|
+
|
44938
|
+
@ExtInfo.setter
|
44939
|
+
def ExtInfo(self, ExtInfo):
|
44940
|
+
self._ExtInfo = ExtInfo
|
44941
|
+
|
44869
44942
|
|
44870
44943
|
def _deserialize(self, params):
|
44871
44944
|
self._StartLine = params.get("StartLine")
|
@@ -44880,6 +44953,8 @@ class DownloadLogByLineRequest(AbstractModel):
|
|
44880
44953
|
self._JobType = params.get("JobType")
|
44881
44954
|
self._ParseErrorTip = params.get("ParseErrorTip")
|
44882
44955
|
self._FileType = params.get("FileType")
|
44956
|
+
self._QueryFileFlag = params.get("QueryFileFlag")
|
44957
|
+
self._ExtInfo = params.get("ExtInfo")
|
44883
44958
|
memeber_set = set(params.keys())
|
44884
44959
|
for name, value in vars(self).items():
|
44885
44960
|
property_name = name[1:]
|
@@ -48353,6 +48428,78 @@ class ExtResourceFlagDto(AbstractModel):
|
|
48353
48428
|
|
48354
48429
|
|
48355
48430
|
|
48431
|
+
class ExtensionInfoVO(AbstractModel):
|
48432
|
+
"""key-value 键值对
|
48433
|
+
|
48434
|
+
"""
|
48435
|
+
|
48436
|
+
def __init__(self):
|
48437
|
+
r"""
|
48438
|
+
:param _Key: key
|
48439
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
48440
|
+
:type Key: str
|
48441
|
+
:param _Value: value
|
48442
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
48443
|
+
:type Value: str
|
48444
|
+
:param _Description: 描述
|
48445
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
48446
|
+
:type Description: str
|
48447
|
+
"""
|
48448
|
+
self._Key = None
|
48449
|
+
self._Value = None
|
48450
|
+
self._Description = None
|
48451
|
+
|
48452
|
+
@property
|
48453
|
+
def Key(self):
|
48454
|
+
"""key
|
48455
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
48456
|
+
:rtype: str
|
48457
|
+
"""
|
48458
|
+
return self._Key
|
48459
|
+
|
48460
|
+
@Key.setter
|
48461
|
+
def Key(self, Key):
|
48462
|
+
self._Key = Key
|
48463
|
+
|
48464
|
+
@property
|
48465
|
+
def Value(self):
|
48466
|
+
"""value
|
48467
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
48468
|
+
:rtype: str
|
48469
|
+
"""
|
48470
|
+
return self._Value
|
48471
|
+
|
48472
|
+
@Value.setter
|
48473
|
+
def Value(self, Value):
|
48474
|
+
self._Value = Value
|
48475
|
+
|
48476
|
+
@property
|
48477
|
+
def Description(self):
|
48478
|
+
"""描述
|
48479
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
48480
|
+
:rtype: str
|
48481
|
+
"""
|
48482
|
+
return self._Description
|
48483
|
+
|
48484
|
+
@Description.setter
|
48485
|
+
def Description(self, Description):
|
48486
|
+
self._Description = Description
|
48487
|
+
|
48488
|
+
|
48489
|
+
def _deserialize(self, params):
|
48490
|
+
self._Key = params.get("Key")
|
48491
|
+
self._Value = params.get("Value")
|
48492
|
+
self._Description = params.get("Description")
|
48493
|
+
memeber_set = set(params.keys())
|
48494
|
+
for name, value in vars(self).items():
|
48495
|
+
property_name = name[1:]
|
48496
|
+
if property_name in memeber_set:
|
48497
|
+
memeber_set.remove(property_name)
|
48498
|
+
if len(memeber_set) > 0:
|
48499
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
48500
|
+
|
48501
|
+
|
48502
|
+
|
48356
48503
|
class FailMessage(AbstractModel):
|
48357
48504
|
"""错误处理结果信息
|
48358
48505
|
|
@@ -53751,6 +53898,12 @@ class InstanceLogByLine(AbstractModel):
|
|
53751
53898
|
:param _JobLogErrorTip: 日志sql错误信息,包含行列信息
|
53752
53899
|
注意:此字段可能返回 null,表示取不到有效值。
|
53753
53900
|
:type JobLogErrorTip: :class:`tencentcloud.wedata.v20210820.models.JobLogErrorTip`
|
53901
|
+
:param _ExecutionExtendedProps: 执行实例的扩展属性
|
53902
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
53903
|
+
:type ExecutionExtendedProps: list of ExtensionInfoVO
|
53904
|
+
:param _ExtInfo: 如果queryFileFlag为1,则ext返回当前页数据的结束行信息,下一页把这个extInfo透传过来
|
53905
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
53906
|
+
:type ExtInfo: str
|
53754
53907
|
"""
|
53755
53908
|
self._Count = None
|
53756
53909
|
self._Content = None
|
@@ -53760,6 +53913,8 @@ class InstanceLogByLine(AbstractModel):
|
|
53760
53913
|
self._TaskId = None
|
53761
53914
|
self._WorkerType = None
|
53762
53915
|
self._JobLogErrorTip = None
|
53916
|
+
self._ExecutionExtendedProps = None
|
53917
|
+
self._ExtInfo = None
|
53763
53918
|
|
53764
53919
|
@property
|
53765
53920
|
def Count(self):
|
@@ -53857,6 +54012,30 @@ class InstanceLogByLine(AbstractModel):
|
|
53857
54012
|
def JobLogErrorTip(self, JobLogErrorTip):
|
53858
54013
|
self._JobLogErrorTip = JobLogErrorTip
|
53859
54014
|
|
54015
|
+
@property
|
54016
|
+
def ExecutionExtendedProps(self):
|
54017
|
+
"""执行实例的扩展属性
|
54018
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
54019
|
+
:rtype: list of ExtensionInfoVO
|
54020
|
+
"""
|
54021
|
+
return self._ExecutionExtendedProps
|
54022
|
+
|
54023
|
+
@ExecutionExtendedProps.setter
|
54024
|
+
def ExecutionExtendedProps(self, ExecutionExtendedProps):
|
54025
|
+
self._ExecutionExtendedProps = ExecutionExtendedProps
|
54026
|
+
|
54027
|
+
@property
|
54028
|
+
def ExtInfo(self):
|
54029
|
+
"""如果queryFileFlag为1,则ext返回当前页数据的结束行信息,下一页把这个extInfo透传过来
|
54030
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
54031
|
+
:rtype: str
|
54032
|
+
"""
|
54033
|
+
return self._ExtInfo
|
54034
|
+
|
54035
|
+
@ExtInfo.setter
|
54036
|
+
def ExtInfo(self, ExtInfo):
|
54037
|
+
self._ExtInfo = ExtInfo
|
54038
|
+
|
53860
54039
|
|
53861
54040
|
def _deserialize(self, params):
|
53862
54041
|
self._Count = params.get("Count")
|
@@ -53869,6 +54048,13 @@ class InstanceLogByLine(AbstractModel):
|
|
53869
54048
|
if params.get("JobLogErrorTip") is not None:
|
53870
54049
|
self._JobLogErrorTip = JobLogErrorTip()
|
53871
54050
|
self._JobLogErrorTip._deserialize(params.get("JobLogErrorTip"))
|
54051
|
+
if params.get("ExecutionExtendedProps") is not None:
|
54052
|
+
self._ExecutionExtendedProps = []
|
54053
|
+
for item in params.get("ExecutionExtendedProps"):
|
54054
|
+
obj = ExtensionInfoVO()
|
54055
|
+
obj._deserialize(item)
|
54056
|
+
self._ExecutionExtendedProps.append(obj)
|
54057
|
+
self._ExtInfo = params.get("ExtInfo")
|
53872
54058
|
memeber_set = set(params.keys())
|
53873
54059
|
for name, value in vars(self).items():
|
53874
54060
|
property_name = name[1:]
|