tencentcloud-sdk-python 3.0.1208__py2.py3-none-any.whl → 3.0.1209__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/aiart/v20221229/models.py +13 -0
- tencentcloud/cls/v20201016/models.py +31 -11
- tencentcloud/cwp/v20180228/cwp_client.py +26 -1
- tencentcloud/cwp/v20180228/models.py +190 -0
- tencentcloud/emr/v20190103/emr_client.py +69 -0
- tencentcloud/emr/v20190103/models.py +1362 -63
- tencentcloud/ioa/v20220601/models.py +6 -5
- tencentcloud/smh/v20210712/errorcodes.py +69 -0
- tencentcloud/smh/v20210712/models.py +1173 -36
- tencentcloud/smh/v20210712/smh_client.py +115 -0
- tencentcloud/trtc/v20190722/models.py +6 -28
- tencentcloud/trtc/v20190722/trtc_client.py +0 -3
- tencentcloud/vod/v20180717/models.py +13 -0
- {tencentcloud_sdk_python-3.0.1208.dist-info → tencentcloud_sdk_python-3.0.1209.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1208.dist-info → tencentcloud_sdk_python-3.0.1209.dist-info}/RECORD +19 -19
- {tencentcloud_sdk_python-3.0.1208.dist-info → tencentcloud_sdk_python-3.0.1209.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1208.dist-info → tencentcloud_sdk_python-3.0.1209.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1208.dist-info → tencentcloud_sdk_python-3.0.1209.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -1138,6 +1138,9 @@ class ReplaceBackgroundRequest(AbstractModel):
|
|
1138
1138
|
:param _Prompt: 对新背景的文本描述。
|
1139
1139
|
最多支持256个 utf-8 字符,支持中、英文。
|
1140
1140
|
:type Prompt: str
|
1141
|
+
:param _Product: 商品图中的商品主体名称。
|
1142
|
+
建议说明商品主体,否则影响生成效果。
|
1143
|
+
:type Product: str
|
1141
1144
|
:param _MaskUrl: 商品 Mask 图 Url,要求背景透明,保留商品主体。
|
1142
1145
|
如果不传,将自动使用内置的商品分割算法得到 Mask。
|
1143
1146
|
支持自定义上传 Mask,如果该参数不为空,则以实际上传的数据为准。
|
@@ -1162,6 +1165,7 @@ class ReplaceBackgroundRequest(AbstractModel):
|
|
1162
1165
|
"""
|
1163
1166
|
self._ProductUrl = None
|
1164
1167
|
self._Prompt = None
|
1168
|
+
self._Product = None
|
1165
1169
|
self._MaskUrl = None
|
1166
1170
|
self._Resolution = None
|
1167
1171
|
self._LogoAdd = None
|
@@ -1184,6 +1188,14 @@ class ReplaceBackgroundRequest(AbstractModel):
|
|
1184
1188
|
def Prompt(self, Prompt):
|
1185
1189
|
self._Prompt = Prompt
|
1186
1190
|
|
1191
|
+
@property
|
1192
|
+
def Product(self):
|
1193
|
+
return self._Product
|
1194
|
+
|
1195
|
+
@Product.setter
|
1196
|
+
def Product(self, Product):
|
1197
|
+
self._Product = Product
|
1198
|
+
|
1187
1199
|
@property
|
1188
1200
|
def MaskUrl(self):
|
1189
1201
|
return self._MaskUrl
|
@@ -1228,6 +1240,7 @@ class ReplaceBackgroundRequest(AbstractModel):
|
|
1228
1240
|
def _deserialize(self, params):
|
1229
1241
|
self._ProductUrl = params.get("ProductUrl")
|
1230
1242
|
self._Prompt = params.get("Prompt")
|
1243
|
+
self._Product = params.get("Product")
|
1231
1244
|
self._MaskUrl = params.get("MaskUrl")
|
1232
1245
|
self._Resolution = params.get("Resolution")
|
1233
1246
|
self._LogoAdd = params.get("LogoAdd")
|
@@ -20693,16 +20693,26 @@ class SearchLogRequest(AbstractModel):
|
|
20693
20693
|
- 检索单个日志主题时请使用TopicId。
|
20694
20694
|
- TopicId 和 Topics 不能同时使用,在一次请求中有且只能选择一个。
|
20695
20695
|
:type Topics: list of MultiTopicSearchInformation
|
20696
|
-
:param
|
20696
|
+
:param _Sort: 原始日志是否按时间排序返回;可选值:asc(升序)、desc(降序),默认为 desc
|
20697
|
+
注意:
|
20698
|
+
* 仅当检索分析语句(Query)不包含SQL时有效
|
20699
|
+
* SQL结果排序方式参考<a href="https://cloud.tencent.com/document/product/614/58978" target="_blank">SQL ORDER BY语法</a>
|
20700
|
+
:type Sort: str
|
20701
|
+
:param _Limit: 表示单次查询返回的原始日志条数,默认为100,最大值为1000。
|
20697
20702
|
注意:
|
20698
20703
|
* 仅当检索分析语句(Query)不包含SQL时有效
|
20699
20704
|
* SQL结果条数指定方式参考<a href="https://cloud.tencent.com/document/product/614/58977" target="_blank">SQL LIMIT语法</a>
|
20705
|
+
|
20706
|
+
可通过两种方式获取后续更多日志:
|
20707
|
+
* Context:透传上次接口返回的Context值,获取后续更多日志,总计最多可获取1万条原始日志
|
20708
|
+
* Offset:偏移量,表示从第几行开始返回原始日志,无日志条数限制
|
20700
20709
|
:type Limit: int
|
20701
|
-
:param
|
20710
|
+
:param _Offset: 查询原始日志的偏移量,表示从第几行开始返回原始日志,默认为0。
|
20702
20711
|
注意:
|
20703
20712
|
* 仅当检索分析语句(Query)不包含SQL时有效
|
20704
|
-
*
|
20705
|
-
|
20713
|
+
* 不能与Context参数同时使用
|
20714
|
+
* 仅适用于单日志主题检索
|
20715
|
+
:type Offset: int
|
20706
20716
|
:param _Context: 透传上次接口返回的Context值,可获取后续更多日志,总计最多可获取1万条原始日志,过期时间1小时。
|
20707
20717
|
注意:
|
20708
20718
|
* 透传该参数时,请勿修改除该参数外的其它参数
|
@@ -20726,8 +20736,9 @@ class SearchLogRequest(AbstractModel):
|
|
20726
20736
|
self._SyntaxRule = None
|
20727
20737
|
self._TopicId = None
|
20728
20738
|
self._Topics = None
|
20729
|
-
self._Limit = None
|
20730
20739
|
self._Sort = None
|
20740
|
+
self._Limit = None
|
20741
|
+
self._Offset = None
|
20731
20742
|
self._Context = None
|
20732
20743
|
self._SamplingRate = None
|
20733
20744
|
self._UseNewAnalysis = None
|
@@ -20780,6 +20791,14 @@ class SearchLogRequest(AbstractModel):
|
|
20780
20791
|
def Topics(self, Topics):
|
20781
20792
|
self._Topics = Topics
|
20782
20793
|
|
20794
|
+
@property
|
20795
|
+
def Sort(self):
|
20796
|
+
return self._Sort
|
20797
|
+
|
20798
|
+
@Sort.setter
|
20799
|
+
def Sort(self, Sort):
|
20800
|
+
self._Sort = Sort
|
20801
|
+
|
20783
20802
|
@property
|
20784
20803
|
def Limit(self):
|
20785
20804
|
return self._Limit
|
@@ -20789,12 +20808,12 @@ class SearchLogRequest(AbstractModel):
|
|
20789
20808
|
self._Limit = Limit
|
20790
20809
|
|
20791
20810
|
@property
|
20792
|
-
def
|
20793
|
-
return self.
|
20811
|
+
def Offset(self):
|
20812
|
+
return self._Offset
|
20794
20813
|
|
20795
|
-
@
|
20796
|
-
def
|
20797
|
-
self.
|
20814
|
+
@Offset.setter
|
20815
|
+
def Offset(self, Offset):
|
20816
|
+
self._Offset = Offset
|
20798
20817
|
|
20799
20818
|
@property
|
20800
20819
|
def Context(self):
|
@@ -20833,8 +20852,9 @@ class SearchLogRequest(AbstractModel):
|
|
20833
20852
|
obj = MultiTopicSearchInformation()
|
20834
20853
|
obj._deserialize(item)
|
20835
20854
|
self._Topics.append(obj)
|
20836
|
-
self._Limit = params.get("Limit")
|
20837
20855
|
self._Sort = params.get("Sort")
|
20856
|
+
self._Limit = params.get("Limit")
|
20857
|
+
self._Offset = params.get("Offset")
|
20838
20858
|
self._Context = params.get("Context")
|
20839
20859
|
self._SamplingRate = params.get("SamplingRate")
|
20840
20860
|
self._UseNewAnalysis = params.get("UseNewAnalysis")
|
@@ -326,7 +326,9 @@ class CwpClient(AbstractClient):
|
|
326
326
|
|
327
327
|
|
328
328
|
def CreateCloudProtectServiceOrderRecord(self, request):
|
329
|
-
"""
|
329
|
+
"""云护航计费产品已下线
|
330
|
+
|
331
|
+
云护航服务使用完成后,该接口可以确认收货
|
330
332
|
|
331
333
|
:param request: Request instance for CreateCloudProtectServiceOrderRecord.
|
332
334
|
:type request: :class:`tencentcloud.cwp.v20180228.models.CreateCloudProtectServiceOrderRecordRequest`
|
@@ -10816,6 +10818,29 @@ class CwpClient(AbstractClient):
|
|
10816
10818
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
10817
10819
|
|
10818
10820
|
|
10821
|
+
def ModifyReverseShellRulesAggregation(self, request):
|
10822
|
+
"""编辑反弹Shell规则(支持多服务器选择)
|
10823
|
+
|
10824
|
+
:param request: Request instance for ModifyReverseShellRulesAggregation.
|
10825
|
+
:type request: :class:`tencentcloud.cwp.v20180228.models.ModifyReverseShellRulesAggregationRequest`
|
10826
|
+
:rtype: :class:`tencentcloud.cwp.v20180228.models.ModifyReverseShellRulesAggregationResponse`
|
10827
|
+
|
10828
|
+
"""
|
10829
|
+
try:
|
10830
|
+
params = request._serialize()
|
10831
|
+
headers = request.headers
|
10832
|
+
body = self.call("ModifyReverseShellRulesAggregation", params, headers=headers)
|
10833
|
+
response = json.loads(body)
|
10834
|
+
model = models.ModifyReverseShellRulesAggregationResponse()
|
10835
|
+
model._deserialize(response["Response"])
|
10836
|
+
return model
|
10837
|
+
except Exception as e:
|
10838
|
+
if isinstance(e, TencentCloudSDKException):
|
10839
|
+
raise
|
10840
|
+
else:
|
10841
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
10842
|
+
|
10843
|
+
|
10819
10844
|
def ModifyRiskDnsPolicy(self, request):
|
10820
10845
|
"""更改恶意请求策略
|
10821
10846
|
|
@@ -72174,6 +72174,196 @@ class ModifyRansomDefenseStrategyStatusResponse(AbstractModel):
|
|
72174
72174
|
self._RequestId = params.get("RequestId")
|
72175
72175
|
|
72176
72176
|
|
72177
|
+
class ModifyReverseShellRulesAggregationRequest(AbstractModel):
|
72178
|
+
"""ModifyReverseShellRulesAggregation请求参数结构体
|
72179
|
+
|
72180
|
+
"""
|
72181
|
+
|
72182
|
+
def __init__(self):
|
72183
|
+
r"""
|
72184
|
+
:param _Id: 规则ID(新增时请留空)
|
72185
|
+
:type Id: int
|
72186
|
+
:param _Uuids: 客户端ID数组
|
72187
|
+
:type Uuids: list of str
|
72188
|
+
:param _HostIp: 主机IP
|
72189
|
+
:type HostIp: str
|
72190
|
+
:param _DestIp: 目标IP
|
72191
|
+
:type DestIp: str
|
72192
|
+
:param _DestPort: 目标端口
|
72193
|
+
:type DestPort: str
|
72194
|
+
:param _ProcessName: 进程名
|
72195
|
+
:type ProcessName: str
|
72196
|
+
:param _IsGlobal: 是否全局规则(默认否)
|
72197
|
+
:type IsGlobal: int
|
72198
|
+
:param _EventId: 事件列表和详情点击加白时关联的事件id (新增规则时请留空)
|
72199
|
+
:type EventId: int
|
72200
|
+
:param _WhiteType: 加白方式, 0:常规加白 1:正则加白
|
72201
|
+
:type WhiteType: int
|
72202
|
+
:param _RuleRegexp: 正则表达式
|
72203
|
+
:type RuleRegexp: str
|
72204
|
+
:param _HandleHistory: 处理历史事件, 0:不处理 1:处理
|
72205
|
+
:type HandleHistory: int
|
72206
|
+
:param _GroupID: 批次id
|
72207
|
+
:type GroupID: str
|
72208
|
+
"""
|
72209
|
+
self._Id = None
|
72210
|
+
self._Uuids = None
|
72211
|
+
self._HostIp = None
|
72212
|
+
self._DestIp = None
|
72213
|
+
self._DestPort = None
|
72214
|
+
self._ProcessName = None
|
72215
|
+
self._IsGlobal = None
|
72216
|
+
self._EventId = None
|
72217
|
+
self._WhiteType = None
|
72218
|
+
self._RuleRegexp = None
|
72219
|
+
self._HandleHistory = None
|
72220
|
+
self._GroupID = None
|
72221
|
+
|
72222
|
+
@property
|
72223
|
+
def Id(self):
|
72224
|
+
return self._Id
|
72225
|
+
|
72226
|
+
@Id.setter
|
72227
|
+
def Id(self, Id):
|
72228
|
+
self._Id = Id
|
72229
|
+
|
72230
|
+
@property
|
72231
|
+
def Uuids(self):
|
72232
|
+
return self._Uuids
|
72233
|
+
|
72234
|
+
@Uuids.setter
|
72235
|
+
def Uuids(self, Uuids):
|
72236
|
+
self._Uuids = Uuids
|
72237
|
+
|
72238
|
+
@property
|
72239
|
+
def HostIp(self):
|
72240
|
+
return self._HostIp
|
72241
|
+
|
72242
|
+
@HostIp.setter
|
72243
|
+
def HostIp(self, HostIp):
|
72244
|
+
self._HostIp = HostIp
|
72245
|
+
|
72246
|
+
@property
|
72247
|
+
def DestIp(self):
|
72248
|
+
return self._DestIp
|
72249
|
+
|
72250
|
+
@DestIp.setter
|
72251
|
+
def DestIp(self, DestIp):
|
72252
|
+
self._DestIp = DestIp
|
72253
|
+
|
72254
|
+
@property
|
72255
|
+
def DestPort(self):
|
72256
|
+
return self._DestPort
|
72257
|
+
|
72258
|
+
@DestPort.setter
|
72259
|
+
def DestPort(self, DestPort):
|
72260
|
+
self._DestPort = DestPort
|
72261
|
+
|
72262
|
+
@property
|
72263
|
+
def ProcessName(self):
|
72264
|
+
return self._ProcessName
|
72265
|
+
|
72266
|
+
@ProcessName.setter
|
72267
|
+
def ProcessName(self, ProcessName):
|
72268
|
+
self._ProcessName = ProcessName
|
72269
|
+
|
72270
|
+
@property
|
72271
|
+
def IsGlobal(self):
|
72272
|
+
return self._IsGlobal
|
72273
|
+
|
72274
|
+
@IsGlobal.setter
|
72275
|
+
def IsGlobal(self, IsGlobal):
|
72276
|
+
self._IsGlobal = IsGlobal
|
72277
|
+
|
72278
|
+
@property
|
72279
|
+
def EventId(self):
|
72280
|
+
return self._EventId
|
72281
|
+
|
72282
|
+
@EventId.setter
|
72283
|
+
def EventId(self, EventId):
|
72284
|
+
self._EventId = EventId
|
72285
|
+
|
72286
|
+
@property
|
72287
|
+
def WhiteType(self):
|
72288
|
+
return self._WhiteType
|
72289
|
+
|
72290
|
+
@WhiteType.setter
|
72291
|
+
def WhiteType(self, WhiteType):
|
72292
|
+
self._WhiteType = WhiteType
|
72293
|
+
|
72294
|
+
@property
|
72295
|
+
def RuleRegexp(self):
|
72296
|
+
return self._RuleRegexp
|
72297
|
+
|
72298
|
+
@RuleRegexp.setter
|
72299
|
+
def RuleRegexp(self, RuleRegexp):
|
72300
|
+
self._RuleRegexp = RuleRegexp
|
72301
|
+
|
72302
|
+
@property
|
72303
|
+
def HandleHistory(self):
|
72304
|
+
return self._HandleHistory
|
72305
|
+
|
72306
|
+
@HandleHistory.setter
|
72307
|
+
def HandleHistory(self, HandleHistory):
|
72308
|
+
self._HandleHistory = HandleHistory
|
72309
|
+
|
72310
|
+
@property
|
72311
|
+
def GroupID(self):
|
72312
|
+
return self._GroupID
|
72313
|
+
|
72314
|
+
@GroupID.setter
|
72315
|
+
def GroupID(self, GroupID):
|
72316
|
+
self._GroupID = GroupID
|
72317
|
+
|
72318
|
+
|
72319
|
+
def _deserialize(self, params):
|
72320
|
+
self._Id = params.get("Id")
|
72321
|
+
self._Uuids = params.get("Uuids")
|
72322
|
+
self._HostIp = params.get("HostIp")
|
72323
|
+
self._DestIp = params.get("DestIp")
|
72324
|
+
self._DestPort = params.get("DestPort")
|
72325
|
+
self._ProcessName = params.get("ProcessName")
|
72326
|
+
self._IsGlobal = params.get("IsGlobal")
|
72327
|
+
self._EventId = params.get("EventId")
|
72328
|
+
self._WhiteType = params.get("WhiteType")
|
72329
|
+
self._RuleRegexp = params.get("RuleRegexp")
|
72330
|
+
self._HandleHistory = params.get("HandleHistory")
|
72331
|
+
self._GroupID = params.get("GroupID")
|
72332
|
+
memeber_set = set(params.keys())
|
72333
|
+
for name, value in vars(self).items():
|
72334
|
+
property_name = name[1:]
|
72335
|
+
if property_name in memeber_set:
|
72336
|
+
memeber_set.remove(property_name)
|
72337
|
+
if len(memeber_set) > 0:
|
72338
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
72339
|
+
|
72340
|
+
|
72341
|
+
|
72342
|
+
class ModifyReverseShellRulesAggregationResponse(AbstractModel):
|
72343
|
+
"""ModifyReverseShellRulesAggregation返回参数结构体
|
72344
|
+
|
72345
|
+
"""
|
72346
|
+
|
72347
|
+
def __init__(self):
|
72348
|
+
r"""
|
72349
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
72350
|
+
:type RequestId: str
|
72351
|
+
"""
|
72352
|
+
self._RequestId = None
|
72353
|
+
|
72354
|
+
@property
|
72355
|
+
def RequestId(self):
|
72356
|
+
return self._RequestId
|
72357
|
+
|
72358
|
+
@RequestId.setter
|
72359
|
+
def RequestId(self, RequestId):
|
72360
|
+
self._RequestId = RequestId
|
72361
|
+
|
72362
|
+
|
72363
|
+
def _deserialize(self, params):
|
72364
|
+
self._RequestId = params.get("RequestId")
|
72365
|
+
|
72366
|
+
|
72177
72367
|
class ModifyRiskDnsPolicyRequest(AbstractModel):
|
72178
72368
|
"""ModifyRiskDnsPolicy请求参数结构体
|
72179
72369
|
|
@@ -556,6 +556,29 @@ class EmrClient(AbstractClient):
|
|
556
556
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
557
557
|
|
558
558
|
|
559
|
+
def DescribeServiceNodeInfos(self, request):
|
560
|
+
"""查询服务进程信息
|
561
|
+
|
562
|
+
:param request: Request instance for DescribeServiceNodeInfos.
|
563
|
+
:type request: :class:`tencentcloud.emr.v20190103.models.DescribeServiceNodeInfosRequest`
|
564
|
+
:rtype: :class:`tencentcloud.emr.v20190103.models.DescribeServiceNodeInfosResponse`
|
565
|
+
|
566
|
+
"""
|
567
|
+
try:
|
568
|
+
params = request._serialize()
|
569
|
+
headers = request.headers
|
570
|
+
body = self.call("DescribeServiceNodeInfos", params, headers=headers)
|
571
|
+
response = json.loads(body)
|
572
|
+
model = models.DescribeServiceNodeInfosResponse()
|
573
|
+
model._deserialize(response["Response"])
|
574
|
+
return model
|
575
|
+
except Exception as e:
|
576
|
+
if isinstance(e, TencentCloudSDKException):
|
577
|
+
raise
|
578
|
+
else:
|
579
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
580
|
+
|
581
|
+
|
559
582
|
def DescribeTrinoQueryInfo(self, request):
|
560
583
|
"""获取trino查询结果
|
561
584
|
|
@@ -626,6 +649,29 @@ class EmrClient(AbstractClient):
|
|
626
649
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
627
650
|
|
628
651
|
|
652
|
+
def DescribeYarnScheduleHistory(self, request):
|
653
|
+
"""查看yarn资源调度的调度历史
|
654
|
+
|
655
|
+
:param request: Request instance for DescribeYarnScheduleHistory.
|
656
|
+
:type request: :class:`tencentcloud.emr.v20190103.models.DescribeYarnScheduleHistoryRequest`
|
657
|
+
:rtype: :class:`tencentcloud.emr.v20190103.models.DescribeYarnScheduleHistoryResponse`
|
658
|
+
|
659
|
+
"""
|
660
|
+
try:
|
661
|
+
params = request._serialize()
|
662
|
+
headers = request.headers
|
663
|
+
body = self.call("DescribeYarnScheduleHistory", params, headers=headers)
|
664
|
+
response = json.loads(body)
|
665
|
+
model = models.DescribeYarnScheduleHistoryResponse()
|
666
|
+
model._deserialize(response["Response"])
|
667
|
+
return model
|
668
|
+
except Exception as e:
|
669
|
+
if isinstance(e, TencentCloudSDKException):
|
670
|
+
raise
|
671
|
+
else:
|
672
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
673
|
+
|
674
|
+
|
629
675
|
def InquirePriceRenewEmr(self, request):
|
630
676
|
"""集群续费询价。
|
631
677
|
|
@@ -879,6 +925,29 @@ class EmrClient(AbstractClient):
|
|
879
925
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
880
926
|
|
881
927
|
|
928
|
+
def ModifyYarnDeploy(self, request):
|
929
|
+
"""部署生效
|
930
|
+
|
931
|
+
:param request: Request instance for ModifyYarnDeploy.
|
932
|
+
:type request: :class:`tencentcloud.emr.v20190103.models.ModifyYarnDeployRequest`
|
933
|
+
:rtype: :class:`tencentcloud.emr.v20190103.models.ModifyYarnDeployResponse`
|
934
|
+
|
935
|
+
"""
|
936
|
+
try:
|
937
|
+
params = request._serialize()
|
938
|
+
headers = request.headers
|
939
|
+
body = self.call("ModifyYarnDeploy", params, headers=headers)
|
940
|
+
response = json.loads(body)
|
941
|
+
model = models.ModifyYarnDeployResponse()
|
942
|
+
model._deserialize(response["Response"])
|
943
|
+
return model
|
944
|
+
except Exception as e:
|
945
|
+
if isinstance(e, TencentCloudSDKException):
|
946
|
+
raise
|
947
|
+
else:
|
948
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
949
|
+
|
950
|
+
|
882
951
|
def RunJobFlow(self, request):
|
883
952
|
"""创建流程作业
|
884
953
|
|