tencentcloud-sdk-python-intl-en 3.0.1156__py2.py3-none-any.whl → 3.0.1158__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-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/billing/v20180709/models.py +51 -4
- tencentcloud/pts/__init__.py +0 -0
- tencentcloud/pts/v20210728/__init__.py +0 -0
- tencentcloud/pts/v20210728/errorcodes.py +72 -0
- tencentcloud/pts/v20210728/models.py +14199 -0
- tencentcloud/pts/v20210728/pts_client.py +1130 -0
- tencentcloud/wedata/v20210820/models.py +1375 -4
- tencentcloud/wedata/v20210820/wedata_client.py +46 -0
- {tencentcloud_sdk_python_intl_en-3.0.1156.dist-info → tencentcloud_sdk_python_intl_en-3.0.1158.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1156.dist-info → tencentcloud_sdk_python_intl_en-3.0.1158.dist-info}/RECORD +13 -8
- {tencentcloud_sdk_python_intl_en-3.0.1156.dist-info → tencentcloud_sdk_python_intl_en-3.0.1158.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1156.dist-info → tencentcloud_sdk_python_intl_en-3.0.1158.dist-info}/top_level.txt +0 -0
|
@@ -17761,7 +17761,11 @@ class DescribeColumnLineageRequest(AbstractModel):
|
|
|
17761
17761
|
|
|
17762
17762
|
def __init__(self):
|
|
17763
17763
|
r"""
|
|
17764
|
-
:param _Direction:
|
|
17764
|
+
:param _Direction: Enumeration value of query direction.
|
|
17765
|
+
|
|
17766
|
+
- INPUT
|
|
17767
|
+
- OUTPUT
|
|
17768
|
+
- BOTH
|
|
17765
17769
|
:type Direction: str
|
|
17766
17770
|
:param _Data: Field Information
|
|
17767
17771
|
:type Data: :class:`tencentcloud.wedata.v20210820.models.ColumnLineageInfo`
|
|
@@ -17783,7 +17787,11 @@ class DescribeColumnLineageRequest(AbstractModel):
|
|
|
17783
17787
|
|
|
17784
17788
|
@property
|
|
17785
17789
|
def Direction(self):
|
|
17786
|
-
"""
|
|
17790
|
+
"""Enumeration value of query direction.
|
|
17791
|
+
|
|
17792
|
+
- INPUT
|
|
17793
|
+
- OUTPUT
|
|
17794
|
+
- BOTH
|
|
17787
17795
|
:rtype: str
|
|
17788
17796
|
"""
|
|
17789
17797
|
return self._Direction
|
|
@@ -26165,6 +26173,350 @@ class DescribeRealTimeTaskSpeedResponse(AbstractModel):
|
|
|
26165
26173
|
self._RequestId = params.get("RequestId")
|
|
26166
26174
|
|
|
26167
26175
|
|
|
26176
|
+
class DescribeReportTaskDetailRequest(AbstractModel):
|
|
26177
|
+
"""DescribeReportTaskDetail request structure.
|
|
26178
|
+
|
|
26179
|
+
"""
|
|
26180
|
+
|
|
26181
|
+
def __init__(self):
|
|
26182
|
+
r"""
|
|
26183
|
+
:param _TenantId: Tenant id.
|
|
26184
|
+
:type TenantId: str
|
|
26185
|
+
:param _EngineTaskId: Engine task id.
|
|
26186
|
+
:type EngineTaskId: str
|
|
26187
|
+
"""
|
|
26188
|
+
self._TenantId = None
|
|
26189
|
+
self._EngineTaskId = None
|
|
26190
|
+
|
|
26191
|
+
@property
|
|
26192
|
+
def TenantId(self):
|
|
26193
|
+
"""Tenant id.
|
|
26194
|
+
:rtype: str
|
|
26195
|
+
"""
|
|
26196
|
+
return self._TenantId
|
|
26197
|
+
|
|
26198
|
+
@TenantId.setter
|
|
26199
|
+
def TenantId(self, TenantId):
|
|
26200
|
+
self._TenantId = TenantId
|
|
26201
|
+
|
|
26202
|
+
@property
|
|
26203
|
+
def EngineTaskId(self):
|
|
26204
|
+
"""Engine task id.
|
|
26205
|
+
:rtype: str
|
|
26206
|
+
"""
|
|
26207
|
+
return self._EngineTaskId
|
|
26208
|
+
|
|
26209
|
+
@EngineTaskId.setter
|
|
26210
|
+
def EngineTaskId(self, EngineTaskId):
|
|
26211
|
+
self._EngineTaskId = EngineTaskId
|
|
26212
|
+
|
|
26213
|
+
|
|
26214
|
+
def _deserialize(self, params):
|
|
26215
|
+
self._TenantId = params.get("TenantId")
|
|
26216
|
+
self._EngineTaskId = params.get("EngineTaskId")
|
|
26217
|
+
memeber_set = set(params.keys())
|
|
26218
|
+
for name, value in vars(self).items():
|
|
26219
|
+
property_name = name[1:]
|
|
26220
|
+
if property_name in memeber_set:
|
|
26221
|
+
memeber_set.remove(property_name)
|
|
26222
|
+
if len(memeber_set) > 0:
|
|
26223
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
26224
|
+
|
|
26225
|
+
|
|
26226
|
+
|
|
26227
|
+
class DescribeReportTaskDetailResponse(AbstractModel):
|
|
26228
|
+
"""DescribeReportTaskDetail response structure.
|
|
26229
|
+
|
|
26230
|
+
"""
|
|
26231
|
+
|
|
26232
|
+
def __init__(self):
|
|
26233
|
+
r"""
|
|
26234
|
+
:param _Data: 1
|
|
26235
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
26236
|
+
:type Data: :class:`tencentcloud.wedata.v20210820.models.ReportTaskDetail`
|
|
26237
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
26238
|
+
:type RequestId: str
|
|
26239
|
+
"""
|
|
26240
|
+
self._Data = None
|
|
26241
|
+
self._RequestId = None
|
|
26242
|
+
|
|
26243
|
+
@property
|
|
26244
|
+
def Data(self):
|
|
26245
|
+
"""1
|
|
26246
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
26247
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.ReportTaskDetail`
|
|
26248
|
+
"""
|
|
26249
|
+
return self._Data
|
|
26250
|
+
|
|
26251
|
+
@Data.setter
|
|
26252
|
+
def Data(self, Data):
|
|
26253
|
+
self._Data = Data
|
|
26254
|
+
|
|
26255
|
+
@property
|
|
26256
|
+
def RequestId(self):
|
|
26257
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
26258
|
+
:rtype: str
|
|
26259
|
+
"""
|
|
26260
|
+
return self._RequestId
|
|
26261
|
+
|
|
26262
|
+
@RequestId.setter
|
|
26263
|
+
def RequestId(self, RequestId):
|
|
26264
|
+
self._RequestId = RequestId
|
|
26265
|
+
|
|
26266
|
+
|
|
26267
|
+
def _deserialize(self, params):
|
|
26268
|
+
if params.get("Data") is not None:
|
|
26269
|
+
self._Data = ReportTaskDetail()
|
|
26270
|
+
self._Data._deserialize(params.get("Data"))
|
|
26271
|
+
self._RequestId = params.get("RequestId")
|
|
26272
|
+
|
|
26273
|
+
|
|
26274
|
+
class DescribeReportTaskListRequest(AbstractModel):
|
|
26275
|
+
"""DescribeReportTaskList request structure.
|
|
26276
|
+
|
|
26277
|
+
"""
|
|
26278
|
+
|
|
26279
|
+
def __init__(self):
|
|
26280
|
+
r"""
|
|
26281
|
+
:param _PageNum: Page number
|
|
26282
|
+
:type PageNum: int
|
|
26283
|
+
:param _PageSize: Entries per page.
|
|
26284
|
+
:type PageSize: int
|
|
26285
|
+
:param _TenantId: Tenant id.
|
|
26286
|
+
:type TenantId: str
|
|
26287
|
+
:param _ProjectId: Project ID.
|
|
26288
|
+
:type ProjectId: str
|
|
26289
|
+
:param _TaskId: Task ID
|
|
26290
|
+
:type TaskId: str
|
|
26291
|
+
:param _InstanceId: Instance ID
|
|
26292
|
+
:type InstanceId: str
|
|
26293
|
+
:param _JobId: Job id.
|
|
26294
|
+
:type JobId: str
|
|
26295
|
+
:param _EngineTaskId: Engine task id.
|
|
26296
|
+
:type EngineTaskId: str
|
|
26297
|
+
:param _ProductSource: DATA source, such as DATA_INTEGRATION, DATA_EXPLORATION, DATA_QUALITY, OM_CENTER.
|
|
26298
|
+
:type ProductSource: str
|
|
26299
|
+
:param _OnwerUid: Root account.
|
|
26300
|
+
:type OnwerUid: str
|
|
26301
|
+
:param _StartTime: Start time
|
|
26302
|
+
:type StartTime: str
|
|
26303
|
+
:param _EndTime: End time
|
|
26304
|
+
:type EndTime: str
|
|
26305
|
+
"""
|
|
26306
|
+
self._PageNum = None
|
|
26307
|
+
self._PageSize = None
|
|
26308
|
+
self._TenantId = None
|
|
26309
|
+
self._ProjectId = None
|
|
26310
|
+
self._TaskId = None
|
|
26311
|
+
self._InstanceId = None
|
|
26312
|
+
self._JobId = None
|
|
26313
|
+
self._EngineTaskId = None
|
|
26314
|
+
self._ProductSource = None
|
|
26315
|
+
self._OnwerUid = None
|
|
26316
|
+
self._StartTime = None
|
|
26317
|
+
self._EndTime = None
|
|
26318
|
+
|
|
26319
|
+
@property
|
|
26320
|
+
def PageNum(self):
|
|
26321
|
+
"""Page number
|
|
26322
|
+
:rtype: int
|
|
26323
|
+
"""
|
|
26324
|
+
return self._PageNum
|
|
26325
|
+
|
|
26326
|
+
@PageNum.setter
|
|
26327
|
+
def PageNum(self, PageNum):
|
|
26328
|
+
self._PageNum = PageNum
|
|
26329
|
+
|
|
26330
|
+
@property
|
|
26331
|
+
def PageSize(self):
|
|
26332
|
+
"""Entries per page.
|
|
26333
|
+
:rtype: int
|
|
26334
|
+
"""
|
|
26335
|
+
return self._PageSize
|
|
26336
|
+
|
|
26337
|
+
@PageSize.setter
|
|
26338
|
+
def PageSize(self, PageSize):
|
|
26339
|
+
self._PageSize = PageSize
|
|
26340
|
+
|
|
26341
|
+
@property
|
|
26342
|
+
def TenantId(self):
|
|
26343
|
+
"""Tenant id.
|
|
26344
|
+
:rtype: str
|
|
26345
|
+
"""
|
|
26346
|
+
return self._TenantId
|
|
26347
|
+
|
|
26348
|
+
@TenantId.setter
|
|
26349
|
+
def TenantId(self, TenantId):
|
|
26350
|
+
self._TenantId = TenantId
|
|
26351
|
+
|
|
26352
|
+
@property
|
|
26353
|
+
def ProjectId(self):
|
|
26354
|
+
"""Project ID.
|
|
26355
|
+
:rtype: str
|
|
26356
|
+
"""
|
|
26357
|
+
return self._ProjectId
|
|
26358
|
+
|
|
26359
|
+
@ProjectId.setter
|
|
26360
|
+
def ProjectId(self, ProjectId):
|
|
26361
|
+
self._ProjectId = ProjectId
|
|
26362
|
+
|
|
26363
|
+
@property
|
|
26364
|
+
def TaskId(self):
|
|
26365
|
+
"""Task ID
|
|
26366
|
+
:rtype: str
|
|
26367
|
+
"""
|
|
26368
|
+
return self._TaskId
|
|
26369
|
+
|
|
26370
|
+
@TaskId.setter
|
|
26371
|
+
def TaskId(self, TaskId):
|
|
26372
|
+
self._TaskId = TaskId
|
|
26373
|
+
|
|
26374
|
+
@property
|
|
26375
|
+
def InstanceId(self):
|
|
26376
|
+
"""Instance ID
|
|
26377
|
+
:rtype: str
|
|
26378
|
+
"""
|
|
26379
|
+
return self._InstanceId
|
|
26380
|
+
|
|
26381
|
+
@InstanceId.setter
|
|
26382
|
+
def InstanceId(self, InstanceId):
|
|
26383
|
+
self._InstanceId = InstanceId
|
|
26384
|
+
|
|
26385
|
+
@property
|
|
26386
|
+
def JobId(self):
|
|
26387
|
+
"""Job id.
|
|
26388
|
+
:rtype: str
|
|
26389
|
+
"""
|
|
26390
|
+
return self._JobId
|
|
26391
|
+
|
|
26392
|
+
@JobId.setter
|
|
26393
|
+
def JobId(self, JobId):
|
|
26394
|
+
self._JobId = JobId
|
|
26395
|
+
|
|
26396
|
+
@property
|
|
26397
|
+
def EngineTaskId(self):
|
|
26398
|
+
"""Engine task id.
|
|
26399
|
+
:rtype: str
|
|
26400
|
+
"""
|
|
26401
|
+
return self._EngineTaskId
|
|
26402
|
+
|
|
26403
|
+
@EngineTaskId.setter
|
|
26404
|
+
def EngineTaskId(self, EngineTaskId):
|
|
26405
|
+
self._EngineTaskId = EngineTaskId
|
|
26406
|
+
|
|
26407
|
+
@property
|
|
26408
|
+
def ProductSource(self):
|
|
26409
|
+
"""DATA source, such as DATA_INTEGRATION, DATA_EXPLORATION, DATA_QUALITY, OM_CENTER.
|
|
26410
|
+
:rtype: str
|
|
26411
|
+
"""
|
|
26412
|
+
return self._ProductSource
|
|
26413
|
+
|
|
26414
|
+
@ProductSource.setter
|
|
26415
|
+
def ProductSource(self, ProductSource):
|
|
26416
|
+
self._ProductSource = ProductSource
|
|
26417
|
+
|
|
26418
|
+
@property
|
|
26419
|
+
def OnwerUid(self):
|
|
26420
|
+
"""Root account.
|
|
26421
|
+
:rtype: str
|
|
26422
|
+
"""
|
|
26423
|
+
return self._OnwerUid
|
|
26424
|
+
|
|
26425
|
+
@OnwerUid.setter
|
|
26426
|
+
def OnwerUid(self, OnwerUid):
|
|
26427
|
+
self._OnwerUid = OnwerUid
|
|
26428
|
+
|
|
26429
|
+
@property
|
|
26430
|
+
def StartTime(self):
|
|
26431
|
+
"""Start time
|
|
26432
|
+
:rtype: str
|
|
26433
|
+
"""
|
|
26434
|
+
return self._StartTime
|
|
26435
|
+
|
|
26436
|
+
@StartTime.setter
|
|
26437
|
+
def StartTime(self, StartTime):
|
|
26438
|
+
self._StartTime = StartTime
|
|
26439
|
+
|
|
26440
|
+
@property
|
|
26441
|
+
def EndTime(self):
|
|
26442
|
+
"""End time
|
|
26443
|
+
:rtype: str
|
|
26444
|
+
"""
|
|
26445
|
+
return self._EndTime
|
|
26446
|
+
|
|
26447
|
+
@EndTime.setter
|
|
26448
|
+
def EndTime(self, EndTime):
|
|
26449
|
+
self._EndTime = EndTime
|
|
26450
|
+
|
|
26451
|
+
|
|
26452
|
+
def _deserialize(self, params):
|
|
26453
|
+
self._PageNum = params.get("PageNum")
|
|
26454
|
+
self._PageSize = params.get("PageSize")
|
|
26455
|
+
self._TenantId = params.get("TenantId")
|
|
26456
|
+
self._ProjectId = params.get("ProjectId")
|
|
26457
|
+
self._TaskId = params.get("TaskId")
|
|
26458
|
+
self._InstanceId = params.get("InstanceId")
|
|
26459
|
+
self._JobId = params.get("JobId")
|
|
26460
|
+
self._EngineTaskId = params.get("EngineTaskId")
|
|
26461
|
+
self._ProductSource = params.get("ProductSource")
|
|
26462
|
+
self._OnwerUid = params.get("OnwerUid")
|
|
26463
|
+
self._StartTime = params.get("StartTime")
|
|
26464
|
+
self._EndTime = params.get("EndTime")
|
|
26465
|
+
memeber_set = set(params.keys())
|
|
26466
|
+
for name, value in vars(self).items():
|
|
26467
|
+
property_name = name[1:]
|
|
26468
|
+
if property_name in memeber_set:
|
|
26469
|
+
memeber_set.remove(property_name)
|
|
26470
|
+
if len(memeber_set) > 0:
|
|
26471
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
26472
|
+
|
|
26473
|
+
|
|
26474
|
+
|
|
26475
|
+
class DescribeReportTaskListResponse(AbstractModel):
|
|
26476
|
+
"""DescribeReportTaskList response structure.
|
|
26477
|
+
|
|
26478
|
+
"""
|
|
26479
|
+
|
|
26480
|
+
def __init__(self):
|
|
26481
|
+
r"""
|
|
26482
|
+
:param _Data: Task list information.
|
|
26483
|
+
:type Data: :class:`tencentcloud.wedata.v20210820.models.ReportTaskListInfo`
|
|
26484
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
26485
|
+
:type RequestId: str
|
|
26486
|
+
"""
|
|
26487
|
+
self._Data = None
|
|
26488
|
+
self._RequestId = None
|
|
26489
|
+
|
|
26490
|
+
@property
|
|
26491
|
+
def Data(self):
|
|
26492
|
+
"""Task list information.
|
|
26493
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.ReportTaskListInfo`
|
|
26494
|
+
"""
|
|
26495
|
+
return self._Data
|
|
26496
|
+
|
|
26497
|
+
@Data.setter
|
|
26498
|
+
def Data(self, Data):
|
|
26499
|
+
self._Data = Data
|
|
26500
|
+
|
|
26501
|
+
@property
|
|
26502
|
+
def RequestId(self):
|
|
26503
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
26504
|
+
:rtype: str
|
|
26505
|
+
"""
|
|
26506
|
+
return self._RequestId
|
|
26507
|
+
|
|
26508
|
+
@RequestId.setter
|
|
26509
|
+
def RequestId(self, RequestId):
|
|
26510
|
+
self._RequestId = RequestId
|
|
26511
|
+
|
|
26512
|
+
|
|
26513
|
+
def _deserialize(self, params):
|
|
26514
|
+
if params.get("Data") is not None:
|
|
26515
|
+
self._Data = ReportTaskListInfo()
|
|
26516
|
+
self._Data._deserialize(params.get("Data"))
|
|
26517
|
+
self._RequestId = params.get("RequestId")
|
|
26518
|
+
|
|
26519
|
+
|
|
26168
26520
|
class DescribeResourceManagePathTreesRequest(AbstractModel):
|
|
26169
26521
|
"""DescribeResourceManagePathTrees request structure.
|
|
26170
26522
|
|
|
@@ -30305,7 +30657,11 @@ class DescribeTableLineageRequest(AbstractModel):
|
|
|
30305
30657
|
|
|
30306
30658
|
def __init__(self):
|
|
30307
30659
|
r"""
|
|
30308
|
-
:param _Direction:
|
|
30660
|
+
:param _Direction: Enumeration value of query direction.
|
|
30661
|
+
|
|
30662
|
+
- INPUT
|
|
30663
|
+
- OUTPUT
|
|
30664
|
+
- BOTH
|
|
30309
30665
|
:type Direction: str
|
|
30310
30666
|
:param _Data: Table information
|
|
30311
30667
|
:type Data: :class:`tencentcloud.wedata.v20210820.models.TableLineageInfo`
|
|
@@ -30330,7 +30686,11 @@ class DescribeTableLineageRequest(AbstractModel):
|
|
|
30330
30686
|
|
|
30331
30687
|
@property
|
|
30332
30688
|
def Direction(self):
|
|
30333
|
-
"""
|
|
30689
|
+
"""Enumeration value of query direction.
|
|
30690
|
+
|
|
30691
|
+
- INPUT
|
|
30692
|
+
- OUTPUT
|
|
30693
|
+
- BOTH
|
|
30334
30694
|
:rtype: str
|
|
30335
30695
|
"""
|
|
30336
30696
|
return self._Direction
|
|
@@ -34979,6 +35339,389 @@ class DryRunDIOfflineTaskResponse(AbstractModel):
|
|
|
34979
35339
|
self._RequestId = params.get("RequestId")
|
|
34980
35340
|
|
|
34981
35341
|
|
|
35342
|
+
class EngineTaskInfo(AbstractModel):
|
|
35343
|
+
"""Engine task information.
|
|
35344
|
+
|
|
35345
|
+
"""
|
|
35346
|
+
|
|
35347
|
+
def __init__(self):
|
|
35348
|
+
r"""
|
|
35349
|
+
:param _EngineSubmitTime: Engine submission time.
|
|
35350
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35351
|
+
:type EngineSubmitTime: str
|
|
35352
|
+
:param _EngineExeTime: Engine execution time.
|
|
35353
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35354
|
+
:type EngineExeTime: str
|
|
35355
|
+
:param _EngineExeTimes: Total execution time of the engine.
|
|
35356
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35357
|
+
:type EngineExeTimes: int
|
|
35358
|
+
:param _CuConsume: cu consumption.
|
|
35359
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35360
|
+
:type CuConsume: int
|
|
35361
|
+
:param _ResourceUsage: Resource consumption.
|
|
35362
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35363
|
+
:type ResourceUsage: int
|
|
35364
|
+
:param _EngineName: Engine name.
|
|
35365
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35366
|
+
:type EngineName: str
|
|
35367
|
+
:param _EngineExeStatus: Engine execution status.
|
|
35368
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35369
|
+
:type EngineExeStatus: str
|
|
35370
|
+
:param _TaskKind: Task type.
|
|
35371
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35372
|
+
:type TaskKind: str
|
|
35373
|
+
:param _TaskType: Task type
|
|
35374
|
+
|
|
35375
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35376
|
+
:type TaskType: str
|
|
35377
|
+
:param _TaskContent: Task SQL statement.
|
|
35378
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35379
|
+
:type TaskContent: str
|
|
35380
|
+
:param _InputBytesSum: Total bytes of data scanning.
|
|
35381
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35382
|
+
|
|
35383
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35384
|
+
:type InputBytesSum: int
|
|
35385
|
+
:param _ShuffleReadBytesSum: Total shuffle read bytes.
|
|
35386
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35387
|
+
|
|
35388
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35389
|
+
:type ShuffleReadBytesSum: int
|
|
35390
|
+
:param _ShuffleReadRecordsSum: Total number of shuffle read lines.
|
|
35391
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35392
|
+
|
|
35393
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35394
|
+
:type ShuffleReadRecordsSum: int
|
|
35395
|
+
:param _OutputRecordsSum: Total number of outputs.
|
|
35396
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35397
|
+
|
|
35398
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35399
|
+
:type OutputRecordsSum: int
|
|
35400
|
+
:param _OutputBytesSum: Total output in bytes.
|
|
35401
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35402
|
+
|
|
35403
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35404
|
+
:type OutputBytesSum: int
|
|
35405
|
+
:param _OutputFilesNum: Number of output files.
|
|
35406
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35407
|
+
:type OutputFilesNum: int
|
|
35408
|
+
:param _OutputSmallFilesNum: Number of small files output.
|
|
35409
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35410
|
+
:type OutputSmallFilesNum: int
|
|
35411
|
+
:param _WaitTime: Execution wait time.
|
|
35412
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35413
|
+
:type WaitTime: int
|
|
35414
|
+
:param _QueryResultTime: Query result time.
|
|
35415
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35416
|
+
:type QueryResultTime: int
|
|
35417
|
+
:param _CmdArgs: Input parameters.
|
|
35418
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35419
|
+
:type CmdArgs: str
|
|
35420
|
+
"""
|
|
35421
|
+
self._EngineSubmitTime = None
|
|
35422
|
+
self._EngineExeTime = None
|
|
35423
|
+
self._EngineExeTimes = None
|
|
35424
|
+
self._CuConsume = None
|
|
35425
|
+
self._ResourceUsage = None
|
|
35426
|
+
self._EngineName = None
|
|
35427
|
+
self._EngineExeStatus = None
|
|
35428
|
+
self._TaskKind = None
|
|
35429
|
+
self._TaskType = None
|
|
35430
|
+
self._TaskContent = None
|
|
35431
|
+
self._InputBytesSum = None
|
|
35432
|
+
self._ShuffleReadBytesSum = None
|
|
35433
|
+
self._ShuffleReadRecordsSum = None
|
|
35434
|
+
self._OutputRecordsSum = None
|
|
35435
|
+
self._OutputBytesSum = None
|
|
35436
|
+
self._OutputFilesNum = None
|
|
35437
|
+
self._OutputSmallFilesNum = None
|
|
35438
|
+
self._WaitTime = None
|
|
35439
|
+
self._QueryResultTime = None
|
|
35440
|
+
self._CmdArgs = None
|
|
35441
|
+
|
|
35442
|
+
@property
|
|
35443
|
+
def EngineSubmitTime(self):
|
|
35444
|
+
"""Engine submission time.
|
|
35445
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35446
|
+
:rtype: str
|
|
35447
|
+
"""
|
|
35448
|
+
return self._EngineSubmitTime
|
|
35449
|
+
|
|
35450
|
+
@EngineSubmitTime.setter
|
|
35451
|
+
def EngineSubmitTime(self, EngineSubmitTime):
|
|
35452
|
+
self._EngineSubmitTime = EngineSubmitTime
|
|
35453
|
+
|
|
35454
|
+
@property
|
|
35455
|
+
def EngineExeTime(self):
|
|
35456
|
+
"""Engine execution time.
|
|
35457
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35458
|
+
:rtype: str
|
|
35459
|
+
"""
|
|
35460
|
+
return self._EngineExeTime
|
|
35461
|
+
|
|
35462
|
+
@EngineExeTime.setter
|
|
35463
|
+
def EngineExeTime(self, EngineExeTime):
|
|
35464
|
+
self._EngineExeTime = EngineExeTime
|
|
35465
|
+
|
|
35466
|
+
@property
|
|
35467
|
+
def EngineExeTimes(self):
|
|
35468
|
+
"""Total execution time of the engine.
|
|
35469
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35470
|
+
:rtype: int
|
|
35471
|
+
"""
|
|
35472
|
+
return self._EngineExeTimes
|
|
35473
|
+
|
|
35474
|
+
@EngineExeTimes.setter
|
|
35475
|
+
def EngineExeTimes(self, EngineExeTimes):
|
|
35476
|
+
self._EngineExeTimes = EngineExeTimes
|
|
35477
|
+
|
|
35478
|
+
@property
|
|
35479
|
+
def CuConsume(self):
|
|
35480
|
+
"""cu consumption.
|
|
35481
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35482
|
+
:rtype: int
|
|
35483
|
+
"""
|
|
35484
|
+
return self._CuConsume
|
|
35485
|
+
|
|
35486
|
+
@CuConsume.setter
|
|
35487
|
+
def CuConsume(self, CuConsume):
|
|
35488
|
+
self._CuConsume = CuConsume
|
|
35489
|
+
|
|
35490
|
+
@property
|
|
35491
|
+
def ResourceUsage(self):
|
|
35492
|
+
"""Resource consumption.
|
|
35493
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35494
|
+
:rtype: int
|
|
35495
|
+
"""
|
|
35496
|
+
return self._ResourceUsage
|
|
35497
|
+
|
|
35498
|
+
@ResourceUsage.setter
|
|
35499
|
+
def ResourceUsage(self, ResourceUsage):
|
|
35500
|
+
self._ResourceUsage = ResourceUsage
|
|
35501
|
+
|
|
35502
|
+
@property
|
|
35503
|
+
def EngineName(self):
|
|
35504
|
+
"""Engine name.
|
|
35505
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35506
|
+
:rtype: str
|
|
35507
|
+
"""
|
|
35508
|
+
return self._EngineName
|
|
35509
|
+
|
|
35510
|
+
@EngineName.setter
|
|
35511
|
+
def EngineName(self, EngineName):
|
|
35512
|
+
self._EngineName = EngineName
|
|
35513
|
+
|
|
35514
|
+
@property
|
|
35515
|
+
def EngineExeStatus(self):
|
|
35516
|
+
"""Engine execution status.
|
|
35517
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35518
|
+
:rtype: str
|
|
35519
|
+
"""
|
|
35520
|
+
return self._EngineExeStatus
|
|
35521
|
+
|
|
35522
|
+
@EngineExeStatus.setter
|
|
35523
|
+
def EngineExeStatus(self, EngineExeStatus):
|
|
35524
|
+
self._EngineExeStatus = EngineExeStatus
|
|
35525
|
+
|
|
35526
|
+
@property
|
|
35527
|
+
def TaskKind(self):
|
|
35528
|
+
"""Task type.
|
|
35529
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35530
|
+
:rtype: str
|
|
35531
|
+
"""
|
|
35532
|
+
return self._TaskKind
|
|
35533
|
+
|
|
35534
|
+
@TaskKind.setter
|
|
35535
|
+
def TaskKind(self, TaskKind):
|
|
35536
|
+
self._TaskKind = TaskKind
|
|
35537
|
+
|
|
35538
|
+
@property
|
|
35539
|
+
def TaskType(self):
|
|
35540
|
+
"""Task type
|
|
35541
|
+
|
|
35542
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35543
|
+
:rtype: str
|
|
35544
|
+
"""
|
|
35545
|
+
return self._TaskType
|
|
35546
|
+
|
|
35547
|
+
@TaskType.setter
|
|
35548
|
+
def TaskType(self, TaskType):
|
|
35549
|
+
self._TaskType = TaskType
|
|
35550
|
+
|
|
35551
|
+
@property
|
|
35552
|
+
def TaskContent(self):
|
|
35553
|
+
"""Task SQL statement.
|
|
35554
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35555
|
+
:rtype: str
|
|
35556
|
+
"""
|
|
35557
|
+
return self._TaskContent
|
|
35558
|
+
|
|
35559
|
+
@TaskContent.setter
|
|
35560
|
+
def TaskContent(self, TaskContent):
|
|
35561
|
+
self._TaskContent = TaskContent
|
|
35562
|
+
|
|
35563
|
+
@property
|
|
35564
|
+
def InputBytesSum(self):
|
|
35565
|
+
"""Total bytes of data scanning.
|
|
35566
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35567
|
+
|
|
35568
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35569
|
+
:rtype: int
|
|
35570
|
+
"""
|
|
35571
|
+
return self._InputBytesSum
|
|
35572
|
+
|
|
35573
|
+
@InputBytesSum.setter
|
|
35574
|
+
def InputBytesSum(self, InputBytesSum):
|
|
35575
|
+
self._InputBytesSum = InputBytesSum
|
|
35576
|
+
|
|
35577
|
+
@property
|
|
35578
|
+
def ShuffleReadBytesSum(self):
|
|
35579
|
+
"""Total shuffle read bytes.
|
|
35580
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35581
|
+
|
|
35582
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35583
|
+
:rtype: int
|
|
35584
|
+
"""
|
|
35585
|
+
return self._ShuffleReadBytesSum
|
|
35586
|
+
|
|
35587
|
+
@ShuffleReadBytesSum.setter
|
|
35588
|
+
def ShuffleReadBytesSum(self, ShuffleReadBytesSum):
|
|
35589
|
+
self._ShuffleReadBytesSum = ShuffleReadBytesSum
|
|
35590
|
+
|
|
35591
|
+
@property
|
|
35592
|
+
def ShuffleReadRecordsSum(self):
|
|
35593
|
+
"""Total number of shuffle read lines.
|
|
35594
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35595
|
+
|
|
35596
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35597
|
+
:rtype: int
|
|
35598
|
+
"""
|
|
35599
|
+
return self._ShuffleReadRecordsSum
|
|
35600
|
+
|
|
35601
|
+
@ShuffleReadRecordsSum.setter
|
|
35602
|
+
def ShuffleReadRecordsSum(self, ShuffleReadRecordsSum):
|
|
35603
|
+
self._ShuffleReadRecordsSum = ShuffleReadRecordsSum
|
|
35604
|
+
|
|
35605
|
+
@property
|
|
35606
|
+
def OutputRecordsSum(self):
|
|
35607
|
+
"""Total number of outputs.
|
|
35608
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35609
|
+
|
|
35610
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35611
|
+
:rtype: int
|
|
35612
|
+
"""
|
|
35613
|
+
return self._OutputRecordsSum
|
|
35614
|
+
|
|
35615
|
+
@OutputRecordsSum.setter
|
|
35616
|
+
def OutputRecordsSum(self, OutputRecordsSum):
|
|
35617
|
+
self._OutputRecordsSum = OutputRecordsSum
|
|
35618
|
+
|
|
35619
|
+
@property
|
|
35620
|
+
def OutputBytesSum(self):
|
|
35621
|
+
"""Total output in bytes.
|
|
35622
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35623
|
+
|
|
35624
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35625
|
+
:rtype: int
|
|
35626
|
+
"""
|
|
35627
|
+
return self._OutputBytesSum
|
|
35628
|
+
|
|
35629
|
+
@OutputBytesSum.setter
|
|
35630
|
+
def OutputBytesSum(self, OutputBytesSum):
|
|
35631
|
+
self._OutputBytesSum = OutputBytesSum
|
|
35632
|
+
|
|
35633
|
+
@property
|
|
35634
|
+
def OutputFilesNum(self):
|
|
35635
|
+
"""Number of output files.
|
|
35636
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35637
|
+
:rtype: int
|
|
35638
|
+
"""
|
|
35639
|
+
return self._OutputFilesNum
|
|
35640
|
+
|
|
35641
|
+
@OutputFilesNum.setter
|
|
35642
|
+
def OutputFilesNum(self, OutputFilesNum):
|
|
35643
|
+
self._OutputFilesNum = OutputFilesNum
|
|
35644
|
+
|
|
35645
|
+
@property
|
|
35646
|
+
def OutputSmallFilesNum(self):
|
|
35647
|
+
"""Number of small files output.
|
|
35648
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35649
|
+
:rtype: int
|
|
35650
|
+
"""
|
|
35651
|
+
return self._OutputSmallFilesNum
|
|
35652
|
+
|
|
35653
|
+
@OutputSmallFilesNum.setter
|
|
35654
|
+
def OutputSmallFilesNum(self, OutputSmallFilesNum):
|
|
35655
|
+
self._OutputSmallFilesNum = OutputSmallFilesNum
|
|
35656
|
+
|
|
35657
|
+
@property
|
|
35658
|
+
def WaitTime(self):
|
|
35659
|
+
"""Execution wait time.
|
|
35660
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35661
|
+
:rtype: int
|
|
35662
|
+
"""
|
|
35663
|
+
return self._WaitTime
|
|
35664
|
+
|
|
35665
|
+
@WaitTime.setter
|
|
35666
|
+
def WaitTime(self, WaitTime):
|
|
35667
|
+
self._WaitTime = WaitTime
|
|
35668
|
+
|
|
35669
|
+
@property
|
|
35670
|
+
def QueryResultTime(self):
|
|
35671
|
+
"""Query result time.
|
|
35672
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35673
|
+
:rtype: int
|
|
35674
|
+
"""
|
|
35675
|
+
return self._QueryResultTime
|
|
35676
|
+
|
|
35677
|
+
@QueryResultTime.setter
|
|
35678
|
+
def QueryResultTime(self, QueryResultTime):
|
|
35679
|
+
self._QueryResultTime = QueryResultTime
|
|
35680
|
+
|
|
35681
|
+
@property
|
|
35682
|
+
def CmdArgs(self):
|
|
35683
|
+
"""Input parameters.
|
|
35684
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35685
|
+
:rtype: str
|
|
35686
|
+
"""
|
|
35687
|
+
return self._CmdArgs
|
|
35688
|
+
|
|
35689
|
+
@CmdArgs.setter
|
|
35690
|
+
def CmdArgs(self, CmdArgs):
|
|
35691
|
+
self._CmdArgs = CmdArgs
|
|
35692
|
+
|
|
35693
|
+
|
|
35694
|
+
def _deserialize(self, params):
|
|
35695
|
+
self._EngineSubmitTime = params.get("EngineSubmitTime")
|
|
35696
|
+
self._EngineExeTime = params.get("EngineExeTime")
|
|
35697
|
+
self._EngineExeTimes = params.get("EngineExeTimes")
|
|
35698
|
+
self._CuConsume = params.get("CuConsume")
|
|
35699
|
+
self._ResourceUsage = params.get("ResourceUsage")
|
|
35700
|
+
self._EngineName = params.get("EngineName")
|
|
35701
|
+
self._EngineExeStatus = params.get("EngineExeStatus")
|
|
35702
|
+
self._TaskKind = params.get("TaskKind")
|
|
35703
|
+
self._TaskType = params.get("TaskType")
|
|
35704
|
+
self._TaskContent = params.get("TaskContent")
|
|
35705
|
+
self._InputBytesSum = params.get("InputBytesSum")
|
|
35706
|
+
self._ShuffleReadBytesSum = params.get("ShuffleReadBytesSum")
|
|
35707
|
+
self._ShuffleReadRecordsSum = params.get("ShuffleReadRecordsSum")
|
|
35708
|
+
self._OutputRecordsSum = params.get("OutputRecordsSum")
|
|
35709
|
+
self._OutputBytesSum = params.get("OutputBytesSum")
|
|
35710
|
+
self._OutputFilesNum = params.get("OutputFilesNum")
|
|
35711
|
+
self._OutputSmallFilesNum = params.get("OutputSmallFilesNum")
|
|
35712
|
+
self._WaitTime = params.get("WaitTime")
|
|
35713
|
+
self._QueryResultTime = params.get("QueryResultTime")
|
|
35714
|
+
self._CmdArgs = params.get("CmdArgs")
|
|
35715
|
+
memeber_set = set(params.keys())
|
|
35716
|
+
for name, value in vars(self).items():
|
|
35717
|
+
property_name = name[1:]
|
|
35718
|
+
if property_name in memeber_set:
|
|
35719
|
+
memeber_set.remove(property_name)
|
|
35720
|
+
if len(memeber_set) > 0:
|
|
35721
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
35722
|
+
|
|
35723
|
+
|
|
35724
|
+
|
|
34982
35725
|
class EventBatchCaseDTO(AbstractModel):
|
|
34983
35726
|
"""Event Continuous Time Instance Information
|
|
34984
35727
|
|
|
@@ -53365,6 +54108,265 @@ class RemoveWorkflowDsResponse(AbstractModel):
|
|
|
53365
54108
|
self._RequestId = params.get("RequestId")
|
|
53366
54109
|
|
|
53367
54110
|
|
|
54111
|
+
class ReportTaskDetail(AbstractModel):
|
|
54112
|
+
"""Task submission detail response parameters structure.
|
|
54113
|
+
|
|
54114
|
+
"""
|
|
54115
|
+
|
|
54116
|
+
def __init__(self):
|
|
54117
|
+
r"""
|
|
54118
|
+
:param _EngineTaskId: Engine task id.
|
|
54119
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54120
|
+
:type EngineTaskId: str
|
|
54121
|
+
:param _EngineExeStatus: Engine execution status, enumerate.
|
|
54122
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54123
|
+
:type EngineExeStatus: str
|
|
54124
|
+
:param _EngineExeStartTime: Engine execution start time.
|
|
54125
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54126
|
+
:type EngineExeStartTime: str
|
|
54127
|
+
:param _EngineExeEndTime: Engine execution end time.
|
|
54128
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54129
|
+
:type EngineExeEndTime: str
|
|
54130
|
+
:param _TaskTypeId: Task type id.
|
|
54131
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54132
|
+
:type TaskTypeId: int
|
|
54133
|
+
:param _BusinessInfo: Business information.
|
|
54134
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54135
|
+
:type BusinessInfo: str
|
|
54136
|
+
:param _EngineTaskInfo: Engine task information.
|
|
54137
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54138
|
+
:type EngineTaskInfo: :class:`tencentcloud.wedata.v20210820.models.EngineTaskInfo`
|
|
54139
|
+
"""
|
|
54140
|
+
self._EngineTaskId = None
|
|
54141
|
+
self._EngineExeStatus = None
|
|
54142
|
+
self._EngineExeStartTime = None
|
|
54143
|
+
self._EngineExeEndTime = None
|
|
54144
|
+
self._TaskTypeId = None
|
|
54145
|
+
self._BusinessInfo = None
|
|
54146
|
+
self._EngineTaskInfo = None
|
|
54147
|
+
|
|
54148
|
+
@property
|
|
54149
|
+
def EngineTaskId(self):
|
|
54150
|
+
"""Engine task id.
|
|
54151
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54152
|
+
:rtype: str
|
|
54153
|
+
"""
|
|
54154
|
+
return self._EngineTaskId
|
|
54155
|
+
|
|
54156
|
+
@EngineTaskId.setter
|
|
54157
|
+
def EngineTaskId(self, EngineTaskId):
|
|
54158
|
+
self._EngineTaskId = EngineTaskId
|
|
54159
|
+
|
|
54160
|
+
@property
|
|
54161
|
+
def EngineExeStatus(self):
|
|
54162
|
+
"""Engine execution status, enumerate.
|
|
54163
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54164
|
+
:rtype: str
|
|
54165
|
+
"""
|
|
54166
|
+
return self._EngineExeStatus
|
|
54167
|
+
|
|
54168
|
+
@EngineExeStatus.setter
|
|
54169
|
+
def EngineExeStatus(self, EngineExeStatus):
|
|
54170
|
+
self._EngineExeStatus = EngineExeStatus
|
|
54171
|
+
|
|
54172
|
+
@property
|
|
54173
|
+
def EngineExeStartTime(self):
|
|
54174
|
+
"""Engine execution start time.
|
|
54175
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54176
|
+
:rtype: str
|
|
54177
|
+
"""
|
|
54178
|
+
return self._EngineExeStartTime
|
|
54179
|
+
|
|
54180
|
+
@EngineExeStartTime.setter
|
|
54181
|
+
def EngineExeStartTime(self, EngineExeStartTime):
|
|
54182
|
+
self._EngineExeStartTime = EngineExeStartTime
|
|
54183
|
+
|
|
54184
|
+
@property
|
|
54185
|
+
def EngineExeEndTime(self):
|
|
54186
|
+
"""Engine execution end time.
|
|
54187
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54188
|
+
:rtype: str
|
|
54189
|
+
"""
|
|
54190
|
+
return self._EngineExeEndTime
|
|
54191
|
+
|
|
54192
|
+
@EngineExeEndTime.setter
|
|
54193
|
+
def EngineExeEndTime(self, EngineExeEndTime):
|
|
54194
|
+
self._EngineExeEndTime = EngineExeEndTime
|
|
54195
|
+
|
|
54196
|
+
@property
|
|
54197
|
+
def TaskTypeId(self):
|
|
54198
|
+
"""Task type id.
|
|
54199
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54200
|
+
:rtype: int
|
|
54201
|
+
"""
|
|
54202
|
+
return self._TaskTypeId
|
|
54203
|
+
|
|
54204
|
+
@TaskTypeId.setter
|
|
54205
|
+
def TaskTypeId(self, TaskTypeId):
|
|
54206
|
+
self._TaskTypeId = TaskTypeId
|
|
54207
|
+
|
|
54208
|
+
@property
|
|
54209
|
+
def BusinessInfo(self):
|
|
54210
|
+
"""Business information.
|
|
54211
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54212
|
+
:rtype: str
|
|
54213
|
+
"""
|
|
54214
|
+
return self._BusinessInfo
|
|
54215
|
+
|
|
54216
|
+
@BusinessInfo.setter
|
|
54217
|
+
def BusinessInfo(self, BusinessInfo):
|
|
54218
|
+
self._BusinessInfo = BusinessInfo
|
|
54219
|
+
|
|
54220
|
+
@property
|
|
54221
|
+
def EngineTaskInfo(self):
|
|
54222
|
+
"""Engine task information.
|
|
54223
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54224
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.EngineTaskInfo`
|
|
54225
|
+
"""
|
|
54226
|
+
return self._EngineTaskInfo
|
|
54227
|
+
|
|
54228
|
+
@EngineTaskInfo.setter
|
|
54229
|
+
def EngineTaskInfo(self, EngineTaskInfo):
|
|
54230
|
+
self._EngineTaskInfo = EngineTaskInfo
|
|
54231
|
+
|
|
54232
|
+
|
|
54233
|
+
def _deserialize(self, params):
|
|
54234
|
+
self._EngineTaskId = params.get("EngineTaskId")
|
|
54235
|
+
self._EngineExeStatus = params.get("EngineExeStatus")
|
|
54236
|
+
self._EngineExeStartTime = params.get("EngineExeStartTime")
|
|
54237
|
+
self._EngineExeEndTime = params.get("EngineExeEndTime")
|
|
54238
|
+
self._TaskTypeId = params.get("TaskTypeId")
|
|
54239
|
+
self._BusinessInfo = params.get("BusinessInfo")
|
|
54240
|
+
if params.get("EngineTaskInfo") is not None:
|
|
54241
|
+
self._EngineTaskInfo = EngineTaskInfo()
|
|
54242
|
+
self._EngineTaskInfo._deserialize(params.get("EngineTaskInfo"))
|
|
54243
|
+
memeber_set = set(params.keys())
|
|
54244
|
+
for name, value in vars(self).items():
|
|
54245
|
+
property_name = name[1:]
|
|
54246
|
+
if property_name in memeber_set:
|
|
54247
|
+
memeber_set.remove(property_name)
|
|
54248
|
+
if len(memeber_set) > 0:
|
|
54249
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
54250
|
+
|
|
54251
|
+
|
|
54252
|
+
|
|
54253
|
+
class ReportTaskListInfo(AbstractModel):
|
|
54254
|
+
"""Submit task information.
|
|
54255
|
+
|
|
54256
|
+
"""
|
|
54257
|
+
|
|
54258
|
+
def __init__(self):
|
|
54259
|
+
r"""
|
|
54260
|
+
:param _Rows: Task list details.
|
|
54261
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54262
|
+
:type Rows: list of TaskInfoVo
|
|
54263
|
+
:param _PageNum: Page number
|
|
54264
|
+
|
|
54265
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54266
|
+
:type PageNum: int
|
|
54267
|
+
:param _PageSize: Entries per page.
|
|
54268
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54269
|
+
:type PageSize: int
|
|
54270
|
+
:param _TotalCount: Total number of records
|
|
54271
|
+
|
|
54272
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54273
|
+
:type TotalCount: int
|
|
54274
|
+
:param _TotalPageNumber: Total pages
|
|
54275
|
+
|
|
54276
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54277
|
+
:type TotalPageNumber: int
|
|
54278
|
+
"""
|
|
54279
|
+
self._Rows = None
|
|
54280
|
+
self._PageNum = None
|
|
54281
|
+
self._PageSize = None
|
|
54282
|
+
self._TotalCount = None
|
|
54283
|
+
self._TotalPageNumber = None
|
|
54284
|
+
|
|
54285
|
+
@property
|
|
54286
|
+
def Rows(self):
|
|
54287
|
+
"""Task list details.
|
|
54288
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54289
|
+
:rtype: list of TaskInfoVo
|
|
54290
|
+
"""
|
|
54291
|
+
return self._Rows
|
|
54292
|
+
|
|
54293
|
+
@Rows.setter
|
|
54294
|
+
def Rows(self, Rows):
|
|
54295
|
+
self._Rows = Rows
|
|
54296
|
+
|
|
54297
|
+
@property
|
|
54298
|
+
def PageNum(self):
|
|
54299
|
+
"""Page number
|
|
54300
|
+
|
|
54301
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54302
|
+
:rtype: int
|
|
54303
|
+
"""
|
|
54304
|
+
return self._PageNum
|
|
54305
|
+
|
|
54306
|
+
@PageNum.setter
|
|
54307
|
+
def PageNum(self, PageNum):
|
|
54308
|
+
self._PageNum = PageNum
|
|
54309
|
+
|
|
54310
|
+
@property
|
|
54311
|
+
def PageSize(self):
|
|
54312
|
+
"""Entries per page.
|
|
54313
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54314
|
+
:rtype: int
|
|
54315
|
+
"""
|
|
54316
|
+
return self._PageSize
|
|
54317
|
+
|
|
54318
|
+
@PageSize.setter
|
|
54319
|
+
def PageSize(self, PageSize):
|
|
54320
|
+
self._PageSize = PageSize
|
|
54321
|
+
|
|
54322
|
+
@property
|
|
54323
|
+
def TotalCount(self):
|
|
54324
|
+
"""Total number of records
|
|
54325
|
+
|
|
54326
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54327
|
+
:rtype: int
|
|
54328
|
+
"""
|
|
54329
|
+
return self._TotalCount
|
|
54330
|
+
|
|
54331
|
+
@TotalCount.setter
|
|
54332
|
+
def TotalCount(self, TotalCount):
|
|
54333
|
+
self._TotalCount = TotalCount
|
|
54334
|
+
|
|
54335
|
+
@property
|
|
54336
|
+
def TotalPageNumber(self):
|
|
54337
|
+
"""Total pages
|
|
54338
|
+
|
|
54339
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
54340
|
+
:rtype: int
|
|
54341
|
+
"""
|
|
54342
|
+
return self._TotalPageNumber
|
|
54343
|
+
|
|
54344
|
+
@TotalPageNumber.setter
|
|
54345
|
+
def TotalPageNumber(self, TotalPageNumber):
|
|
54346
|
+
self._TotalPageNumber = TotalPageNumber
|
|
54347
|
+
|
|
54348
|
+
|
|
54349
|
+
def _deserialize(self, params):
|
|
54350
|
+
if params.get("Rows") is not None:
|
|
54351
|
+
self._Rows = []
|
|
54352
|
+
for item in params.get("Rows"):
|
|
54353
|
+
obj = TaskInfoVo()
|
|
54354
|
+
obj._deserialize(item)
|
|
54355
|
+
self._Rows.append(obj)
|
|
54356
|
+
self._PageNum = params.get("PageNum")
|
|
54357
|
+
self._PageSize = params.get("PageSize")
|
|
54358
|
+
self._TotalCount = params.get("TotalCount")
|
|
54359
|
+
self._TotalPageNumber = params.get("TotalPageNumber")
|
|
54360
|
+
memeber_set = set(params.keys())
|
|
54361
|
+
for name, value in vars(self).items():
|
|
54362
|
+
property_name = name[1:]
|
|
54363
|
+
if property_name in memeber_set:
|
|
54364
|
+
memeber_set.remove(property_name)
|
|
54365
|
+
if len(memeber_set) > 0:
|
|
54366
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
54367
|
+
|
|
54368
|
+
|
|
54369
|
+
|
|
53368
54370
|
class ResourcePathTree(AbstractModel):
|
|
53369
54371
|
"""Resource Management Directory Tree Node
|
|
53370
54372
|
|
|
@@ -64951,6 +65953,12 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
64951
65953
|
:param _DatabaseId: DatabaseId
|
|
64952
65954
|
Note: This field may return null, indicating that no valid value can be obtained.
|
|
64953
65955
|
:type DatabaseId: str
|
|
65956
|
+
:param _DataFromType: Data source.
|
|
65957
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
65958
|
+
:type DataFromType: str
|
|
65959
|
+
:param _CollectJobId: Collection id.
|
|
65960
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
65961
|
+
:type CollectJobId: str
|
|
64954
65962
|
"""
|
|
64955
65963
|
self._MetastoreType = None
|
|
64956
65964
|
self._ProjectId = None
|
|
@@ -64978,6 +65986,8 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
64978
65986
|
self._DatasourceName = None
|
|
64979
65987
|
self._DatabaseName = None
|
|
64980
65988
|
self._DatabaseId = None
|
|
65989
|
+
self._DataFromType = None
|
|
65990
|
+
self._CollectJobId = None
|
|
64981
65991
|
|
|
64982
65992
|
@property
|
|
64983
65993
|
def MetastoreType(self):
|
|
@@ -65291,6 +66301,30 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
65291
66301
|
def DatabaseId(self, DatabaseId):
|
|
65292
66302
|
self._DatabaseId = DatabaseId
|
|
65293
66303
|
|
|
66304
|
+
@property
|
|
66305
|
+
def DataFromType(self):
|
|
66306
|
+
"""Data source.
|
|
66307
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
66308
|
+
:rtype: str
|
|
66309
|
+
"""
|
|
66310
|
+
return self._DataFromType
|
|
66311
|
+
|
|
66312
|
+
@DataFromType.setter
|
|
66313
|
+
def DataFromType(self, DataFromType):
|
|
66314
|
+
self._DataFromType = DataFromType
|
|
66315
|
+
|
|
66316
|
+
@property
|
|
66317
|
+
def CollectJobId(self):
|
|
66318
|
+
"""Collection id.
|
|
66319
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
66320
|
+
:rtype: str
|
|
66321
|
+
"""
|
|
66322
|
+
return self._CollectJobId
|
|
66323
|
+
|
|
66324
|
+
@CollectJobId.setter
|
|
66325
|
+
def CollectJobId(self, CollectJobId):
|
|
66326
|
+
self._CollectJobId = CollectJobId
|
|
66327
|
+
|
|
65294
66328
|
|
|
65295
66329
|
def _deserialize(self, params):
|
|
65296
66330
|
self._MetastoreType = params.get("MetastoreType")
|
|
@@ -65329,6 +66363,8 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
65329
66363
|
self._DatasourceName = params.get("DatasourceName")
|
|
65330
66364
|
self._DatabaseName = params.get("DatabaseName")
|
|
65331
66365
|
self._DatabaseId = params.get("DatabaseId")
|
|
66366
|
+
self._DataFromType = params.get("DataFromType")
|
|
66367
|
+
self._CollectJobId = params.get("CollectJobId")
|
|
65332
66368
|
memeber_set = set(params.keys())
|
|
65333
66369
|
for name, value in vars(self).items():
|
|
65334
66370
|
property_name = name[1:]
|
|
@@ -67697,6 +68733,341 @@ class TaskExtInfo(AbstractModel):
|
|
|
67697
68733
|
|
|
67698
68734
|
|
|
67699
68735
|
|
|
68736
|
+
class TaskInfoVo(AbstractModel):
|
|
68737
|
+
"""Task information.
|
|
68738
|
+
|
|
68739
|
+
"""
|
|
68740
|
+
|
|
68741
|
+
def __init__(self):
|
|
68742
|
+
r"""
|
|
68743
|
+
:param _AppID: Tenant id.
|
|
68744
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68745
|
+
:type AppID: str
|
|
68746
|
+
:param _ProjectId: Project ID.
|
|
68747
|
+
|
|
68748
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68749
|
+
:type ProjectId: str
|
|
68750
|
+
:param _TaskId: Task ID
|
|
68751
|
+
|
|
68752
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68753
|
+
:type TaskId: str
|
|
68754
|
+
:param _TaskName: Task name.
|
|
68755
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68756
|
+
:type TaskName: str
|
|
68757
|
+
:param _TaskTypeId: Task type id.
|
|
68758
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68759
|
+
:type TaskTypeId: int
|
|
68760
|
+
:param _OnwerUid: Main account id.
|
|
68761
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68762
|
+
:type OnwerUid: str
|
|
68763
|
+
:param _InChargeId: Person in charge.
|
|
68764
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68765
|
+
:type InChargeId: str
|
|
68766
|
+
:param _InstanceId: Instance ID
|
|
68767
|
+
|
|
68768
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68769
|
+
:type InstanceId: str
|
|
68770
|
+
:param _JobId: jobId
|
|
68771
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68772
|
+
:type JobId: str
|
|
68773
|
+
:param _EngineType: Engine type, DLC, EMR.
|
|
68774
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68775
|
+
:type EngineType: str
|
|
68776
|
+
:param _EngineName: Engine name
|
|
68777
|
+
|
|
68778
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68779
|
+
:type EngineName: str
|
|
68780
|
+
:param _EngineSubType: Engine sub-type.
|
|
68781
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68782
|
+
:type EngineSubType: str
|
|
68783
|
+
:param _EngineTaskId: Engine taskId.
|
|
68784
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68785
|
+
:type EngineTaskId: str
|
|
68786
|
+
:param _EngineExeStatus: Engine execution status, enumerate.
|
|
68787
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68788
|
+
:type EngineExeStatus: str
|
|
68789
|
+
:param _EngineExeUser: Engine execution user.
|
|
68790
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68791
|
+
:type EngineExeUser: str
|
|
68792
|
+
:param _EngineExeStartTime: Engine execution start time.
|
|
68793
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68794
|
+
:type EngineExeStartTime: str
|
|
68795
|
+
:param _EngineExeEndTime: Engine execution end time.
|
|
68796
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68797
|
+
:type EngineExeEndTime: str
|
|
68798
|
+
:param _ProductSource: DATA source, such as DATA_INTEGRATION, DATA_EXPLORATION, DATA_QUALITY, OM_CENTER.
|
|
68799
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68800
|
+
:type ProductSource: str
|
|
68801
|
+
"""
|
|
68802
|
+
self._AppID = None
|
|
68803
|
+
self._ProjectId = None
|
|
68804
|
+
self._TaskId = None
|
|
68805
|
+
self._TaskName = None
|
|
68806
|
+
self._TaskTypeId = None
|
|
68807
|
+
self._OnwerUid = None
|
|
68808
|
+
self._InChargeId = None
|
|
68809
|
+
self._InstanceId = None
|
|
68810
|
+
self._JobId = None
|
|
68811
|
+
self._EngineType = None
|
|
68812
|
+
self._EngineName = None
|
|
68813
|
+
self._EngineSubType = None
|
|
68814
|
+
self._EngineTaskId = None
|
|
68815
|
+
self._EngineExeStatus = None
|
|
68816
|
+
self._EngineExeUser = None
|
|
68817
|
+
self._EngineExeStartTime = None
|
|
68818
|
+
self._EngineExeEndTime = None
|
|
68819
|
+
self._ProductSource = None
|
|
68820
|
+
|
|
68821
|
+
@property
|
|
68822
|
+
def AppID(self):
|
|
68823
|
+
"""Tenant id.
|
|
68824
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68825
|
+
:rtype: str
|
|
68826
|
+
"""
|
|
68827
|
+
return self._AppID
|
|
68828
|
+
|
|
68829
|
+
@AppID.setter
|
|
68830
|
+
def AppID(self, AppID):
|
|
68831
|
+
self._AppID = AppID
|
|
68832
|
+
|
|
68833
|
+
@property
|
|
68834
|
+
def ProjectId(self):
|
|
68835
|
+
"""Project ID.
|
|
68836
|
+
|
|
68837
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68838
|
+
:rtype: str
|
|
68839
|
+
"""
|
|
68840
|
+
return self._ProjectId
|
|
68841
|
+
|
|
68842
|
+
@ProjectId.setter
|
|
68843
|
+
def ProjectId(self, ProjectId):
|
|
68844
|
+
self._ProjectId = ProjectId
|
|
68845
|
+
|
|
68846
|
+
@property
|
|
68847
|
+
def TaskId(self):
|
|
68848
|
+
"""Task ID
|
|
68849
|
+
|
|
68850
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68851
|
+
:rtype: str
|
|
68852
|
+
"""
|
|
68853
|
+
return self._TaskId
|
|
68854
|
+
|
|
68855
|
+
@TaskId.setter
|
|
68856
|
+
def TaskId(self, TaskId):
|
|
68857
|
+
self._TaskId = TaskId
|
|
68858
|
+
|
|
68859
|
+
@property
|
|
68860
|
+
def TaskName(self):
|
|
68861
|
+
"""Task name.
|
|
68862
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68863
|
+
:rtype: str
|
|
68864
|
+
"""
|
|
68865
|
+
return self._TaskName
|
|
68866
|
+
|
|
68867
|
+
@TaskName.setter
|
|
68868
|
+
def TaskName(self, TaskName):
|
|
68869
|
+
self._TaskName = TaskName
|
|
68870
|
+
|
|
68871
|
+
@property
|
|
68872
|
+
def TaskTypeId(self):
|
|
68873
|
+
"""Task type id.
|
|
68874
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68875
|
+
:rtype: int
|
|
68876
|
+
"""
|
|
68877
|
+
return self._TaskTypeId
|
|
68878
|
+
|
|
68879
|
+
@TaskTypeId.setter
|
|
68880
|
+
def TaskTypeId(self, TaskTypeId):
|
|
68881
|
+
self._TaskTypeId = TaskTypeId
|
|
68882
|
+
|
|
68883
|
+
@property
|
|
68884
|
+
def OnwerUid(self):
|
|
68885
|
+
"""Main account id.
|
|
68886
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68887
|
+
:rtype: str
|
|
68888
|
+
"""
|
|
68889
|
+
return self._OnwerUid
|
|
68890
|
+
|
|
68891
|
+
@OnwerUid.setter
|
|
68892
|
+
def OnwerUid(self, OnwerUid):
|
|
68893
|
+
self._OnwerUid = OnwerUid
|
|
68894
|
+
|
|
68895
|
+
@property
|
|
68896
|
+
def InChargeId(self):
|
|
68897
|
+
"""Person in charge.
|
|
68898
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68899
|
+
:rtype: str
|
|
68900
|
+
"""
|
|
68901
|
+
return self._InChargeId
|
|
68902
|
+
|
|
68903
|
+
@InChargeId.setter
|
|
68904
|
+
def InChargeId(self, InChargeId):
|
|
68905
|
+
self._InChargeId = InChargeId
|
|
68906
|
+
|
|
68907
|
+
@property
|
|
68908
|
+
def InstanceId(self):
|
|
68909
|
+
"""Instance ID
|
|
68910
|
+
|
|
68911
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68912
|
+
:rtype: str
|
|
68913
|
+
"""
|
|
68914
|
+
return self._InstanceId
|
|
68915
|
+
|
|
68916
|
+
@InstanceId.setter
|
|
68917
|
+
def InstanceId(self, InstanceId):
|
|
68918
|
+
self._InstanceId = InstanceId
|
|
68919
|
+
|
|
68920
|
+
@property
|
|
68921
|
+
def JobId(self):
|
|
68922
|
+
"""jobId
|
|
68923
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68924
|
+
:rtype: str
|
|
68925
|
+
"""
|
|
68926
|
+
return self._JobId
|
|
68927
|
+
|
|
68928
|
+
@JobId.setter
|
|
68929
|
+
def JobId(self, JobId):
|
|
68930
|
+
self._JobId = JobId
|
|
68931
|
+
|
|
68932
|
+
@property
|
|
68933
|
+
def EngineType(self):
|
|
68934
|
+
"""Engine type, DLC, EMR.
|
|
68935
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68936
|
+
:rtype: str
|
|
68937
|
+
"""
|
|
68938
|
+
return self._EngineType
|
|
68939
|
+
|
|
68940
|
+
@EngineType.setter
|
|
68941
|
+
def EngineType(self, EngineType):
|
|
68942
|
+
self._EngineType = EngineType
|
|
68943
|
+
|
|
68944
|
+
@property
|
|
68945
|
+
def EngineName(self):
|
|
68946
|
+
"""Engine name
|
|
68947
|
+
|
|
68948
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68949
|
+
:rtype: str
|
|
68950
|
+
"""
|
|
68951
|
+
return self._EngineName
|
|
68952
|
+
|
|
68953
|
+
@EngineName.setter
|
|
68954
|
+
def EngineName(self, EngineName):
|
|
68955
|
+
self._EngineName = EngineName
|
|
68956
|
+
|
|
68957
|
+
@property
|
|
68958
|
+
def EngineSubType(self):
|
|
68959
|
+
"""Engine sub-type.
|
|
68960
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68961
|
+
:rtype: str
|
|
68962
|
+
"""
|
|
68963
|
+
return self._EngineSubType
|
|
68964
|
+
|
|
68965
|
+
@EngineSubType.setter
|
|
68966
|
+
def EngineSubType(self, EngineSubType):
|
|
68967
|
+
self._EngineSubType = EngineSubType
|
|
68968
|
+
|
|
68969
|
+
@property
|
|
68970
|
+
def EngineTaskId(self):
|
|
68971
|
+
"""Engine taskId.
|
|
68972
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68973
|
+
:rtype: str
|
|
68974
|
+
"""
|
|
68975
|
+
return self._EngineTaskId
|
|
68976
|
+
|
|
68977
|
+
@EngineTaskId.setter
|
|
68978
|
+
def EngineTaskId(self, EngineTaskId):
|
|
68979
|
+
self._EngineTaskId = EngineTaskId
|
|
68980
|
+
|
|
68981
|
+
@property
|
|
68982
|
+
def EngineExeStatus(self):
|
|
68983
|
+
"""Engine execution status, enumerate.
|
|
68984
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68985
|
+
:rtype: str
|
|
68986
|
+
"""
|
|
68987
|
+
return self._EngineExeStatus
|
|
68988
|
+
|
|
68989
|
+
@EngineExeStatus.setter
|
|
68990
|
+
def EngineExeStatus(self, EngineExeStatus):
|
|
68991
|
+
self._EngineExeStatus = EngineExeStatus
|
|
68992
|
+
|
|
68993
|
+
@property
|
|
68994
|
+
def EngineExeUser(self):
|
|
68995
|
+
"""Engine execution user.
|
|
68996
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
68997
|
+
:rtype: str
|
|
68998
|
+
"""
|
|
68999
|
+
return self._EngineExeUser
|
|
69000
|
+
|
|
69001
|
+
@EngineExeUser.setter
|
|
69002
|
+
def EngineExeUser(self, EngineExeUser):
|
|
69003
|
+
self._EngineExeUser = EngineExeUser
|
|
69004
|
+
|
|
69005
|
+
@property
|
|
69006
|
+
def EngineExeStartTime(self):
|
|
69007
|
+
"""Engine execution start time.
|
|
69008
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
69009
|
+
:rtype: str
|
|
69010
|
+
"""
|
|
69011
|
+
return self._EngineExeStartTime
|
|
69012
|
+
|
|
69013
|
+
@EngineExeStartTime.setter
|
|
69014
|
+
def EngineExeStartTime(self, EngineExeStartTime):
|
|
69015
|
+
self._EngineExeStartTime = EngineExeStartTime
|
|
69016
|
+
|
|
69017
|
+
@property
|
|
69018
|
+
def EngineExeEndTime(self):
|
|
69019
|
+
"""Engine execution end time.
|
|
69020
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
69021
|
+
:rtype: str
|
|
69022
|
+
"""
|
|
69023
|
+
return self._EngineExeEndTime
|
|
69024
|
+
|
|
69025
|
+
@EngineExeEndTime.setter
|
|
69026
|
+
def EngineExeEndTime(self, EngineExeEndTime):
|
|
69027
|
+
self._EngineExeEndTime = EngineExeEndTime
|
|
69028
|
+
|
|
69029
|
+
@property
|
|
69030
|
+
def ProductSource(self):
|
|
69031
|
+
"""DATA source, such as DATA_INTEGRATION, DATA_EXPLORATION, DATA_QUALITY, OM_CENTER.
|
|
69032
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
69033
|
+
:rtype: str
|
|
69034
|
+
"""
|
|
69035
|
+
return self._ProductSource
|
|
69036
|
+
|
|
69037
|
+
@ProductSource.setter
|
|
69038
|
+
def ProductSource(self, ProductSource):
|
|
69039
|
+
self._ProductSource = ProductSource
|
|
69040
|
+
|
|
69041
|
+
|
|
69042
|
+
def _deserialize(self, params):
|
|
69043
|
+
self._AppID = params.get("AppID")
|
|
69044
|
+
self._ProjectId = params.get("ProjectId")
|
|
69045
|
+
self._TaskId = params.get("TaskId")
|
|
69046
|
+
self._TaskName = params.get("TaskName")
|
|
69047
|
+
self._TaskTypeId = params.get("TaskTypeId")
|
|
69048
|
+
self._OnwerUid = params.get("OnwerUid")
|
|
69049
|
+
self._InChargeId = params.get("InChargeId")
|
|
69050
|
+
self._InstanceId = params.get("InstanceId")
|
|
69051
|
+
self._JobId = params.get("JobId")
|
|
69052
|
+
self._EngineType = params.get("EngineType")
|
|
69053
|
+
self._EngineName = params.get("EngineName")
|
|
69054
|
+
self._EngineSubType = params.get("EngineSubType")
|
|
69055
|
+
self._EngineTaskId = params.get("EngineTaskId")
|
|
69056
|
+
self._EngineExeStatus = params.get("EngineExeStatus")
|
|
69057
|
+
self._EngineExeUser = params.get("EngineExeUser")
|
|
69058
|
+
self._EngineExeStartTime = params.get("EngineExeStartTime")
|
|
69059
|
+
self._EngineExeEndTime = params.get("EngineExeEndTime")
|
|
69060
|
+
self._ProductSource = params.get("ProductSource")
|
|
69061
|
+
memeber_set = set(params.keys())
|
|
69062
|
+
for name, value in vars(self).items():
|
|
69063
|
+
property_name = name[1:]
|
|
69064
|
+
if property_name in memeber_set:
|
|
69065
|
+
memeber_set.remove(property_name)
|
|
69066
|
+
if len(memeber_set) > 0:
|
|
69067
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
69068
|
+
|
|
69069
|
+
|
|
69070
|
+
|
|
67700
69071
|
class TaskInnerInfo(AbstractModel):
|
|
67701
69072
|
"""Task Attributes
|
|
67702
69073
|
|