tencentcloud-sdk-python 3.0.1127__py2.py3-none-any.whl → 3.0.1128__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/aiart/v20221229/aiart_client.py +4 -11
- tencentcloud/aiart/v20221229/models.py +6 -5
- tencentcloud/antiddos/v20200309/models.py +13 -0
- tencentcloud/cdb/v20170320/cdb_client.py +46 -0
- tencentcloud/cdb/v20170320/errorcodes.py +3 -0
- tencentcloud/cdb/v20170320/models.py +360 -0
- tencentcloud/es/v20180416/models.py +12 -12
- tencentcloud/faceid/v20180301/faceid_client.py +1 -1
- tencentcloud/faceid/v20180301/models.py +12 -0
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +8 -8
- tencentcloud/hunyuan/v20230901/models.py +121 -30
- tencentcloud/lke/__init__.py +0 -0
- tencentcloud/lke/v20231130/__init__.py +0 -0
- tencentcloud/lke/v20231130/errorcodes.py +30 -0
- tencentcloud/lke/v20231130/lke_client.py +1751 -0
- tencentcloud/lke/v20231130/models.py +13358 -0
- tencentcloud/mna/v20210119/errorcodes.py +12 -0
- tencentcloud/mna/v20210119/models.py +301 -5
- tencentcloud/redis/v20180412/models.py +1 -1
- tencentcloud/sms/v20210111/models.py +1 -0
- tencentcloud/tione/v20211111/models.py +48 -1
- tencentcloud/trtc/v20190722/models.py +72 -1
- tencentcloud/wedata/v20210820/models.py +345 -2088
- tencentcloud/wedata/v20210820/wedata_client.py +0 -253
- {tencentcloud_sdk_python-3.0.1127.dist-info → tencentcloud_sdk_python-3.0.1128.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1127.dist-info → tencentcloud_sdk_python-3.0.1128.dist-info}/RECORD +30 -25
- {tencentcloud_sdk_python-3.0.1127.dist-info → tencentcloud_sdk_python-3.0.1128.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1127.dist-info → tencentcloud_sdk_python-3.0.1128.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1127.dist-info → tencentcloud_sdk_python-3.0.1128.dist-info}/top_level.txt +0 -0
|
@@ -10855,136 +10855,6 @@ class CreateHiveTableResponse(AbstractModel):
|
|
|
10855
10855
|
self._RequestId = params.get("RequestId")
|
|
10856
10856
|
|
|
10857
10857
|
|
|
10858
|
-
class CreateInLongAgentRequest(AbstractModel):
|
|
10859
|
-
"""CreateInLongAgent请求参数结构体
|
|
10860
|
-
|
|
10861
|
-
"""
|
|
10862
|
-
|
|
10863
|
-
def __init__(self):
|
|
10864
|
-
r"""
|
|
10865
|
-
:param _AgentType: 采集器类型,1:TKE Agent,2:BOSS SDK,默认:1
|
|
10866
|
-
:type AgentType: int
|
|
10867
|
-
:param _AgentName: 采集器名称
|
|
10868
|
-
:type AgentName: str
|
|
10869
|
-
:param _ExecutorGroupId: 集成资源组id
|
|
10870
|
-
:type ExecutorGroupId: str
|
|
10871
|
-
:param _ProjectId: WeData项目ID
|
|
10872
|
-
:type ProjectId: str
|
|
10873
|
-
:param _TkeRegion: TKE集群的地域
|
|
10874
|
-
:type TkeRegion: str
|
|
10875
|
-
:param _ClusterId: 当AgentType为1时,必填。当AgentType为2时,不用填
|
|
10876
|
-
:type ClusterId: str
|
|
10877
|
-
"""
|
|
10878
|
-
self._AgentType = None
|
|
10879
|
-
self._AgentName = None
|
|
10880
|
-
self._ExecutorGroupId = None
|
|
10881
|
-
self._ProjectId = None
|
|
10882
|
-
self._TkeRegion = None
|
|
10883
|
-
self._ClusterId = None
|
|
10884
|
-
|
|
10885
|
-
@property
|
|
10886
|
-
def AgentType(self):
|
|
10887
|
-
return self._AgentType
|
|
10888
|
-
|
|
10889
|
-
@AgentType.setter
|
|
10890
|
-
def AgentType(self, AgentType):
|
|
10891
|
-
self._AgentType = AgentType
|
|
10892
|
-
|
|
10893
|
-
@property
|
|
10894
|
-
def AgentName(self):
|
|
10895
|
-
return self._AgentName
|
|
10896
|
-
|
|
10897
|
-
@AgentName.setter
|
|
10898
|
-
def AgentName(self, AgentName):
|
|
10899
|
-
self._AgentName = AgentName
|
|
10900
|
-
|
|
10901
|
-
@property
|
|
10902
|
-
def ExecutorGroupId(self):
|
|
10903
|
-
return self._ExecutorGroupId
|
|
10904
|
-
|
|
10905
|
-
@ExecutorGroupId.setter
|
|
10906
|
-
def ExecutorGroupId(self, ExecutorGroupId):
|
|
10907
|
-
self._ExecutorGroupId = ExecutorGroupId
|
|
10908
|
-
|
|
10909
|
-
@property
|
|
10910
|
-
def ProjectId(self):
|
|
10911
|
-
return self._ProjectId
|
|
10912
|
-
|
|
10913
|
-
@ProjectId.setter
|
|
10914
|
-
def ProjectId(self, ProjectId):
|
|
10915
|
-
self._ProjectId = ProjectId
|
|
10916
|
-
|
|
10917
|
-
@property
|
|
10918
|
-
def TkeRegion(self):
|
|
10919
|
-
return self._TkeRegion
|
|
10920
|
-
|
|
10921
|
-
@TkeRegion.setter
|
|
10922
|
-
def TkeRegion(self, TkeRegion):
|
|
10923
|
-
self._TkeRegion = TkeRegion
|
|
10924
|
-
|
|
10925
|
-
@property
|
|
10926
|
-
def ClusterId(self):
|
|
10927
|
-
return self._ClusterId
|
|
10928
|
-
|
|
10929
|
-
@ClusterId.setter
|
|
10930
|
-
def ClusterId(self, ClusterId):
|
|
10931
|
-
self._ClusterId = ClusterId
|
|
10932
|
-
|
|
10933
|
-
|
|
10934
|
-
def _deserialize(self, params):
|
|
10935
|
-
self._AgentType = params.get("AgentType")
|
|
10936
|
-
self._AgentName = params.get("AgentName")
|
|
10937
|
-
self._ExecutorGroupId = params.get("ExecutorGroupId")
|
|
10938
|
-
self._ProjectId = params.get("ProjectId")
|
|
10939
|
-
self._TkeRegion = params.get("TkeRegion")
|
|
10940
|
-
self._ClusterId = params.get("ClusterId")
|
|
10941
|
-
memeber_set = set(params.keys())
|
|
10942
|
-
for name, value in vars(self).items():
|
|
10943
|
-
property_name = name[1:]
|
|
10944
|
-
if property_name in memeber_set:
|
|
10945
|
-
memeber_set.remove(property_name)
|
|
10946
|
-
if len(memeber_set) > 0:
|
|
10947
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
10948
|
-
|
|
10949
|
-
|
|
10950
|
-
|
|
10951
|
-
class CreateInLongAgentResponse(AbstractModel):
|
|
10952
|
-
"""CreateInLongAgent返回参数结构体
|
|
10953
|
-
|
|
10954
|
-
"""
|
|
10955
|
-
|
|
10956
|
-
def __init__(self):
|
|
10957
|
-
r"""
|
|
10958
|
-
:param _AgentId: 采集器ID
|
|
10959
|
-
:type AgentId: str
|
|
10960
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10961
|
-
:type RequestId: str
|
|
10962
|
-
"""
|
|
10963
|
-
self._AgentId = None
|
|
10964
|
-
self._RequestId = None
|
|
10965
|
-
|
|
10966
|
-
@property
|
|
10967
|
-
def AgentId(self):
|
|
10968
|
-
return self._AgentId
|
|
10969
|
-
|
|
10970
|
-
@AgentId.setter
|
|
10971
|
-
def AgentId(self, AgentId):
|
|
10972
|
-
self._AgentId = AgentId
|
|
10973
|
-
|
|
10974
|
-
@property
|
|
10975
|
-
def RequestId(self):
|
|
10976
|
-
return self._RequestId
|
|
10977
|
-
|
|
10978
|
-
@RequestId.setter
|
|
10979
|
-
def RequestId(self, RequestId):
|
|
10980
|
-
self._RequestId = RequestId
|
|
10981
|
-
|
|
10982
|
-
|
|
10983
|
-
def _deserialize(self, params):
|
|
10984
|
-
self._AgentId = params.get("AgentId")
|
|
10985
|
-
self._RequestId = params.get("RequestId")
|
|
10986
|
-
|
|
10987
|
-
|
|
10988
10858
|
class CreateIntegrationNodeRequest(AbstractModel):
|
|
10989
10859
|
"""CreateIntegrationNode请求参数结构体
|
|
10990
10860
|
|
|
@@ -13030,53 +12900,6 @@ class CreateWorkflowResponse(AbstractModel):
|
|
|
13030
12900
|
self._RequestId = params.get("RequestId")
|
|
13031
12901
|
|
|
13032
12902
|
|
|
13033
|
-
class CvmAgentStatus(AbstractModel):
|
|
13034
|
-
"""采集器状态统计
|
|
13035
|
-
|
|
13036
|
-
"""
|
|
13037
|
-
|
|
13038
|
-
def __init__(self):
|
|
13039
|
-
r"""
|
|
13040
|
-
:param _Status: agent状态
|
|
13041
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
13042
|
-
:type Status: str
|
|
13043
|
-
:param _Count: 对应状态的agent总数
|
|
13044
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
13045
|
-
:type Count: int
|
|
13046
|
-
"""
|
|
13047
|
-
self._Status = None
|
|
13048
|
-
self._Count = None
|
|
13049
|
-
|
|
13050
|
-
@property
|
|
13051
|
-
def Status(self):
|
|
13052
|
-
return self._Status
|
|
13053
|
-
|
|
13054
|
-
@Status.setter
|
|
13055
|
-
def Status(self, Status):
|
|
13056
|
-
self._Status = Status
|
|
13057
|
-
|
|
13058
|
-
@property
|
|
13059
|
-
def Count(self):
|
|
13060
|
-
return self._Count
|
|
13061
|
-
|
|
13062
|
-
@Count.setter
|
|
13063
|
-
def Count(self, Count):
|
|
13064
|
-
self._Count = Count
|
|
13065
|
-
|
|
13066
|
-
|
|
13067
|
-
def _deserialize(self, params):
|
|
13068
|
-
self._Status = params.get("Status")
|
|
13069
|
-
self._Count = params.get("Count")
|
|
13070
|
-
memeber_set = set(params.keys())
|
|
13071
|
-
for name, value in vars(self).items():
|
|
13072
|
-
property_name = name[1:]
|
|
13073
|
-
if property_name in memeber_set:
|
|
13074
|
-
memeber_set.remove(property_name)
|
|
13075
|
-
if len(memeber_set) > 0:
|
|
13076
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
13077
|
-
|
|
13078
|
-
|
|
13079
|
-
|
|
13080
12903
|
class DagInstancesRequest(AbstractModel):
|
|
13081
12904
|
"""DagInstances请求参数结构体
|
|
13082
12905
|
|
|
@@ -15340,76 +15163,6 @@ class DeleteFolderResponse(AbstractModel):
|
|
|
15340
15163
|
self._RequestId = params.get("RequestId")
|
|
15341
15164
|
|
|
15342
15165
|
|
|
15343
|
-
class DeleteInLongAgentRequest(AbstractModel):
|
|
15344
|
-
"""DeleteInLongAgent请求参数结构体
|
|
15345
|
-
|
|
15346
|
-
"""
|
|
15347
|
-
|
|
15348
|
-
def __init__(self):
|
|
15349
|
-
r"""
|
|
15350
|
-
:param _AgentId: 采集器ID
|
|
15351
|
-
:type AgentId: str
|
|
15352
|
-
:param _ProjectId: WeData项目ID
|
|
15353
|
-
:type ProjectId: str
|
|
15354
|
-
"""
|
|
15355
|
-
self._AgentId = None
|
|
15356
|
-
self._ProjectId = None
|
|
15357
|
-
|
|
15358
|
-
@property
|
|
15359
|
-
def AgentId(self):
|
|
15360
|
-
return self._AgentId
|
|
15361
|
-
|
|
15362
|
-
@AgentId.setter
|
|
15363
|
-
def AgentId(self, AgentId):
|
|
15364
|
-
self._AgentId = AgentId
|
|
15365
|
-
|
|
15366
|
-
@property
|
|
15367
|
-
def ProjectId(self):
|
|
15368
|
-
return self._ProjectId
|
|
15369
|
-
|
|
15370
|
-
@ProjectId.setter
|
|
15371
|
-
def ProjectId(self, ProjectId):
|
|
15372
|
-
self._ProjectId = ProjectId
|
|
15373
|
-
|
|
15374
|
-
|
|
15375
|
-
def _deserialize(self, params):
|
|
15376
|
-
self._AgentId = params.get("AgentId")
|
|
15377
|
-
self._ProjectId = params.get("ProjectId")
|
|
15378
|
-
memeber_set = set(params.keys())
|
|
15379
|
-
for name, value in vars(self).items():
|
|
15380
|
-
property_name = name[1:]
|
|
15381
|
-
if property_name in memeber_set:
|
|
15382
|
-
memeber_set.remove(property_name)
|
|
15383
|
-
if len(memeber_set) > 0:
|
|
15384
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
15385
|
-
|
|
15386
|
-
|
|
15387
|
-
|
|
15388
|
-
class DeleteInLongAgentResponse(AbstractModel):
|
|
15389
|
-
"""DeleteInLongAgent返回参数结构体
|
|
15390
|
-
|
|
15391
|
-
"""
|
|
15392
|
-
|
|
15393
|
-
def __init__(self):
|
|
15394
|
-
r"""
|
|
15395
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
15396
|
-
:type RequestId: str
|
|
15397
|
-
"""
|
|
15398
|
-
self._RequestId = None
|
|
15399
|
-
|
|
15400
|
-
@property
|
|
15401
|
-
def RequestId(self):
|
|
15402
|
-
return self._RequestId
|
|
15403
|
-
|
|
15404
|
-
@RequestId.setter
|
|
15405
|
-
def RequestId(self, RequestId):
|
|
15406
|
-
self._RequestId = RequestId
|
|
15407
|
-
|
|
15408
|
-
|
|
15409
|
-
def _deserialize(self, params):
|
|
15410
|
-
self._RequestId = params.get("RequestId")
|
|
15411
|
-
|
|
15412
|
-
|
|
15413
15166
|
class DeleteIntegrationNodeRequest(AbstractModel):
|
|
15414
15167
|
"""DeleteIntegrationNode请求参数结构体
|
|
15415
15168
|
|
|
@@ -19551,93 +19304,6 @@ class DescribeBelongToResponse(AbstractModel):
|
|
|
19551
19304
|
self._RequestId = params.get("RequestId")
|
|
19552
19305
|
|
|
19553
19306
|
|
|
19554
|
-
class DescribeClusterNamespaceListRequest(AbstractModel):
|
|
19555
|
-
"""DescribeClusterNamespaceList请求参数结构体
|
|
19556
|
-
|
|
19557
|
-
"""
|
|
19558
|
-
|
|
19559
|
-
def __init__(self):
|
|
19560
|
-
r"""
|
|
19561
|
-
:param _ClusterId: 集群ID
|
|
19562
|
-
:type ClusterId: str
|
|
19563
|
-
:param _ProjectId: WeData项目ID
|
|
19564
|
-
:type ProjectId: str
|
|
19565
|
-
"""
|
|
19566
|
-
self._ClusterId = None
|
|
19567
|
-
self._ProjectId = None
|
|
19568
|
-
|
|
19569
|
-
@property
|
|
19570
|
-
def ClusterId(self):
|
|
19571
|
-
return self._ClusterId
|
|
19572
|
-
|
|
19573
|
-
@ClusterId.setter
|
|
19574
|
-
def ClusterId(self, ClusterId):
|
|
19575
|
-
self._ClusterId = ClusterId
|
|
19576
|
-
|
|
19577
|
-
@property
|
|
19578
|
-
def ProjectId(self):
|
|
19579
|
-
return self._ProjectId
|
|
19580
|
-
|
|
19581
|
-
@ProjectId.setter
|
|
19582
|
-
def ProjectId(self, ProjectId):
|
|
19583
|
-
self._ProjectId = ProjectId
|
|
19584
|
-
|
|
19585
|
-
|
|
19586
|
-
def _deserialize(self, params):
|
|
19587
|
-
self._ClusterId = params.get("ClusterId")
|
|
19588
|
-
self._ProjectId = params.get("ProjectId")
|
|
19589
|
-
memeber_set = set(params.keys())
|
|
19590
|
-
for name, value in vars(self).items():
|
|
19591
|
-
property_name = name[1:]
|
|
19592
|
-
if property_name in memeber_set:
|
|
19593
|
-
memeber_set.remove(property_name)
|
|
19594
|
-
if len(memeber_set) > 0:
|
|
19595
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
19596
|
-
|
|
19597
|
-
|
|
19598
|
-
|
|
19599
|
-
class DescribeClusterNamespaceListResponse(AbstractModel):
|
|
19600
|
-
"""DescribeClusterNamespaceList返回参数结构体
|
|
19601
|
-
|
|
19602
|
-
"""
|
|
19603
|
-
|
|
19604
|
-
def __init__(self):
|
|
19605
|
-
r"""
|
|
19606
|
-
:param _Namespaces: 命名空间
|
|
19607
|
-
:type Namespaces: list of Namespace
|
|
19608
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
19609
|
-
:type RequestId: str
|
|
19610
|
-
"""
|
|
19611
|
-
self._Namespaces = None
|
|
19612
|
-
self._RequestId = None
|
|
19613
|
-
|
|
19614
|
-
@property
|
|
19615
|
-
def Namespaces(self):
|
|
19616
|
-
return self._Namespaces
|
|
19617
|
-
|
|
19618
|
-
@Namespaces.setter
|
|
19619
|
-
def Namespaces(self, Namespaces):
|
|
19620
|
-
self._Namespaces = Namespaces
|
|
19621
|
-
|
|
19622
|
-
@property
|
|
19623
|
-
def RequestId(self):
|
|
19624
|
-
return self._RequestId
|
|
19625
|
-
|
|
19626
|
-
@RequestId.setter
|
|
19627
|
-
def RequestId(self, RequestId):
|
|
19628
|
-
self._RequestId = RequestId
|
|
19629
|
-
|
|
19630
|
-
|
|
19631
|
-
def _deserialize(self, params):
|
|
19632
|
-
if params.get("Namespaces") is not None:
|
|
19633
|
-
self._Namespaces = []
|
|
19634
|
-
for item in params.get("Namespaces"):
|
|
19635
|
-
obj = Namespace()
|
|
19636
|
-
obj._deserialize(item)
|
|
19637
|
-
self._Namespaces.append(obj)
|
|
19638
|
-
self._RequestId = params.get("RequestId")
|
|
19639
|
-
|
|
19640
|
-
|
|
19641
19307
|
class DescribeColumnLineageRequest(AbstractModel):
|
|
19642
19308
|
"""DescribeColumnLineage请求参数结构体
|
|
19643
19309
|
|
|
@@ -24193,604 +23859,6 @@ class DescribeFunctionTypesResponse(AbstractModel):
|
|
|
24193
23859
|
self._RequestId = params.get("RequestId")
|
|
24194
23860
|
|
|
24195
23861
|
|
|
24196
|
-
class DescribeInLongAgentListRequest(AbstractModel):
|
|
24197
|
-
"""DescribeInLongAgentList请求参数结构体
|
|
24198
|
-
|
|
24199
|
-
"""
|
|
24200
|
-
|
|
24201
|
-
def __init__(self):
|
|
24202
|
-
r"""
|
|
24203
|
-
:param _ProjectId: WeData项目ID
|
|
24204
|
-
:type ProjectId: str
|
|
24205
|
-
:param _AgentId: 采集器ID
|
|
24206
|
-
:type AgentId: str
|
|
24207
|
-
:param _AgentName: Agent Name
|
|
24208
|
-
:type AgentName: str
|
|
24209
|
-
:param _AgentType: 集群类型,1:TKE Agent,2:BOSS SDK,默认:1,3:CVM,4:自建服务器 【传多个用逗号分割】
|
|
24210
|
-
:type AgentType: int
|
|
24211
|
-
:param _Status: Agent状态(running运行中,initializing 操作中,failed心跳异常)
|
|
24212
|
-
:type Status: str
|
|
24213
|
-
:param _VpcId: Vpc Id
|
|
24214
|
-
:type VpcId: str
|
|
24215
|
-
:param _PageIndex: 分页页码,从1开始,默认:1
|
|
24216
|
-
:type PageIndex: int
|
|
24217
|
-
:param _PageSize: 分页每页记录数,默认10
|
|
24218
|
-
:type PageSize: int
|
|
24219
|
-
:param _Like: 名称搜索是否开启模糊匹配,1:开启,0:不开启(精确匹配)
|
|
24220
|
-
:type Like: int
|
|
24221
|
-
:param _AgentTypes: agent类型【多个用逗号分隔】
|
|
24222
|
-
:type AgentTypes: str
|
|
24223
|
-
"""
|
|
24224
|
-
self._ProjectId = None
|
|
24225
|
-
self._AgentId = None
|
|
24226
|
-
self._AgentName = None
|
|
24227
|
-
self._AgentType = None
|
|
24228
|
-
self._Status = None
|
|
24229
|
-
self._VpcId = None
|
|
24230
|
-
self._PageIndex = None
|
|
24231
|
-
self._PageSize = None
|
|
24232
|
-
self._Like = None
|
|
24233
|
-
self._AgentTypes = None
|
|
24234
|
-
|
|
24235
|
-
@property
|
|
24236
|
-
def ProjectId(self):
|
|
24237
|
-
return self._ProjectId
|
|
24238
|
-
|
|
24239
|
-
@ProjectId.setter
|
|
24240
|
-
def ProjectId(self, ProjectId):
|
|
24241
|
-
self._ProjectId = ProjectId
|
|
24242
|
-
|
|
24243
|
-
@property
|
|
24244
|
-
def AgentId(self):
|
|
24245
|
-
return self._AgentId
|
|
24246
|
-
|
|
24247
|
-
@AgentId.setter
|
|
24248
|
-
def AgentId(self, AgentId):
|
|
24249
|
-
self._AgentId = AgentId
|
|
24250
|
-
|
|
24251
|
-
@property
|
|
24252
|
-
def AgentName(self):
|
|
24253
|
-
return self._AgentName
|
|
24254
|
-
|
|
24255
|
-
@AgentName.setter
|
|
24256
|
-
def AgentName(self, AgentName):
|
|
24257
|
-
self._AgentName = AgentName
|
|
24258
|
-
|
|
24259
|
-
@property
|
|
24260
|
-
def AgentType(self):
|
|
24261
|
-
return self._AgentType
|
|
24262
|
-
|
|
24263
|
-
@AgentType.setter
|
|
24264
|
-
def AgentType(self, AgentType):
|
|
24265
|
-
self._AgentType = AgentType
|
|
24266
|
-
|
|
24267
|
-
@property
|
|
24268
|
-
def Status(self):
|
|
24269
|
-
return self._Status
|
|
24270
|
-
|
|
24271
|
-
@Status.setter
|
|
24272
|
-
def Status(self, Status):
|
|
24273
|
-
self._Status = Status
|
|
24274
|
-
|
|
24275
|
-
@property
|
|
24276
|
-
def VpcId(self):
|
|
24277
|
-
return self._VpcId
|
|
24278
|
-
|
|
24279
|
-
@VpcId.setter
|
|
24280
|
-
def VpcId(self, VpcId):
|
|
24281
|
-
self._VpcId = VpcId
|
|
24282
|
-
|
|
24283
|
-
@property
|
|
24284
|
-
def PageIndex(self):
|
|
24285
|
-
return self._PageIndex
|
|
24286
|
-
|
|
24287
|
-
@PageIndex.setter
|
|
24288
|
-
def PageIndex(self, PageIndex):
|
|
24289
|
-
self._PageIndex = PageIndex
|
|
24290
|
-
|
|
24291
|
-
@property
|
|
24292
|
-
def PageSize(self):
|
|
24293
|
-
return self._PageSize
|
|
24294
|
-
|
|
24295
|
-
@PageSize.setter
|
|
24296
|
-
def PageSize(self, PageSize):
|
|
24297
|
-
self._PageSize = PageSize
|
|
24298
|
-
|
|
24299
|
-
@property
|
|
24300
|
-
def Like(self):
|
|
24301
|
-
return self._Like
|
|
24302
|
-
|
|
24303
|
-
@Like.setter
|
|
24304
|
-
def Like(self, Like):
|
|
24305
|
-
self._Like = Like
|
|
24306
|
-
|
|
24307
|
-
@property
|
|
24308
|
-
def AgentTypes(self):
|
|
24309
|
-
return self._AgentTypes
|
|
24310
|
-
|
|
24311
|
-
@AgentTypes.setter
|
|
24312
|
-
def AgentTypes(self, AgentTypes):
|
|
24313
|
-
self._AgentTypes = AgentTypes
|
|
24314
|
-
|
|
24315
|
-
|
|
24316
|
-
def _deserialize(self, params):
|
|
24317
|
-
self._ProjectId = params.get("ProjectId")
|
|
24318
|
-
self._AgentId = params.get("AgentId")
|
|
24319
|
-
self._AgentName = params.get("AgentName")
|
|
24320
|
-
self._AgentType = params.get("AgentType")
|
|
24321
|
-
self._Status = params.get("Status")
|
|
24322
|
-
self._VpcId = params.get("VpcId")
|
|
24323
|
-
self._PageIndex = params.get("PageIndex")
|
|
24324
|
-
self._PageSize = params.get("PageSize")
|
|
24325
|
-
self._Like = params.get("Like")
|
|
24326
|
-
self._AgentTypes = params.get("AgentTypes")
|
|
24327
|
-
memeber_set = set(params.keys())
|
|
24328
|
-
for name, value in vars(self).items():
|
|
24329
|
-
property_name = name[1:]
|
|
24330
|
-
if property_name in memeber_set:
|
|
24331
|
-
memeber_set.remove(property_name)
|
|
24332
|
-
if len(memeber_set) > 0:
|
|
24333
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
24334
|
-
|
|
24335
|
-
|
|
24336
|
-
|
|
24337
|
-
class DescribeInLongAgentListResponse(AbstractModel):
|
|
24338
|
-
"""DescribeInLongAgentList返回参数结构体
|
|
24339
|
-
|
|
24340
|
-
"""
|
|
24341
|
-
|
|
24342
|
-
def __init__(self):
|
|
24343
|
-
r"""
|
|
24344
|
-
:param _Items: 采集器信息列表
|
|
24345
|
-
:type Items: list of InLongAgentDetail
|
|
24346
|
-
:param _PageIndex: 页码
|
|
24347
|
-
:type PageIndex: int
|
|
24348
|
-
:param _PageSize: 每页记录数
|
|
24349
|
-
:type PageSize: int
|
|
24350
|
-
:param _TotalCount: 总记录数
|
|
24351
|
-
:type TotalCount: int
|
|
24352
|
-
:param _TotalPage: 总页数
|
|
24353
|
-
:type TotalPage: int
|
|
24354
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
24355
|
-
:type RequestId: str
|
|
24356
|
-
"""
|
|
24357
|
-
self._Items = None
|
|
24358
|
-
self._PageIndex = None
|
|
24359
|
-
self._PageSize = None
|
|
24360
|
-
self._TotalCount = None
|
|
24361
|
-
self._TotalPage = None
|
|
24362
|
-
self._RequestId = None
|
|
24363
|
-
|
|
24364
|
-
@property
|
|
24365
|
-
def Items(self):
|
|
24366
|
-
return self._Items
|
|
24367
|
-
|
|
24368
|
-
@Items.setter
|
|
24369
|
-
def Items(self, Items):
|
|
24370
|
-
self._Items = Items
|
|
24371
|
-
|
|
24372
|
-
@property
|
|
24373
|
-
def PageIndex(self):
|
|
24374
|
-
return self._PageIndex
|
|
24375
|
-
|
|
24376
|
-
@PageIndex.setter
|
|
24377
|
-
def PageIndex(self, PageIndex):
|
|
24378
|
-
self._PageIndex = PageIndex
|
|
24379
|
-
|
|
24380
|
-
@property
|
|
24381
|
-
def PageSize(self):
|
|
24382
|
-
return self._PageSize
|
|
24383
|
-
|
|
24384
|
-
@PageSize.setter
|
|
24385
|
-
def PageSize(self, PageSize):
|
|
24386
|
-
self._PageSize = PageSize
|
|
24387
|
-
|
|
24388
|
-
@property
|
|
24389
|
-
def TotalCount(self):
|
|
24390
|
-
return self._TotalCount
|
|
24391
|
-
|
|
24392
|
-
@TotalCount.setter
|
|
24393
|
-
def TotalCount(self, TotalCount):
|
|
24394
|
-
self._TotalCount = TotalCount
|
|
24395
|
-
|
|
24396
|
-
@property
|
|
24397
|
-
def TotalPage(self):
|
|
24398
|
-
return self._TotalPage
|
|
24399
|
-
|
|
24400
|
-
@TotalPage.setter
|
|
24401
|
-
def TotalPage(self, TotalPage):
|
|
24402
|
-
self._TotalPage = TotalPage
|
|
24403
|
-
|
|
24404
|
-
@property
|
|
24405
|
-
def RequestId(self):
|
|
24406
|
-
return self._RequestId
|
|
24407
|
-
|
|
24408
|
-
@RequestId.setter
|
|
24409
|
-
def RequestId(self, RequestId):
|
|
24410
|
-
self._RequestId = RequestId
|
|
24411
|
-
|
|
24412
|
-
|
|
24413
|
-
def _deserialize(self, params):
|
|
24414
|
-
if params.get("Items") is not None:
|
|
24415
|
-
self._Items = []
|
|
24416
|
-
for item in params.get("Items"):
|
|
24417
|
-
obj = InLongAgentDetail()
|
|
24418
|
-
obj._deserialize(item)
|
|
24419
|
-
self._Items.append(obj)
|
|
24420
|
-
self._PageIndex = params.get("PageIndex")
|
|
24421
|
-
self._PageSize = params.get("PageSize")
|
|
24422
|
-
self._TotalCount = params.get("TotalCount")
|
|
24423
|
-
self._TotalPage = params.get("TotalPage")
|
|
24424
|
-
self._RequestId = params.get("RequestId")
|
|
24425
|
-
|
|
24426
|
-
|
|
24427
|
-
class DescribeInLongAgentTaskListRequest(AbstractModel):
|
|
24428
|
-
"""DescribeInLongAgentTaskList请求参数结构体
|
|
24429
|
-
|
|
24430
|
-
"""
|
|
24431
|
-
|
|
24432
|
-
def __init__(self):
|
|
24433
|
-
r"""
|
|
24434
|
-
:param _AgentId: 采集器ID
|
|
24435
|
-
:type AgentId: str
|
|
24436
|
-
:param _ProjectId: WeData项目ID
|
|
24437
|
-
:type ProjectId: str
|
|
24438
|
-
"""
|
|
24439
|
-
self._AgentId = None
|
|
24440
|
-
self._ProjectId = None
|
|
24441
|
-
|
|
24442
|
-
@property
|
|
24443
|
-
def AgentId(self):
|
|
24444
|
-
return self._AgentId
|
|
24445
|
-
|
|
24446
|
-
@AgentId.setter
|
|
24447
|
-
def AgentId(self, AgentId):
|
|
24448
|
-
self._AgentId = AgentId
|
|
24449
|
-
|
|
24450
|
-
@property
|
|
24451
|
-
def ProjectId(self):
|
|
24452
|
-
return self._ProjectId
|
|
24453
|
-
|
|
24454
|
-
@ProjectId.setter
|
|
24455
|
-
def ProjectId(self, ProjectId):
|
|
24456
|
-
self._ProjectId = ProjectId
|
|
24457
|
-
|
|
24458
|
-
|
|
24459
|
-
def _deserialize(self, params):
|
|
24460
|
-
self._AgentId = params.get("AgentId")
|
|
24461
|
-
self._ProjectId = params.get("ProjectId")
|
|
24462
|
-
memeber_set = set(params.keys())
|
|
24463
|
-
for name, value in vars(self).items():
|
|
24464
|
-
property_name = name[1:]
|
|
24465
|
-
if property_name in memeber_set:
|
|
24466
|
-
memeber_set.remove(property_name)
|
|
24467
|
-
if len(memeber_set) > 0:
|
|
24468
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
24469
|
-
|
|
24470
|
-
|
|
24471
|
-
|
|
24472
|
-
class DescribeInLongAgentTaskListResponse(AbstractModel):
|
|
24473
|
-
"""DescribeInLongAgentTaskList返回参数结构体
|
|
24474
|
-
|
|
24475
|
-
"""
|
|
24476
|
-
|
|
24477
|
-
def __init__(self):
|
|
24478
|
-
r"""
|
|
24479
|
-
:param _Items: 采集器关联的集成任务列表
|
|
24480
|
-
:type Items: list of InLongAgentTask
|
|
24481
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
24482
|
-
:type RequestId: str
|
|
24483
|
-
"""
|
|
24484
|
-
self._Items = None
|
|
24485
|
-
self._RequestId = None
|
|
24486
|
-
|
|
24487
|
-
@property
|
|
24488
|
-
def Items(self):
|
|
24489
|
-
return self._Items
|
|
24490
|
-
|
|
24491
|
-
@Items.setter
|
|
24492
|
-
def Items(self, Items):
|
|
24493
|
-
self._Items = Items
|
|
24494
|
-
|
|
24495
|
-
@property
|
|
24496
|
-
def RequestId(self):
|
|
24497
|
-
return self._RequestId
|
|
24498
|
-
|
|
24499
|
-
@RequestId.setter
|
|
24500
|
-
def RequestId(self, RequestId):
|
|
24501
|
-
self._RequestId = RequestId
|
|
24502
|
-
|
|
24503
|
-
|
|
24504
|
-
def _deserialize(self, params):
|
|
24505
|
-
if params.get("Items") is not None:
|
|
24506
|
-
self._Items = []
|
|
24507
|
-
for item in params.get("Items"):
|
|
24508
|
-
obj = InLongAgentTask()
|
|
24509
|
-
obj._deserialize(item)
|
|
24510
|
-
self._Items.append(obj)
|
|
24511
|
-
self._RequestId = params.get("RequestId")
|
|
24512
|
-
|
|
24513
|
-
|
|
24514
|
-
class DescribeInLongAgentVpcListRequest(AbstractModel):
|
|
24515
|
-
"""DescribeInLongAgentVpcList请求参数结构体
|
|
24516
|
-
|
|
24517
|
-
"""
|
|
24518
|
-
|
|
24519
|
-
def __init__(self):
|
|
24520
|
-
r"""
|
|
24521
|
-
:param _ProjectId: WeData项目ID
|
|
24522
|
-
:type ProjectId: str
|
|
24523
|
-
"""
|
|
24524
|
-
self._ProjectId = None
|
|
24525
|
-
|
|
24526
|
-
@property
|
|
24527
|
-
def ProjectId(self):
|
|
24528
|
-
return self._ProjectId
|
|
24529
|
-
|
|
24530
|
-
@ProjectId.setter
|
|
24531
|
-
def ProjectId(self, ProjectId):
|
|
24532
|
-
self._ProjectId = ProjectId
|
|
24533
|
-
|
|
24534
|
-
|
|
24535
|
-
def _deserialize(self, params):
|
|
24536
|
-
self._ProjectId = params.get("ProjectId")
|
|
24537
|
-
memeber_set = set(params.keys())
|
|
24538
|
-
for name, value in vars(self).items():
|
|
24539
|
-
property_name = name[1:]
|
|
24540
|
-
if property_name in memeber_set:
|
|
24541
|
-
memeber_set.remove(property_name)
|
|
24542
|
-
if len(memeber_set) > 0:
|
|
24543
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
24544
|
-
|
|
24545
|
-
|
|
24546
|
-
|
|
24547
|
-
class DescribeInLongAgentVpcListResponse(AbstractModel):
|
|
24548
|
-
"""DescribeInLongAgentVpcList返回参数结构体
|
|
24549
|
-
|
|
24550
|
-
"""
|
|
24551
|
-
|
|
24552
|
-
def __init__(self):
|
|
24553
|
-
r"""
|
|
24554
|
-
:param _VpcList: VPC列表
|
|
24555
|
-
:type VpcList: list of str
|
|
24556
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
24557
|
-
:type RequestId: str
|
|
24558
|
-
"""
|
|
24559
|
-
self._VpcList = None
|
|
24560
|
-
self._RequestId = None
|
|
24561
|
-
|
|
24562
|
-
@property
|
|
24563
|
-
def VpcList(self):
|
|
24564
|
-
return self._VpcList
|
|
24565
|
-
|
|
24566
|
-
@VpcList.setter
|
|
24567
|
-
def VpcList(self, VpcList):
|
|
24568
|
-
self._VpcList = VpcList
|
|
24569
|
-
|
|
24570
|
-
@property
|
|
24571
|
-
def RequestId(self):
|
|
24572
|
-
return self._RequestId
|
|
24573
|
-
|
|
24574
|
-
@RequestId.setter
|
|
24575
|
-
def RequestId(self, RequestId):
|
|
24576
|
-
self._RequestId = RequestId
|
|
24577
|
-
|
|
24578
|
-
|
|
24579
|
-
def _deserialize(self, params):
|
|
24580
|
-
self._VpcList = params.get("VpcList")
|
|
24581
|
-
self._RequestId = params.get("RequestId")
|
|
24582
|
-
|
|
24583
|
-
|
|
24584
|
-
class DescribeInLongTkeClusterListRequest(AbstractModel):
|
|
24585
|
-
"""DescribeInLongTkeClusterList请求参数结构体
|
|
24586
|
-
|
|
24587
|
-
"""
|
|
24588
|
-
|
|
24589
|
-
def __init__(self):
|
|
24590
|
-
r"""
|
|
24591
|
-
:param _ProjectId: WeData项目ID
|
|
24592
|
-
:type ProjectId: str
|
|
24593
|
-
:param _TkeRegion: TKE集群地域
|
|
24594
|
-
:type TkeRegion: str
|
|
24595
|
-
:param _ClusterName: 集群名称。
|
|
24596
|
-
多个名称用逗号连接。
|
|
24597
|
-
:type ClusterName: str
|
|
24598
|
-
:param _Status: TKE集群状态 (Running 运行中 Creating 创建中 Idling 闲置中 Abnormal 异常 Failed 失败 Deleting 删除中 Scaling 规模调整中 Upgrading 升级中 Isolated 欠费隔离中 NodeUpgrading 节点升级中 Recovering 唤醒中 Activating 激活中 MasterScaling Master扩缩容中 Waiting 等待注册 ClusterLevelUpgrading 调整规格中 ResourceIsolate 隔离中 ResourceIsolated 已隔离 ResourceReverse 冲正中 Trading 集群开通中 ResourceReversal 集群冲正 ClusterLevelTrading 集群变配交易中)
|
|
24599
|
-
多个状态用逗号连接。
|
|
24600
|
-
:type Status: str
|
|
24601
|
-
:param _HasAgent: 是否安装Agent,true: 是,false: 否
|
|
24602
|
-
:type HasAgent: bool
|
|
24603
|
-
:param _ClusterType: 集群类型,托管集群:MANAGED_CLUSTER,独立集群:INDEPENDENT_CLUSTER。
|
|
24604
|
-
多个集群用逗号连接。
|
|
24605
|
-
:type ClusterType: str
|
|
24606
|
-
:param _PageIndex: 分页页码,从1开始,默认:1
|
|
24607
|
-
:type PageIndex: int
|
|
24608
|
-
:param _PageSize: 分页每页记录数,默认10
|
|
24609
|
-
:type PageSize: int
|
|
24610
|
-
"""
|
|
24611
|
-
self._ProjectId = None
|
|
24612
|
-
self._TkeRegion = None
|
|
24613
|
-
self._ClusterName = None
|
|
24614
|
-
self._Status = None
|
|
24615
|
-
self._HasAgent = None
|
|
24616
|
-
self._ClusterType = None
|
|
24617
|
-
self._PageIndex = None
|
|
24618
|
-
self._PageSize = None
|
|
24619
|
-
|
|
24620
|
-
@property
|
|
24621
|
-
def ProjectId(self):
|
|
24622
|
-
return self._ProjectId
|
|
24623
|
-
|
|
24624
|
-
@ProjectId.setter
|
|
24625
|
-
def ProjectId(self, ProjectId):
|
|
24626
|
-
self._ProjectId = ProjectId
|
|
24627
|
-
|
|
24628
|
-
@property
|
|
24629
|
-
def TkeRegion(self):
|
|
24630
|
-
return self._TkeRegion
|
|
24631
|
-
|
|
24632
|
-
@TkeRegion.setter
|
|
24633
|
-
def TkeRegion(self, TkeRegion):
|
|
24634
|
-
self._TkeRegion = TkeRegion
|
|
24635
|
-
|
|
24636
|
-
@property
|
|
24637
|
-
def ClusterName(self):
|
|
24638
|
-
return self._ClusterName
|
|
24639
|
-
|
|
24640
|
-
@ClusterName.setter
|
|
24641
|
-
def ClusterName(self, ClusterName):
|
|
24642
|
-
self._ClusterName = ClusterName
|
|
24643
|
-
|
|
24644
|
-
@property
|
|
24645
|
-
def Status(self):
|
|
24646
|
-
return self._Status
|
|
24647
|
-
|
|
24648
|
-
@Status.setter
|
|
24649
|
-
def Status(self, Status):
|
|
24650
|
-
self._Status = Status
|
|
24651
|
-
|
|
24652
|
-
@property
|
|
24653
|
-
def HasAgent(self):
|
|
24654
|
-
return self._HasAgent
|
|
24655
|
-
|
|
24656
|
-
@HasAgent.setter
|
|
24657
|
-
def HasAgent(self, HasAgent):
|
|
24658
|
-
self._HasAgent = HasAgent
|
|
24659
|
-
|
|
24660
|
-
@property
|
|
24661
|
-
def ClusterType(self):
|
|
24662
|
-
return self._ClusterType
|
|
24663
|
-
|
|
24664
|
-
@ClusterType.setter
|
|
24665
|
-
def ClusterType(self, ClusterType):
|
|
24666
|
-
self._ClusterType = ClusterType
|
|
24667
|
-
|
|
24668
|
-
@property
|
|
24669
|
-
def PageIndex(self):
|
|
24670
|
-
return self._PageIndex
|
|
24671
|
-
|
|
24672
|
-
@PageIndex.setter
|
|
24673
|
-
def PageIndex(self, PageIndex):
|
|
24674
|
-
self._PageIndex = PageIndex
|
|
24675
|
-
|
|
24676
|
-
@property
|
|
24677
|
-
def PageSize(self):
|
|
24678
|
-
return self._PageSize
|
|
24679
|
-
|
|
24680
|
-
@PageSize.setter
|
|
24681
|
-
def PageSize(self, PageSize):
|
|
24682
|
-
self._PageSize = PageSize
|
|
24683
|
-
|
|
24684
|
-
|
|
24685
|
-
def _deserialize(self, params):
|
|
24686
|
-
self._ProjectId = params.get("ProjectId")
|
|
24687
|
-
self._TkeRegion = params.get("TkeRegion")
|
|
24688
|
-
self._ClusterName = params.get("ClusterName")
|
|
24689
|
-
self._Status = params.get("Status")
|
|
24690
|
-
self._HasAgent = params.get("HasAgent")
|
|
24691
|
-
self._ClusterType = params.get("ClusterType")
|
|
24692
|
-
self._PageIndex = params.get("PageIndex")
|
|
24693
|
-
self._PageSize = params.get("PageSize")
|
|
24694
|
-
memeber_set = set(params.keys())
|
|
24695
|
-
for name, value in vars(self).items():
|
|
24696
|
-
property_name = name[1:]
|
|
24697
|
-
if property_name in memeber_set:
|
|
24698
|
-
memeber_set.remove(property_name)
|
|
24699
|
-
if len(memeber_set) > 0:
|
|
24700
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
24701
|
-
|
|
24702
|
-
|
|
24703
|
-
|
|
24704
|
-
class DescribeInLongTkeClusterListResponse(AbstractModel):
|
|
24705
|
-
"""DescribeInLongTkeClusterList返回参数结构体
|
|
24706
|
-
|
|
24707
|
-
"""
|
|
24708
|
-
|
|
24709
|
-
def __init__(self):
|
|
24710
|
-
r"""
|
|
24711
|
-
:param _Items: TKE集群信息
|
|
24712
|
-
:type Items: list of InLongTkeDetail
|
|
24713
|
-
:param _PageIndex: 页码
|
|
24714
|
-
:type PageIndex: int
|
|
24715
|
-
:param _PageSize: 每页记录数
|
|
24716
|
-
:type PageSize: int
|
|
24717
|
-
:param _TotalCount: 总记录数
|
|
24718
|
-
:type TotalCount: int
|
|
24719
|
-
:param _TotalPage: 总页数
|
|
24720
|
-
:type TotalPage: int
|
|
24721
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
24722
|
-
:type RequestId: str
|
|
24723
|
-
"""
|
|
24724
|
-
self._Items = None
|
|
24725
|
-
self._PageIndex = None
|
|
24726
|
-
self._PageSize = None
|
|
24727
|
-
self._TotalCount = None
|
|
24728
|
-
self._TotalPage = None
|
|
24729
|
-
self._RequestId = None
|
|
24730
|
-
|
|
24731
|
-
@property
|
|
24732
|
-
def Items(self):
|
|
24733
|
-
return self._Items
|
|
24734
|
-
|
|
24735
|
-
@Items.setter
|
|
24736
|
-
def Items(self, Items):
|
|
24737
|
-
self._Items = Items
|
|
24738
|
-
|
|
24739
|
-
@property
|
|
24740
|
-
def PageIndex(self):
|
|
24741
|
-
return self._PageIndex
|
|
24742
|
-
|
|
24743
|
-
@PageIndex.setter
|
|
24744
|
-
def PageIndex(self, PageIndex):
|
|
24745
|
-
self._PageIndex = PageIndex
|
|
24746
|
-
|
|
24747
|
-
@property
|
|
24748
|
-
def PageSize(self):
|
|
24749
|
-
return self._PageSize
|
|
24750
|
-
|
|
24751
|
-
@PageSize.setter
|
|
24752
|
-
def PageSize(self, PageSize):
|
|
24753
|
-
self._PageSize = PageSize
|
|
24754
|
-
|
|
24755
|
-
@property
|
|
24756
|
-
def TotalCount(self):
|
|
24757
|
-
return self._TotalCount
|
|
24758
|
-
|
|
24759
|
-
@TotalCount.setter
|
|
24760
|
-
def TotalCount(self, TotalCount):
|
|
24761
|
-
self._TotalCount = TotalCount
|
|
24762
|
-
|
|
24763
|
-
@property
|
|
24764
|
-
def TotalPage(self):
|
|
24765
|
-
return self._TotalPage
|
|
24766
|
-
|
|
24767
|
-
@TotalPage.setter
|
|
24768
|
-
def TotalPage(self, TotalPage):
|
|
24769
|
-
self._TotalPage = TotalPage
|
|
24770
|
-
|
|
24771
|
-
@property
|
|
24772
|
-
def RequestId(self):
|
|
24773
|
-
return self._RequestId
|
|
24774
|
-
|
|
24775
|
-
@RequestId.setter
|
|
24776
|
-
def RequestId(self, RequestId):
|
|
24777
|
-
self._RequestId = RequestId
|
|
24778
|
-
|
|
24779
|
-
|
|
24780
|
-
def _deserialize(self, params):
|
|
24781
|
-
if params.get("Items") is not None:
|
|
24782
|
-
self._Items = []
|
|
24783
|
-
for item in params.get("Items"):
|
|
24784
|
-
obj = InLongTkeDetail()
|
|
24785
|
-
obj._deserialize(item)
|
|
24786
|
-
self._Items.append(obj)
|
|
24787
|
-
self._PageIndex = params.get("PageIndex")
|
|
24788
|
-
self._PageSize = params.get("PageSize")
|
|
24789
|
-
self._TotalCount = params.get("TotalCount")
|
|
24790
|
-
self._TotalPage = params.get("TotalPage")
|
|
24791
|
-
self._RequestId = params.get("RequestId")
|
|
24792
|
-
|
|
24793
|
-
|
|
24794
23862
|
class DescribeInstanceByCycleReportRequest(AbstractModel):
|
|
24795
23863
|
"""DescribeInstanceByCycleReport请求参数结构体
|
|
24796
23864
|
|
|
@@ -26163,152 +25231,35 @@ class DescribeInstancesInfoWithTaskInfoResponse(AbstractModel):
|
|
|
26163
25231
|
|
|
26164
25232
|
|
|
26165
25233
|
def _deserialize(self, params):
|
|
26166
|
-
if params.get("Data") is not None:
|
|
26167
|
-
self._Data = []
|
|
26168
|
-
for item in params.get("Data"):
|
|
26169
|
-
obj = InstanceOpsDto()
|
|
26170
|
-
obj._deserialize(item)
|
|
26171
|
-
self._Data.append(obj)
|
|
26172
|
-
self._RequestId = params.get("RequestId")
|
|
26173
|
-
|
|
26174
|
-
|
|
26175
|
-
class DescribeInstancesRequest(AbstractModel):
|
|
26176
|
-
"""DescribeInstances请求参数结构体
|
|
26177
|
-
|
|
26178
|
-
"""
|
|
26179
|
-
|
|
26180
|
-
def __init__(self):
|
|
26181
|
-
r"""
|
|
26182
|
-
:param _ProjectId: 项目id
|
|
26183
|
-
:type ProjectId: str
|
|
26184
|
-
:param _PageNumber: 页数:默认1
|
|
26185
|
-
:type PageNumber: int
|
|
26186
|
-
:param _PageSize: 分页大小,默认最小10
|
|
26187
|
-
:type PageSize: int
|
|
26188
|
-
:param _Filters: 过滤条件
|
|
26189
|
-
:type Filters: list of Filter
|
|
26190
|
-
"""
|
|
26191
|
-
self._ProjectId = None
|
|
26192
|
-
self._PageNumber = None
|
|
26193
|
-
self._PageSize = None
|
|
26194
|
-
self._Filters = None
|
|
26195
|
-
|
|
26196
|
-
@property
|
|
26197
|
-
def ProjectId(self):
|
|
26198
|
-
return self._ProjectId
|
|
26199
|
-
|
|
26200
|
-
@ProjectId.setter
|
|
26201
|
-
def ProjectId(self, ProjectId):
|
|
26202
|
-
self._ProjectId = ProjectId
|
|
26203
|
-
|
|
26204
|
-
@property
|
|
26205
|
-
def PageNumber(self):
|
|
26206
|
-
return self._PageNumber
|
|
26207
|
-
|
|
26208
|
-
@PageNumber.setter
|
|
26209
|
-
def PageNumber(self, PageNumber):
|
|
26210
|
-
self._PageNumber = PageNumber
|
|
26211
|
-
|
|
26212
|
-
@property
|
|
26213
|
-
def PageSize(self):
|
|
26214
|
-
return self._PageSize
|
|
26215
|
-
|
|
26216
|
-
@PageSize.setter
|
|
26217
|
-
def PageSize(self, PageSize):
|
|
26218
|
-
self._PageSize = PageSize
|
|
26219
|
-
|
|
26220
|
-
@property
|
|
26221
|
-
def Filters(self):
|
|
26222
|
-
return self._Filters
|
|
26223
|
-
|
|
26224
|
-
@Filters.setter
|
|
26225
|
-
def Filters(self, Filters):
|
|
26226
|
-
self._Filters = Filters
|
|
26227
|
-
|
|
26228
|
-
|
|
26229
|
-
def _deserialize(self, params):
|
|
26230
|
-
self._ProjectId = params.get("ProjectId")
|
|
26231
|
-
self._PageNumber = params.get("PageNumber")
|
|
26232
|
-
self._PageSize = params.get("PageSize")
|
|
26233
|
-
if params.get("Filters") is not None:
|
|
26234
|
-
self._Filters = []
|
|
26235
|
-
for item in params.get("Filters"):
|
|
26236
|
-
obj = Filter()
|
|
26237
|
-
obj._deserialize(item)
|
|
26238
|
-
self._Filters.append(obj)
|
|
26239
|
-
memeber_set = set(params.keys())
|
|
26240
|
-
for name, value in vars(self).items():
|
|
26241
|
-
property_name = name[1:]
|
|
26242
|
-
if property_name in memeber_set:
|
|
26243
|
-
memeber_set.remove(property_name)
|
|
26244
|
-
if len(memeber_set) > 0:
|
|
26245
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
26246
|
-
|
|
26247
|
-
|
|
26248
|
-
|
|
26249
|
-
class DescribeInstancesResponse(AbstractModel):
|
|
26250
|
-
"""DescribeInstances返回参数结构体
|
|
26251
|
-
|
|
26252
|
-
"""
|
|
26253
|
-
|
|
26254
|
-
def __init__(self):
|
|
26255
|
-
r"""
|
|
26256
|
-
:param _Data: Json 结果
|
|
26257
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
26258
|
-
:type Data: str
|
|
26259
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
26260
|
-
:type RequestId: str
|
|
26261
|
-
"""
|
|
26262
|
-
self._Data = None
|
|
26263
|
-
self._RequestId = None
|
|
26264
|
-
|
|
26265
|
-
@property
|
|
26266
|
-
def Data(self):
|
|
26267
|
-
return self._Data
|
|
26268
|
-
|
|
26269
|
-
@Data.setter
|
|
26270
|
-
def Data(self, Data):
|
|
26271
|
-
self._Data = Data
|
|
26272
|
-
|
|
26273
|
-
@property
|
|
26274
|
-
def RequestId(self):
|
|
26275
|
-
return self._RequestId
|
|
26276
|
-
|
|
26277
|
-
@RequestId.setter
|
|
26278
|
-
def RequestId(self, RequestId):
|
|
26279
|
-
self._RequestId = RequestId
|
|
26280
|
-
|
|
26281
|
-
|
|
26282
|
-
def _deserialize(self, params):
|
|
26283
|
-
self._Data = params.get("Data")
|
|
25234
|
+
if params.get("Data") is not None:
|
|
25235
|
+
self._Data = []
|
|
25236
|
+
for item in params.get("Data"):
|
|
25237
|
+
obj = InstanceOpsDto()
|
|
25238
|
+
obj._deserialize(item)
|
|
25239
|
+
self._Data.append(obj)
|
|
26284
25240
|
self._RequestId = params.get("RequestId")
|
|
26285
25241
|
|
|
26286
25242
|
|
|
26287
|
-
class
|
|
26288
|
-
"""
|
|
25243
|
+
class DescribeInstancesRequest(AbstractModel):
|
|
25244
|
+
"""DescribeInstances请求参数结构体
|
|
26289
25245
|
|
|
26290
25246
|
"""
|
|
26291
25247
|
|
|
26292
25248
|
def __init__(self):
|
|
26293
25249
|
r"""
|
|
26294
|
-
:param _Id: 节点id
|
|
26295
|
-
:type Id: str
|
|
26296
25250
|
:param _ProjectId: 项目id
|
|
26297
25251
|
:type ProjectId: str
|
|
26298
|
-
:param
|
|
26299
|
-
:type
|
|
25252
|
+
:param _PageNumber: 页数:默认1
|
|
25253
|
+
:type PageNumber: int
|
|
25254
|
+
:param _PageSize: 分页大小,默认最小10
|
|
25255
|
+
:type PageSize: int
|
|
25256
|
+
:param _Filters: 过滤条件
|
|
25257
|
+
:type Filters: list of Filter
|
|
26300
25258
|
"""
|
|
26301
|
-
self._Id = None
|
|
26302
25259
|
self._ProjectId = None
|
|
26303
|
-
self.
|
|
26304
|
-
|
|
26305
|
-
|
|
26306
|
-
def Id(self):
|
|
26307
|
-
return self._Id
|
|
26308
|
-
|
|
26309
|
-
@Id.setter
|
|
26310
|
-
def Id(self, Id):
|
|
26311
|
-
self._Id = Id
|
|
25260
|
+
self._PageNumber = None
|
|
25261
|
+
self._PageSize = None
|
|
25262
|
+
self._Filters = None
|
|
26312
25263
|
|
|
26313
25264
|
@property
|
|
26314
25265
|
def ProjectId(self):
|
|
@@ -26319,18 +25270,40 @@ class DescribeIntegrationNodeRequest(AbstractModel):
|
|
|
26319
25270
|
self._ProjectId = ProjectId
|
|
26320
25271
|
|
|
26321
25272
|
@property
|
|
26322
|
-
def
|
|
26323
|
-
return self.
|
|
25273
|
+
def PageNumber(self):
|
|
25274
|
+
return self._PageNumber
|
|
26324
25275
|
|
|
26325
|
-
@
|
|
26326
|
-
def
|
|
26327
|
-
self.
|
|
25276
|
+
@PageNumber.setter
|
|
25277
|
+
def PageNumber(self, PageNumber):
|
|
25278
|
+
self._PageNumber = PageNumber
|
|
25279
|
+
|
|
25280
|
+
@property
|
|
25281
|
+
def PageSize(self):
|
|
25282
|
+
return self._PageSize
|
|
25283
|
+
|
|
25284
|
+
@PageSize.setter
|
|
25285
|
+
def PageSize(self, PageSize):
|
|
25286
|
+
self._PageSize = PageSize
|
|
25287
|
+
|
|
25288
|
+
@property
|
|
25289
|
+
def Filters(self):
|
|
25290
|
+
return self._Filters
|
|
25291
|
+
|
|
25292
|
+
@Filters.setter
|
|
25293
|
+
def Filters(self, Filters):
|
|
25294
|
+
self._Filters = Filters
|
|
26328
25295
|
|
|
26329
25296
|
|
|
26330
25297
|
def _deserialize(self, params):
|
|
26331
|
-
self._Id = params.get("Id")
|
|
26332
25298
|
self._ProjectId = params.get("ProjectId")
|
|
26333
|
-
self.
|
|
25299
|
+
self._PageNumber = params.get("PageNumber")
|
|
25300
|
+
self._PageSize = params.get("PageSize")
|
|
25301
|
+
if params.get("Filters") is not None:
|
|
25302
|
+
self._Filters = []
|
|
25303
|
+
for item in params.get("Filters"):
|
|
25304
|
+
obj = Filter()
|
|
25305
|
+
obj._deserialize(item)
|
|
25306
|
+
self._Filters.append(obj)
|
|
26334
25307
|
memeber_set = set(params.keys())
|
|
26335
25308
|
for name, value in vars(self).items():
|
|
26336
25309
|
property_name = name[1:]
|
|
@@ -26341,41 +25314,29 @@ class DescribeIntegrationNodeRequest(AbstractModel):
|
|
|
26341
25314
|
|
|
26342
25315
|
|
|
26343
25316
|
|
|
26344
|
-
class
|
|
26345
|
-
"""
|
|
25317
|
+
class DescribeInstancesResponse(AbstractModel):
|
|
25318
|
+
"""DescribeInstances返回参数结构体
|
|
26346
25319
|
|
|
26347
25320
|
"""
|
|
26348
25321
|
|
|
26349
25322
|
def __init__(self):
|
|
26350
25323
|
r"""
|
|
26351
|
-
:param
|
|
26352
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
26353
|
-
:type NodeInfo: :class:`tencentcloud.wedata.v20210820.models.IntegrationNodeInfo`
|
|
26354
|
-
:param _SourceCheckFlag: 上游节点是否已经修改。true 已修改,需要提示;false 没有修改
|
|
25324
|
+
:param _Data: Json 结果
|
|
26355
25325
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
26356
|
-
:type
|
|
25326
|
+
:type Data: str
|
|
26357
25327
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
26358
25328
|
:type RequestId: str
|
|
26359
25329
|
"""
|
|
26360
|
-
self.
|
|
26361
|
-
self._SourceCheckFlag = None
|
|
25330
|
+
self._Data = None
|
|
26362
25331
|
self._RequestId = None
|
|
26363
25332
|
|
|
26364
25333
|
@property
|
|
26365
|
-
def
|
|
26366
|
-
return self.
|
|
26367
|
-
|
|
26368
|
-
@NodeInfo.setter
|
|
26369
|
-
def NodeInfo(self, NodeInfo):
|
|
26370
|
-
self._NodeInfo = NodeInfo
|
|
26371
|
-
|
|
26372
|
-
@property
|
|
26373
|
-
def SourceCheckFlag(self):
|
|
26374
|
-
return self._SourceCheckFlag
|
|
25334
|
+
def Data(self):
|
|
25335
|
+
return self._Data
|
|
26375
25336
|
|
|
26376
|
-
@
|
|
26377
|
-
def
|
|
26378
|
-
self.
|
|
25337
|
+
@Data.setter
|
|
25338
|
+
def Data(self, Data):
|
|
25339
|
+
self._Data = Data
|
|
26379
25340
|
|
|
26380
25341
|
@property
|
|
26381
25342
|
def RequestId(self):
|
|
@@ -26387,41 +25348,35 @@ class DescribeIntegrationNodeResponse(AbstractModel):
|
|
|
26387
25348
|
|
|
26388
25349
|
|
|
26389
25350
|
def _deserialize(self, params):
|
|
26390
|
-
|
|
26391
|
-
self._NodeInfo = IntegrationNodeInfo()
|
|
26392
|
-
self._NodeInfo._deserialize(params.get("NodeInfo"))
|
|
26393
|
-
self._SourceCheckFlag = params.get("SourceCheckFlag")
|
|
25351
|
+
self._Data = params.get("Data")
|
|
26394
25352
|
self._RequestId = params.get("RequestId")
|
|
26395
25353
|
|
|
26396
25354
|
|
|
26397
|
-
class
|
|
26398
|
-
"""
|
|
25355
|
+
class DescribeIntegrationNodeRequest(AbstractModel):
|
|
25356
|
+
"""DescribeIntegrationNode请求参数结构体
|
|
26399
25357
|
|
|
26400
25358
|
"""
|
|
26401
25359
|
|
|
26402
25360
|
def __init__(self):
|
|
26403
25361
|
r"""
|
|
26404
|
-
:param
|
|
26405
|
-
:type
|
|
25362
|
+
:param _Id: 节点id
|
|
25363
|
+
:type Id: str
|
|
26406
25364
|
:param _ProjectId: 项目id
|
|
26407
25365
|
:type ProjectId: str
|
|
26408
|
-
:param
|
|
26409
|
-
:type
|
|
26410
|
-
:param _ExecutorGroupId: 资源组id
|
|
26411
|
-
:type ExecutorGroupId: str
|
|
25366
|
+
:param _TaskType: 任务类型
|
|
25367
|
+
:type TaskType: int
|
|
26412
25368
|
"""
|
|
26413
|
-
self.
|
|
25369
|
+
self._Id = None
|
|
26414
25370
|
self._ProjectId = None
|
|
26415
|
-
self.
|
|
26416
|
-
self._ExecutorGroupId = None
|
|
25371
|
+
self._TaskType = None
|
|
26417
25372
|
|
|
26418
25373
|
@property
|
|
26419
|
-
def
|
|
26420
|
-
return self.
|
|
25374
|
+
def Id(self):
|
|
25375
|
+
return self._Id
|
|
26421
25376
|
|
|
26422
|
-
@
|
|
26423
|
-
def
|
|
26424
|
-
self.
|
|
25377
|
+
@Id.setter
|
|
25378
|
+
def Id(self, Id):
|
|
25379
|
+
self._Id = Id
|
|
26425
25380
|
|
|
26426
25381
|
@property
|
|
26427
25382
|
def ProjectId(self):
|
|
@@ -26432,27 +25387,18 @@ class DescribeIntegrationStatisticsAgentStatusRequest(AbstractModel):
|
|
|
26432
25387
|
self._ProjectId = ProjectId
|
|
26433
25388
|
|
|
26434
25389
|
@property
|
|
26435
|
-
def
|
|
26436
|
-
return self.
|
|
26437
|
-
|
|
26438
|
-
@QueryDate.setter
|
|
26439
|
-
def QueryDate(self, QueryDate):
|
|
26440
|
-
self._QueryDate = QueryDate
|
|
26441
|
-
|
|
26442
|
-
@property
|
|
26443
|
-
def ExecutorGroupId(self):
|
|
26444
|
-
return self._ExecutorGroupId
|
|
25390
|
+
def TaskType(self):
|
|
25391
|
+
return self._TaskType
|
|
26445
25392
|
|
|
26446
|
-
@
|
|
26447
|
-
def
|
|
26448
|
-
self.
|
|
25393
|
+
@TaskType.setter
|
|
25394
|
+
def TaskType(self, TaskType):
|
|
25395
|
+
self._TaskType = TaskType
|
|
26449
25396
|
|
|
26450
25397
|
|
|
26451
25398
|
def _deserialize(self, params):
|
|
26452
|
-
self.
|
|
25399
|
+
self._Id = params.get("Id")
|
|
26453
25400
|
self._ProjectId = params.get("ProjectId")
|
|
26454
|
-
self.
|
|
26455
|
-
self._ExecutorGroupId = params.get("ExecutorGroupId")
|
|
25401
|
+
self._TaskType = params.get("TaskType")
|
|
26456
25402
|
memeber_set = set(params.keys())
|
|
26457
25403
|
for name, value in vars(self).items():
|
|
26458
25404
|
property_name = name[1:]
|
|
@@ -26463,29 +25409,41 @@ class DescribeIntegrationStatisticsAgentStatusRequest(AbstractModel):
|
|
|
26463
25409
|
|
|
26464
25410
|
|
|
26465
25411
|
|
|
26466
|
-
class
|
|
26467
|
-
"""
|
|
25412
|
+
class DescribeIntegrationNodeResponse(AbstractModel):
|
|
25413
|
+
"""DescribeIntegrationNode返回参数结构体
|
|
26468
25414
|
|
|
26469
25415
|
"""
|
|
26470
25416
|
|
|
26471
25417
|
def __init__(self):
|
|
26472
25418
|
r"""
|
|
26473
|
-
:param
|
|
25419
|
+
:param _NodeInfo: 节点信息
|
|
26474
25420
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
26475
|
-
:type
|
|
25421
|
+
:type NodeInfo: :class:`tencentcloud.wedata.v20210820.models.IntegrationNodeInfo`
|
|
25422
|
+
:param _SourceCheckFlag: 上游节点是否已经修改。true 已修改,需要提示;false 没有修改
|
|
25423
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
25424
|
+
:type SourceCheckFlag: bool
|
|
26476
25425
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
26477
25426
|
:type RequestId: str
|
|
26478
25427
|
"""
|
|
26479
|
-
self.
|
|
25428
|
+
self._NodeInfo = None
|
|
25429
|
+
self._SourceCheckFlag = None
|
|
26480
25430
|
self._RequestId = None
|
|
26481
25431
|
|
|
26482
25432
|
@property
|
|
26483
|
-
def
|
|
26484
|
-
return self.
|
|
25433
|
+
def NodeInfo(self):
|
|
25434
|
+
return self._NodeInfo
|
|
26485
25435
|
|
|
26486
|
-
@
|
|
26487
|
-
def
|
|
26488
|
-
self.
|
|
25436
|
+
@NodeInfo.setter
|
|
25437
|
+
def NodeInfo(self, NodeInfo):
|
|
25438
|
+
self._NodeInfo = NodeInfo
|
|
25439
|
+
|
|
25440
|
+
@property
|
|
25441
|
+
def SourceCheckFlag(self):
|
|
25442
|
+
return self._SourceCheckFlag
|
|
25443
|
+
|
|
25444
|
+
@SourceCheckFlag.setter
|
|
25445
|
+
def SourceCheckFlag(self, SourceCheckFlag):
|
|
25446
|
+
self._SourceCheckFlag = SourceCheckFlag
|
|
26489
25447
|
|
|
26490
25448
|
@property
|
|
26491
25449
|
def RequestId(self):
|
|
@@ -26497,7 +25455,10 @@ class DescribeIntegrationStatisticsAgentStatusResponse(AbstractModel):
|
|
|
26497
25455
|
|
|
26498
25456
|
|
|
26499
25457
|
def _deserialize(self, params):
|
|
26500
|
-
|
|
25458
|
+
if params.get("NodeInfo") is not None:
|
|
25459
|
+
self._NodeInfo = IntegrationNodeInfo()
|
|
25460
|
+
self._NodeInfo._deserialize(params.get("NodeInfo"))
|
|
25461
|
+
self._SourceCheckFlag = params.get("SourceCheckFlag")
|
|
26501
25462
|
self._RequestId = params.get("RequestId")
|
|
26502
25463
|
|
|
26503
25464
|
|
|
@@ -34316,89 +33277,6 @@ class DescribeSonInstancesResponse(AbstractModel):
|
|
|
34316
33277
|
self._RequestId = params.get("RequestId")
|
|
34317
33278
|
|
|
34318
33279
|
|
|
34319
|
-
class DescribeStandardRuleDetailInfoListRequest(AbstractModel):
|
|
34320
|
-
"""DescribeStandardRuleDetailInfoList请求参数结构体
|
|
34321
|
-
|
|
34322
|
-
"""
|
|
34323
|
-
|
|
34324
|
-
def __init__(self):
|
|
34325
|
-
r"""
|
|
34326
|
-
:param _ProjectId: 空间、项目id
|
|
34327
|
-
:type ProjectId: str
|
|
34328
|
-
:param _Type: 标准分类11编码映射 12数据过滤 13字符串转换 14数据元定义 15正则表达 16术语词典
|
|
34329
|
-
:type Type: int
|
|
34330
|
-
"""
|
|
34331
|
-
self._ProjectId = None
|
|
34332
|
-
self._Type = None
|
|
34333
|
-
|
|
34334
|
-
@property
|
|
34335
|
-
def ProjectId(self):
|
|
34336
|
-
return self._ProjectId
|
|
34337
|
-
|
|
34338
|
-
@ProjectId.setter
|
|
34339
|
-
def ProjectId(self, ProjectId):
|
|
34340
|
-
self._ProjectId = ProjectId
|
|
34341
|
-
|
|
34342
|
-
@property
|
|
34343
|
-
def Type(self):
|
|
34344
|
-
return self._Type
|
|
34345
|
-
|
|
34346
|
-
@Type.setter
|
|
34347
|
-
def Type(self, Type):
|
|
34348
|
-
self._Type = Type
|
|
34349
|
-
|
|
34350
|
-
|
|
34351
|
-
def _deserialize(self, params):
|
|
34352
|
-
self._ProjectId = params.get("ProjectId")
|
|
34353
|
-
self._Type = params.get("Type")
|
|
34354
|
-
memeber_set = set(params.keys())
|
|
34355
|
-
for name, value in vars(self).items():
|
|
34356
|
-
property_name = name[1:]
|
|
34357
|
-
if property_name in memeber_set:
|
|
34358
|
-
memeber_set.remove(property_name)
|
|
34359
|
-
if len(memeber_set) > 0:
|
|
34360
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
34361
|
-
|
|
34362
|
-
|
|
34363
|
-
|
|
34364
|
-
class DescribeStandardRuleDetailInfoListResponse(AbstractModel):
|
|
34365
|
-
"""DescribeStandardRuleDetailInfoList返回参数结构体
|
|
34366
|
-
|
|
34367
|
-
"""
|
|
34368
|
-
|
|
34369
|
-
def __init__(self):
|
|
34370
|
-
r"""
|
|
34371
|
-
:param _StandardRuleDetailList: 返回值
|
|
34372
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
34373
|
-
:type StandardRuleDetailList: str
|
|
34374
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
34375
|
-
:type RequestId: str
|
|
34376
|
-
"""
|
|
34377
|
-
self._StandardRuleDetailList = None
|
|
34378
|
-
self._RequestId = None
|
|
34379
|
-
|
|
34380
|
-
@property
|
|
34381
|
-
def StandardRuleDetailList(self):
|
|
34382
|
-
return self._StandardRuleDetailList
|
|
34383
|
-
|
|
34384
|
-
@StandardRuleDetailList.setter
|
|
34385
|
-
def StandardRuleDetailList(self, StandardRuleDetailList):
|
|
34386
|
-
self._StandardRuleDetailList = StandardRuleDetailList
|
|
34387
|
-
|
|
34388
|
-
@property
|
|
34389
|
-
def RequestId(self):
|
|
34390
|
-
return self._RequestId
|
|
34391
|
-
|
|
34392
|
-
@RequestId.setter
|
|
34393
|
-
def RequestId(self, RequestId):
|
|
34394
|
-
self._RequestId = RequestId
|
|
34395
|
-
|
|
34396
|
-
|
|
34397
|
-
def _deserialize(self, params):
|
|
34398
|
-
self._StandardRuleDetailList = params.get("StandardRuleDetailList")
|
|
34399
|
-
self._RequestId = params.get("RequestId")
|
|
34400
|
-
|
|
34401
|
-
|
|
34402
33280
|
class DescribeStatisticInstanceStatusTrendOpsRequest(AbstractModel):
|
|
34403
33281
|
"""DescribeStatisticInstanceStatusTrendOps请求参数结构体
|
|
34404
33282
|
|
|
@@ -44779,406 +43657,6 @@ class GetOfflineInstanceListResponse(AbstractModel):
|
|
|
44779
43657
|
self._RequestId = params.get("RequestId")
|
|
44780
43658
|
|
|
44781
43659
|
|
|
44782
|
-
class InLongAgentDetail(AbstractModel):
|
|
44783
|
-
"""采集器详细信息
|
|
44784
|
-
|
|
44785
|
-
"""
|
|
44786
|
-
|
|
44787
|
-
def __init__(self):
|
|
44788
|
-
r"""
|
|
44789
|
-
:param _AgentId: Agent ID
|
|
44790
|
-
:type AgentId: str
|
|
44791
|
-
:param _AgentName: Agent Name
|
|
44792
|
-
:type AgentName: str
|
|
44793
|
-
:param _Status: Agent状态(running运行中,initializing 操作中,failed心跳异常)
|
|
44794
|
-
:type Status: str
|
|
44795
|
-
:param _StatusDesc: Agent状态描述
|
|
44796
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
44797
|
-
:type StatusDesc: str
|
|
44798
|
-
:param _AgentType: 集群类型,1:TKE Agent,2:BOSS SDK,默认:1
|
|
44799
|
-
:type AgentType: int
|
|
44800
|
-
:param _Source: 采集来源
|
|
44801
|
-
:type Source: str
|
|
44802
|
-
:param _VpcId: VPC
|
|
44803
|
-
:type VpcId: str
|
|
44804
|
-
:param _ExecutorGroupId: 集成资源组Id
|
|
44805
|
-
:type ExecutorGroupId: str
|
|
44806
|
-
:param _ExecutorGroupName: 集成资源组名称
|
|
44807
|
-
:type ExecutorGroupName: str
|
|
44808
|
-
:param _TaskCount: 关联任务数
|
|
44809
|
-
:type TaskCount: int
|
|
44810
|
-
:param _AgentGroupId: 采集器组ID
|
|
44811
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
44812
|
-
:type AgentGroupId: str
|
|
44813
|
-
:param _CvmAgentStatusList: agent状态统计
|
|
44814
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
44815
|
-
:type CvmAgentStatusList: list of CvmAgentStatus
|
|
44816
|
-
:param _AgentTotal: agent数量
|
|
44817
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
44818
|
-
:type AgentTotal: int
|
|
44819
|
-
:param _LifeDays: 生命周期
|
|
44820
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
44821
|
-
:type LifeDays: int
|
|
44822
|
-
:param _ClusterId: 集群ID
|
|
44823
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
44824
|
-
:type ClusterId: str
|
|
44825
|
-
:param _AgentRegion: agent地域
|
|
44826
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
44827
|
-
:type AgentRegion: str
|
|
44828
|
-
"""
|
|
44829
|
-
self._AgentId = None
|
|
44830
|
-
self._AgentName = None
|
|
44831
|
-
self._Status = None
|
|
44832
|
-
self._StatusDesc = None
|
|
44833
|
-
self._AgentType = None
|
|
44834
|
-
self._Source = None
|
|
44835
|
-
self._VpcId = None
|
|
44836
|
-
self._ExecutorGroupId = None
|
|
44837
|
-
self._ExecutorGroupName = None
|
|
44838
|
-
self._TaskCount = None
|
|
44839
|
-
self._AgentGroupId = None
|
|
44840
|
-
self._CvmAgentStatusList = None
|
|
44841
|
-
self._AgentTotal = None
|
|
44842
|
-
self._LifeDays = None
|
|
44843
|
-
self._ClusterId = None
|
|
44844
|
-
self._AgentRegion = None
|
|
44845
|
-
|
|
44846
|
-
@property
|
|
44847
|
-
def AgentId(self):
|
|
44848
|
-
return self._AgentId
|
|
44849
|
-
|
|
44850
|
-
@AgentId.setter
|
|
44851
|
-
def AgentId(self, AgentId):
|
|
44852
|
-
self._AgentId = AgentId
|
|
44853
|
-
|
|
44854
|
-
@property
|
|
44855
|
-
def AgentName(self):
|
|
44856
|
-
return self._AgentName
|
|
44857
|
-
|
|
44858
|
-
@AgentName.setter
|
|
44859
|
-
def AgentName(self, AgentName):
|
|
44860
|
-
self._AgentName = AgentName
|
|
44861
|
-
|
|
44862
|
-
@property
|
|
44863
|
-
def Status(self):
|
|
44864
|
-
return self._Status
|
|
44865
|
-
|
|
44866
|
-
@Status.setter
|
|
44867
|
-
def Status(self, Status):
|
|
44868
|
-
self._Status = Status
|
|
44869
|
-
|
|
44870
|
-
@property
|
|
44871
|
-
def StatusDesc(self):
|
|
44872
|
-
return self._StatusDesc
|
|
44873
|
-
|
|
44874
|
-
@StatusDesc.setter
|
|
44875
|
-
def StatusDesc(self, StatusDesc):
|
|
44876
|
-
self._StatusDesc = StatusDesc
|
|
44877
|
-
|
|
44878
|
-
@property
|
|
44879
|
-
def AgentType(self):
|
|
44880
|
-
return self._AgentType
|
|
44881
|
-
|
|
44882
|
-
@AgentType.setter
|
|
44883
|
-
def AgentType(self, AgentType):
|
|
44884
|
-
self._AgentType = AgentType
|
|
44885
|
-
|
|
44886
|
-
@property
|
|
44887
|
-
def Source(self):
|
|
44888
|
-
return self._Source
|
|
44889
|
-
|
|
44890
|
-
@Source.setter
|
|
44891
|
-
def Source(self, Source):
|
|
44892
|
-
self._Source = Source
|
|
44893
|
-
|
|
44894
|
-
@property
|
|
44895
|
-
def VpcId(self):
|
|
44896
|
-
return self._VpcId
|
|
44897
|
-
|
|
44898
|
-
@VpcId.setter
|
|
44899
|
-
def VpcId(self, VpcId):
|
|
44900
|
-
self._VpcId = VpcId
|
|
44901
|
-
|
|
44902
|
-
@property
|
|
44903
|
-
def ExecutorGroupId(self):
|
|
44904
|
-
return self._ExecutorGroupId
|
|
44905
|
-
|
|
44906
|
-
@ExecutorGroupId.setter
|
|
44907
|
-
def ExecutorGroupId(self, ExecutorGroupId):
|
|
44908
|
-
self._ExecutorGroupId = ExecutorGroupId
|
|
44909
|
-
|
|
44910
|
-
@property
|
|
44911
|
-
def ExecutorGroupName(self):
|
|
44912
|
-
return self._ExecutorGroupName
|
|
44913
|
-
|
|
44914
|
-
@ExecutorGroupName.setter
|
|
44915
|
-
def ExecutorGroupName(self, ExecutorGroupName):
|
|
44916
|
-
self._ExecutorGroupName = ExecutorGroupName
|
|
44917
|
-
|
|
44918
|
-
@property
|
|
44919
|
-
def TaskCount(self):
|
|
44920
|
-
return self._TaskCount
|
|
44921
|
-
|
|
44922
|
-
@TaskCount.setter
|
|
44923
|
-
def TaskCount(self, TaskCount):
|
|
44924
|
-
self._TaskCount = TaskCount
|
|
44925
|
-
|
|
44926
|
-
@property
|
|
44927
|
-
def AgentGroupId(self):
|
|
44928
|
-
return self._AgentGroupId
|
|
44929
|
-
|
|
44930
|
-
@AgentGroupId.setter
|
|
44931
|
-
def AgentGroupId(self, AgentGroupId):
|
|
44932
|
-
self._AgentGroupId = AgentGroupId
|
|
44933
|
-
|
|
44934
|
-
@property
|
|
44935
|
-
def CvmAgentStatusList(self):
|
|
44936
|
-
return self._CvmAgentStatusList
|
|
44937
|
-
|
|
44938
|
-
@CvmAgentStatusList.setter
|
|
44939
|
-
def CvmAgentStatusList(self, CvmAgentStatusList):
|
|
44940
|
-
self._CvmAgentStatusList = CvmAgentStatusList
|
|
44941
|
-
|
|
44942
|
-
@property
|
|
44943
|
-
def AgentTotal(self):
|
|
44944
|
-
return self._AgentTotal
|
|
44945
|
-
|
|
44946
|
-
@AgentTotal.setter
|
|
44947
|
-
def AgentTotal(self, AgentTotal):
|
|
44948
|
-
self._AgentTotal = AgentTotal
|
|
44949
|
-
|
|
44950
|
-
@property
|
|
44951
|
-
def LifeDays(self):
|
|
44952
|
-
return self._LifeDays
|
|
44953
|
-
|
|
44954
|
-
@LifeDays.setter
|
|
44955
|
-
def LifeDays(self, LifeDays):
|
|
44956
|
-
self._LifeDays = LifeDays
|
|
44957
|
-
|
|
44958
|
-
@property
|
|
44959
|
-
def ClusterId(self):
|
|
44960
|
-
return self._ClusterId
|
|
44961
|
-
|
|
44962
|
-
@ClusterId.setter
|
|
44963
|
-
def ClusterId(self, ClusterId):
|
|
44964
|
-
self._ClusterId = ClusterId
|
|
44965
|
-
|
|
44966
|
-
@property
|
|
44967
|
-
def AgentRegion(self):
|
|
44968
|
-
return self._AgentRegion
|
|
44969
|
-
|
|
44970
|
-
@AgentRegion.setter
|
|
44971
|
-
def AgentRegion(self, AgentRegion):
|
|
44972
|
-
self._AgentRegion = AgentRegion
|
|
44973
|
-
|
|
44974
|
-
|
|
44975
|
-
def _deserialize(self, params):
|
|
44976
|
-
self._AgentId = params.get("AgentId")
|
|
44977
|
-
self._AgentName = params.get("AgentName")
|
|
44978
|
-
self._Status = params.get("Status")
|
|
44979
|
-
self._StatusDesc = params.get("StatusDesc")
|
|
44980
|
-
self._AgentType = params.get("AgentType")
|
|
44981
|
-
self._Source = params.get("Source")
|
|
44982
|
-
self._VpcId = params.get("VpcId")
|
|
44983
|
-
self._ExecutorGroupId = params.get("ExecutorGroupId")
|
|
44984
|
-
self._ExecutorGroupName = params.get("ExecutorGroupName")
|
|
44985
|
-
self._TaskCount = params.get("TaskCount")
|
|
44986
|
-
self._AgentGroupId = params.get("AgentGroupId")
|
|
44987
|
-
if params.get("CvmAgentStatusList") is not None:
|
|
44988
|
-
self._CvmAgentStatusList = []
|
|
44989
|
-
for item in params.get("CvmAgentStatusList"):
|
|
44990
|
-
obj = CvmAgentStatus()
|
|
44991
|
-
obj._deserialize(item)
|
|
44992
|
-
self._CvmAgentStatusList.append(obj)
|
|
44993
|
-
self._AgentTotal = params.get("AgentTotal")
|
|
44994
|
-
self._LifeDays = params.get("LifeDays")
|
|
44995
|
-
self._ClusterId = params.get("ClusterId")
|
|
44996
|
-
self._AgentRegion = params.get("AgentRegion")
|
|
44997
|
-
memeber_set = set(params.keys())
|
|
44998
|
-
for name, value in vars(self).items():
|
|
44999
|
-
property_name = name[1:]
|
|
45000
|
-
if property_name in memeber_set:
|
|
45001
|
-
memeber_set.remove(property_name)
|
|
45002
|
-
if len(memeber_set) > 0:
|
|
45003
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
45004
|
-
|
|
45005
|
-
|
|
45006
|
-
|
|
45007
|
-
class InLongAgentTask(AbstractModel):
|
|
45008
|
-
"""采集器关联的集成任务
|
|
45009
|
-
|
|
45010
|
-
"""
|
|
45011
|
-
|
|
45012
|
-
def __init__(self):
|
|
45013
|
-
r"""
|
|
45014
|
-
:param _TaskId: 集成任务ID
|
|
45015
|
-
:type TaskId: str
|
|
45016
|
-
:param _TaskName: 集成任务名称
|
|
45017
|
-
:type TaskName: str
|
|
45018
|
-
:param _TaskStatus: 集成任务状态
|
|
45019
|
-
:type TaskStatus: str
|
|
45020
|
-
"""
|
|
45021
|
-
self._TaskId = None
|
|
45022
|
-
self._TaskName = None
|
|
45023
|
-
self._TaskStatus = None
|
|
45024
|
-
|
|
45025
|
-
@property
|
|
45026
|
-
def TaskId(self):
|
|
45027
|
-
return self._TaskId
|
|
45028
|
-
|
|
45029
|
-
@TaskId.setter
|
|
45030
|
-
def TaskId(self, TaskId):
|
|
45031
|
-
self._TaskId = TaskId
|
|
45032
|
-
|
|
45033
|
-
@property
|
|
45034
|
-
def TaskName(self):
|
|
45035
|
-
return self._TaskName
|
|
45036
|
-
|
|
45037
|
-
@TaskName.setter
|
|
45038
|
-
def TaskName(self, TaskName):
|
|
45039
|
-
self._TaskName = TaskName
|
|
45040
|
-
|
|
45041
|
-
@property
|
|
45042
|
-
def TaskStatus(self):
|
|
45043
|
-
return self._TaskStatus
|
|
45044
|
-
|
|
45045
|
-
@TaskStatus.setter
|
|
45046
|
-
def TaskStatus(self, TaskStatus):
|
|
45047
|
-
self._TaskStatus = TaskStatus
|
|
45048
|
-
|
|
45049
|
-
|
|
45050
|
-
def _deserialize(self, params):
|
|
45051
|
-
self._TaskId = params.get("TaskId")
|
|
45052
|
-
self._TaskName = params.get("TaskName")
|
|
45053
|
-
self._TaskStatus = params.get("TaskStatus")
|
|
45054
|
-
memeber_set = set(params.keys())
|
|
45055
|
-
for name, value in vars(self).items():
|
|
45056
|
-
property_name = name[1:]
|
|
45057
|
-
if property_name in memeber_set:
|
|
45058
|
-
memeber_set.remove(property_name)
|
|
45059
|
-
if len(memeber_set) > 0:
|
|
45060
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
45061
|
-
|
|
45062
|
-
|
|
45063
|
-
|
|
45064
|
-
class InLongTkeDetail(AbstractModel):
|
|
45065
|
-
"""TKE集群信息详情
|
|
45066
|
-
|
|
45067
|
-
"""
|
|
45068
|
-
|
|
45069
|
-
def __init__(self):
|
|
45070
|
-
r"""
|
|
45071
|
-
:param _ClusterId: 集群Id
|
|
45072
|
-
:type ClusterId: str
|
|
45073
|
-
:param _ClusterName: 集群名称
|
|
45074
|
-
:type ClusterName: str
|
|
45075
|
-
:param _Status: TKE集群状态 (Running 运行中 Creating 创建中 Idling 闲置中 Abnormal 异常)
|
|
45076
|
-
:type Status: str
|
|
45077
|
-
:param _HasAgent: 是否安装Agent,true: 是,false: 否
|
|
45078
|
-
:type HasAgent: bool
|
|
45079
|
-
:param _AgentId: 采集器ID
|
|
45080
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
45081
|
-
:type AgentId: str
|
|
45082
|
-
:param _VpcId: VPC ID
|
|
45083
|
-
:type VpcId: str
|
|
45084
|
-
:param _TkeRegion: TKE集群区域ID
|
|
45085
|
-
:type TkeRegion: str
|
|
45086
|
-
:param _ClusterType: 集群类型,托管集群:MANAGED_CLUSTER,独立集群:INDEPENDENT_CLUSTER
|
|
45087
|
-
:type ClusterType: str
|
|
45088
|
-
"""
|
|
45089
|
-
self._ClusterId = None
|
|
45090
|
-
self._ClusterName = None
|
|
45091
|
-
self._Status = None
|
|
45092
|
-
self._HasAgent = None
|
|
45093
|
-
self._AgentId = None
|
|
45094
|
-
self._VpcId = None
|
|
45095
|
-
self._TkeRegion = None
|
|
45096
|
-
self._ClusterType = None
|
|
45097
|
-
|
|
45098
|
-
@property
|
|
45099
|
-
def ClusterId(self):
|
|
45100
|
-
return self._ClusterId
|
|
45101
|
-
|
|
45102
|
-
@ClusterId.setter
|
|
45103
|
-
def ClusterId(self, ClusterId):
|
|
45104
|
-
self._ClusterId = ClusterId
|
|
45105
|
-
|
|
45106
|
-
@property
|
|
45107
|
-
def ClusterName(self):
|
|
45108
|
-
return self._ClusterName
|
|
45109
|
-
|
|
45110
|
-
@ClusterName.setter
|
|
45111
|
-
def ClusterName(self, ClusterName):
|
|
45112
|
-
self._ClusterName = ClusterName
|
|
45113
|
-
|
|
45114
|
-
@property
|
|
45115
|
-
def Status(self):
|
|
45116
|
-
return self._Status
|
|
45117
|
-
|
|
45118
|
-
@Status.setter
|
|
45119
|
-
def Status(self, Status):
|
|
45120
|
-
self._Status = Status
|
|
45121
|
-
|
|
45122
|
-
@property
|
|
45123
|
-
def HasAgent(self):
|
|
45124
|
-
return self._HasAgent
|
|
45125
|
-
|
|
45126
|
-
@HasAgent.setter
|
|
45127
|
-
def HasAgent(self, HasAgent):
|
|
45128
|
-
self._HasAgent = HasAgent
|
|
45129
|
-
|
|
45130
|
-
@property
|
|
45131
|
-
def AgentId(self):
|
|
45132
|
-
return self._AgentId
|
|
45133
|
-
|
|
45134
|
-
@AgentId.setter
|
|
45135
|
-
def AgentId(self, AgentId):
|
|
45136
|
-
self._AgentId = AgentId
|
|
45137
|
-
|
|
45138
|
-
@property
|
|
45139
|
-
def VpcId(self):
|
|
45140
|
-
return self._VpcId
|
|
45141
|
-
|
|
45142
|
-
@VpcId.setter
|
|
45143
|
-
def VpcId(self, VpcId):
|
|
45144
|
-
self._VpcId = VpcId
|
|
45145
|
-
|
|
45146
|
-
@property
|
|
45147
|
-
def TkeRegion(self):
|
|
45148
|
-
return self._TkeRegion
|
|
45149
|
-
|
|
45150
|
-
@TkeRegion.setter
|
|
45151
|
-
def TkeRegion(self, TkeRegion):
|
|
45152
|
-
self._TkeRegion = TkeRegion
|
|
45153
|
-
|
|
45154
|
-
@property
|
|
45155
|
-
def ClusterType(self):
|
|
45156
|
-
return self._ClusterType
|
|
45157
|
-
|
|
45158
|
-
@ClusterType.setter
|
|
45159
|
-
def ClusterType(self, ClusterType):
|
|
45160
|
-
self._ClusterType = ClusterType
|
|
45161
|
-
|
|
45162
|
-
|
|
45163
|
-
def _deserialize(self, params):
|
|
45164
|
-
self._ClusterId = params.get("ClusterId")
|
|
45165
|
-
self._ClusterName = params.get("ClusterName")
|
|
45166
|
-
self._Status = params.get("Status")
|
|
45167
|
-
self._HasAgent = params.get("HasAgent")
|
|
45168
|
-
self._AgentId = params.get("AgentId")
|
|
45169
|
-
self._VpcId = params.get("VpcId")
|
|
45170
|
-
self._TkeRegion = params.get("TkeRegion")
|
|
45171
|
-
self._ClusterType = params.get("ClusterType")
|
|
45172
|
-
memeber_set = set(params.keys())
|
|
45173
|
-
for name, value in vars(self).items():
|
|
45174
|
-
property_name = name[1:]
|
|
45175
|
-
if property_name in memeber_set:
|
|
45176
|
-
memeber_set.remove(property_name)
|
|
45177
|
-
if len(memeber_set) > 0:
|
|
45178
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
45179
|
-
|
|
45180
|
-
|
|
45181
|
-
|
|
45182
43660
|
class InstanceApiOpsRequest(AbstractModel):
|
|
45183
43661
|
"""实例查询类型
|
|
45184
43662
|
|
|
@@ -45991,7 +44469,7 @@ class InstanceList(AbstractModel):
|
|
|
45991
44469
|
:param _StartTime: 开始启动时间
|
|
45992
44470
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
45993
44471
|
:type StartTime: str
|
|
45994
|
-
:param _State: 实例状态
|
|
44472
|
+
:param _State: 实例状态 EVENT_LISTENING|DEPENDENCE|BEFORE_ASPECT|ALLOCATED|LAUNCHED|KILL|SNAP_STATE_SAVING|ISSUED|RUNNING|AFTER_ASPECT|PENDING|KILLING|FINAL_STATE_SAVING|FAILED|KILL_FAILED| COMPLETED|EXPIRED|KILL_EXPIRED|DELETED
|
|
45995
44473
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
45996
44474
|
:type State: str
|
|
45997
44475
|
:param _TaskId: 任务ID
|
|
@@ -46591,7 +45069,7 @@ class InstanceLogList(AbstractModel):
|
|
|
46591
45069
|
:param _Tries: 重试次数
|
|
46592
45070
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
46593
45071
|
:type Tries: str
|
|
46594
|
-
:param _LastUpdate:
|
|
45072
|
+
:param _LastUpdate: 最后更新时间
|
|
46595
45073
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
46596
45074
|
:type LastUpdate: str
|
|
46597
45075
|
:param _BrokerIp: 节点ip
|
|
@@ -48478,7 +46956,7 @@ class IntegrationNodeDetail(AbstractModel):
|
|
|
48478
46956
|
|
|
48479
46957
|
|
|
48480
46958
|
class IntegrationNodeInfo(AbstractModel):
|
|
48481
|
-
"""
|
|
46959
|
+
"""集成任务节点
|
|
48482
46960
|
|
|
48483
46961
|
"""
|
|
48484
46962
|
|
|
@@ -48491,9 +46969,9 @@ class IntegrationNodeInfo(AbstractModel):
|
|
|
48491
46969
|
:type TaskId: str
|
|
48492
46970
|
:param _Name: 集成节点名称
|
|
48493
46971
|
:type Name: str
|
|
48494
|
-
:param _NodeType:
|
|
46972
|
+
:param _NodeType: 集成节点类型,INPUT: 输入节点,OUTPUT:输出节点
|
|
48495
46973
|
:type NodeType: str
|
|
48496
|
-
:param _DataSourceType:
|
|
46974
|
+
:param _DataSourceType: 节点数据源类型:MYSQL|POSTGRE|ORACLE|SQLSERVER|FTP|HIVE|HDFS|ICEBERG|KAFKA|HBASE|SPARK|VIRTUAL|TBASE|DB2|DM|GAUSSDB|GBASE|IMPALA|ES|S3_DATAINSIGHT|GREENPLUM|PHOENIX|SAP_HANA|SFTP|OCEANBASE|CLICKHOUSE|KUDU|VERTICA|REDIS|COS|DLC|DLCV1|DORIS|CKAFKA|DTS_KAFKA|S3|CDW|LOCAL|TDSQLC|TDSQL|TDSQL_MYSQL|MONGODB|INFORMIX|SYBASE|REST_API|SuperSQL|PRESTO|DR_SUM|TiDB|StarRocks|Trino|Kyuubi|GDB|TCHOUSE_X|TCHOUSE_P|TDSQL_POSTGRE
|
|
48497
46975
|
:type DataSourceType: str
|
|
48498
46976
|
:param _Description: 节点描述
|
|
48499
46977
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -48513,17 +46991,17 @@ class IntegrationNodeInfo(AbstractModel):
|
|
|
48513
46991
|
:param _NodeMapping: 节点映射
|
|
48514
46992
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
48515
46993
|
:type NodeMapping: :class:`tencentcloud.wedata.v20210820.models.IntegrationNodeMapping`
|
|
48516
|
-
:param _AppId:
|
|
46994
|
+
:param _AppId: 归属用户AppId,展示字段 非传入
|
|
48517
46995
|
:type AppId: str
|
|
48518
46996
|
:param _ProjectId: 项目id
|
|
48519
46997
|
:type ProjectId: str
|
|
48520
|
-
:param _CreatorUin: 创建人uin
|
|
46998
|
+
:param _CreatorUin: 创建人uin,展示字段 非传入
|
|
48521
46999
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
48522
47000
|
:type CreatorUin: str
|
|
48523
|
-
:param _OperatorUin: 操作人uin
|
|
47001
|
+
:param _OperatorUin: 操作人uin,展示字段 非传入
|
|
48524
47002
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
48525
47003
|
:type OperatorUin: str
|
|
48526
|
-
:param _OwnerUin: owner uin
|
|
47004
|
+
:param _OwnerUin: owner uin 展示字段 非传入
|
|
48527
47005
|
:type OwnerUin: str
|
|
48528
47006
|
:param _CreateTime: 创建时间
|
|
48529
47007
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -48848,7 +47326,7 @@ class IntegrationNodeSchema(AbstractModel):
|
|
|
48848
47326
|
|
|
48849
47327
|
def __init__(self):
|
|
48850
47328
|
r"""
|
|
48851
|
-
:param _Id: schema id
|
|
47329
|
+
:param _Id: schema id 随机唯一
|
|
48852
47330
|
:type Id: str
|
|
48853
47331
|
:param _Name: schema名称
|
|
48854
47332
|
:type Name: str
|
|
@@ -48962,9 +47440,9 @@ class IntegrationNodeSchemaMapping(AbstractModel):
|
|
|
48962
47440
|
|
|
48963
47441
|
def __init__(self):
|
|
48964
47442
|
r"""
|
|
48965
|
-
:param _SourceSchemaId:
|
|
47443
|
+
:param _SourceSchemaId: 任务节点的源schema id
|
|
48966
47444
|
:type SourceSchemaId: str
|
|
48967
|
-
:param _SinkSchemaId:
|
|
47445
|
+
:param _SinkSchemaId: 任务节点目标schema id
|
|
48968
47446
|
:type SinkSchemaId: str
|
|
48969
47447
|
"""
|
|
48970
47448
|
self._SourceSchemaId = None
|
|
@@ -49082,10 +47560,10 @@ class IntegrationTaskInfo(AbstractModel):
|
|
|
49082
47560
|
:param _TaskId: 任务id
|
|
49083
47561
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49084
47562
|
:type TaskId: str
|
|
49085
|
-
:param _ScheduleTaskId: 任务调度id(oceanus or us等作业id)
|
|
47563
|
+
:param _ScheduleTaskId: 任务调度id(oceanus or us等作业id),非填项
|
|
49086
47564
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49087
47565
|
:type ScheduleTaskId: str
|
|
49088
|
-
:param _TaskGroupId:
|
|
47566
|
+
:param _TaskGroupId: inlong任务id
|
|
49089
47567
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49090
47568
|
:type TaskGroupId: str
|
|
49091
47569
|
:param _ProjectId: 项目id
|
|
@@ -49103,7 +47581,7 @@ class IntegrationTaskInfo(AbstractModel):
|
|
|
49103
47581
|
:param _AppId: 应用id
|
|
49104
47582
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49105
47583
|
:type AppId: str
|
|
49106
|
-
:param _Status:
|
|
47584
|
+
:param _Status: 1:未开始|2:操作中|3:运行中|4:暂停|5:任务停止中|6:停止|7:执行失败|20:异常|21:未知|
|
|
49107
47585
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49108
47586
|
:type Status: int
|
|
49109
47587
|
:param _Nodes: 节点列表
|
|
@@ -49124,7 +47602,7 @@ class IntegrationTaskInfo(AbstractModel):
|
|
|
49124
47602
|
:param _Mappings: 节点映射
|
|
49125
47603
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49126
47604
|
:type Mappings: list of IntegrationNodeMapping
|
|
49127
|
-
:param _TaskMode:
|
|
47605
|
+
:param _TaskMode: 任务配置模式,0:画布 1:表单 3:脚本
|
|
49128
47606
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49129
47607
|
:type TaskMode: str
|
|
49130
47608
|
:param _Incharge: 责任人
|
|
@@ -49136,7 +47614,7 @@ class IntegrationTaskInfo(AbstractModel):
|
|
|
49136
47614
|
:param _ExecutorGroupName: group name
|
|
49137
47615
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49138
47616
|
:type ExecutorGroupName: str
|
|
49139
|
-
:param _InLongManagerUrl: url
|
|
47617
|
+
:param _InLongManagerUrl: inlong manager url
|
|
49140
47618
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49141
47619
|
:type InLongManagerUrl: str
|
|
49142
47620
|
:param _InLongStreamId: stream id
|
|
@@ -49145,16 +47623,16 @@ class IntegrationTaskInfo(AbstractModel):
|
|
|
49145
47623
|
:param _InLongManagerVersion: version
|
|
49146
47624
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49147
47625
|
:type InLongManagerVersion: str
|
|
49148
|
-
:param _DataProxyUrl: dataproxy url
|
|
47626
|
+
:param _DataProxyUrl: inlong dataproxy url
|
|
49149
47627
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49150
47628
|
:type DataProxyUrl: list of str
|
|
49151
47629
|
:param _Submit: 任务版本是否已提交运维
|
|
49152
47630
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49153
47631
|
:type Submit: bool
|
|
49154
|
-
:param _InputDatasourceType: MYSQL
|
|
47632
|
+
:param _InputDatasourceType: 数据源类型:MYSQL|POSTGRE|ORACLE|SQLSERVER|FTP|HIVE|HDFS|ICEBERG|KAFKA|HBASE|SPARK|VIRTUAL|TBASE|DB2|DM|GAUSSDB|GBASE|IMPALA|ES|S3_DATAINSIGHT|GREENPLUM|PHOENIX|SAP_HANA|SFTP|OCEANBASE|CLICKHOUSE|KUDU|VERTICA|REDIS|COS|DLC|DLCV1|DORIS|CKAFKA|DTS_KAFKA|S3|CDW|LOCAL|TDSQLC|TDSQL|TDSQL_MYSQL|MONGODB|INFORMIX|SYBASE|REST_API|SuperSQL|PRESTO|DR_SUM|TiDB|StarRocks|Trino|Kyuubi|GDB|TCHOUSE_X|TCHOUSE_P|TDSQL_POSTGRE
|
|
49155
47633
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49156
47634
|
:type InputDatasourceType: str
|
|
49157
|
-
:param _OutputDatasourceType: DLC
|
|
47635
|
+
:param _OutputDatasourceType: 数据源类型:MYSQL|POSTGRE|ORACLE|SQLSERVER|FTP|HIVE|HDFS|ICEBERG|KAFKA|HBASE|SPARK|VIRTUAL|TBASE|DB2|DM|GAUSSDB|GBASE|IMPALA|ES|S3_DATAINSIGHT|GREENPLUM|PHOENIX|SAP_HANA|SFTP|OCEANBASE|CLICKHOUSE|KUDU|VERTICA|REDIS|COS|DLC|DLCV1|DORIS|CKAFKA|DTS_KAFKA|S3|CDW|LOCAL|TDSQLC|TDSQL|TDSQL_MYSQL|MONGODB|INFORMIX|SYBASE|REST_API|SuperSQL|PRESTO|DR_SUM|TiDB|StarRocks|Trino|Kyuubi|GDB|TCHOUSE_X|TCHOUSE_P|TDSQL_POSTGRE
|
|
49158
47636
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49159
47637
|
:type OutputDatasourceType: str
|
|
49160
47638
|
:param _NumRecordsIn: 读取条数
|
|
@@ -49196,13 +47674,13 @@ class IntegrationTaskInfo(AbstractModel):
|
|
|
49196
47674
|
:param _TaskAlarmRegularList: 该任务关联的告警规则
|
|
49197
47675
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49198
47676
|
:type TaskAlarmRegularList: list of str
|
|
49199
|
-
:param _SwitchResource:
|
|
47677
|
+
:param _SwitchResource: 实时任务资源分层情况: 0:进行中,1:成功 ,2:失败
|
|
49200
47678
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49201
47679
|
:type SwitchResource: int
|
|
49202
|
-
:param _ReadPhase:
|
|
47680
|
+
:param _ReadPhase: 实时任务读取阶段:0:全部全量,1:部分全量,2:全部增量
|
|
49203
47681
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49204
47682
|
:type ReadPhase: int
|
|
49205
|
-
:param _InstanceVersion:
|
|
47683
|
+
:param _InstanceVersion: 实时任务版本号
|
|
49206
47684
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
49207
47685
|
:type InstanceVersion: int
|
|
49208
47686
|
:param _ArrangeSpaceTaskId: 离线任务导入到编排空间的任务id
|
|
@@ -55323,285 +53801,189 @@ class ModifyWorkflowInfoResponse(AbstractModel):
|
|
|
55323
53801
|
|
|
55324
53802
|
|
|
55325
53803
|
def _deserialize(self, params):
|
|
55326
|
-
self._Data = params.get("Data")
|
|
55327
|
-
self._RequestId = params.get("RequestId")
|
|
55328
|
-
|
|
55329
|
-
|
|
55330
|
-
class ModifyWorkflowScheduleRequest(AbstractModel):
|
|
55331
|
-
"""ModifyWorkflowSchedule请求参数结构体
|
|
55332
|
-
|
|
55333
|
-
"""
|
|
55334
|
-
|
|
55335
|
-
def __init__(self):
|
|
55336
|
-
r"""
|
|
55337
|
-
:param _ProjectId: 项目Id
|
|
55338
|
-
:type ProjectId: str
|
|
55339
|
-
:param _WorkflowId: 工作流id
|
|
55340
|
-
:type WorkflowId: str
|
|
55341
|
-
:param _DelayTime: 延迟时间,单位分钟
|
|
55342
|
-
:type DelayTime: int
|
|
55343
|
-
:param _StartupTime: 启动时间
|
|
55344
|
-
:type StartupTime: int
|
|
55345
|
-
:param _SelfDepend: 自依赖类型 1:有序串行 一次一个 排队, 2: 无序串行 一次一个 不排队, 3:并行 一次多个
|
|
55346
|
-
:type SelfDepend: int
|
|
55347
|
-
:param _CycleType: "周期类型 0:crontab类型, 1:分钟,2:小时,3:天,4:周,5:月,6:一次性,7:用户驱动,10:弹性周期 周,11:弹性周期 月,12:年,13:即时触发Instant类型,与正常周期调度任务逻辑隔离
|
|
55348
|
-
:type CycleType: int
|
|
55349
|
-
:param _CycleStep: 步长,间隔时间,最小1
|
|
55350
|
-
:type CycleStep: int
|
|
55351
|
-
:param _StartTime: 生效开始时间,格式 yyyy-MM-dd HH:mm:ss
|
|
55352
|
-
:type StartTime: str
|
|
55353
|
-
:param _EndTime: 生效结束时间,格式 yyyy-MM-dd HH:mm:ss
|
|
55354
|
-
:type EndTime: str
|
|
55355
|
-
:param _TaskAction: 调度配置-弹性周期配置,小时/周/月/年调度才有,小时任务指定每天的0点3点4点跑,则为'0,3,4'。
|
|
55356
|
-
:type TaskAction: str
|
|
55357
|
-
:param _CrontabExpression: cron表达式 周期类型为crontab调度才需要
|
|
55358
|
-
:type CrontabExpression: str
|
|
55359
|
-
:param _ExecutionStartTime: 执行时间左闭区间,格式:HH:mm 小时调度才有,例如小时任务, 每日固定区间生效
|
|
55360
|
-
:type ExecutionStartTime: str
|
|
55361
|
-
:param _ExecutionEndTime: 执行时间右闭区间,格式:HH:mm 小时调度才有,例如小时任务, 每日固定区间生效
|
|
55362
|
-
:type ExecutionEndTime: str
|
|
55363
|
-
:param _DependencyWorkflow: 工作流依赖 ,yes 或者no
|
|
55364
|
-
:type DependencyWorkflow: str
|
|
55365
|
-
"""
|
|
55366
|
-
self._ProjectId = None
|
|
55367
|
-
self._WorkflowId = None
|
|
55368
|
-
self._DelayTime = None
|
|
55369
|
-
self._StartupTime = None
|
|
55370
|
-
self._SelfDepend = None
|
|
55371
|
-
self._CycleType = None
|
|
55372
|
-
self._CycleStep = None
|
|
55373
|
-
self._StartTime = None
|
|
55374
|
-
self._EndTime = None
|
|
55375
|
-
self._TaskAction = None
|
|
55376
|
-
self._CrontabExpression = None
|
|
55377
|
-
self._ExecutionStartTime = None
|
|
55378
|
-
self._ExecutionEndTime = None
|
|
55379
|
-
self._DependencyWorkflow = None
|
|
55380
|
-
|
|
55381
|
-
@property
|
|
55382
|
-
def ProjectId(self):
|
|
55383
|
-
return self._ProjectId
|
|
55384
|
-
|
|
55385
|
-
@ProjectId.setter
|
|
55386
|
-
def ProjectId(self, ProjectId):
|
|
55387
|
-
self._ProjectId = ProjectId
|
|
55388
|
-
|
|
55389
|
-
@property
|
|
55390
|
-
def WorkflowId(self):
|
|
55391
|
-
return self._WorkflowId
|
|
55392
|
-
|
|
55393
|
-
@WorkflowId.setter
|
|
55394
|
-
def WorkflowId(self, WorkflowId):
|
|
55395
|
-
self._WorkflowId = WorkflowId
|
|
55396
|
-
|
|
55397
|
-
@property
|
|
55398
|
-
def DelayTime(self):
|
|
55399
|
-
return self._DelayTime
|
|
55400
|
-
|
|
55401
|
-
@DelayTime.setter
|
|
55402
|
-
def DelayTime(self, DelayTime):
|
|
55403
|
-
self._DelayTime = DelayTime
|
|
55404
|
-
|
|
55405
|
-
@property
|
|
55406
|
-
def StartupTime(self):
|
|
55407
|
-
return self._StartupTime
|
|
55408
|
-
|
|
55409
|
-
@StartupTime.setter
|
|
55410
|
-
def StartupTime(self, StartupTime):
|
|
55411
|
-
self._StartupTime = StartupTime
|
|
55412
|
-
|
|
55413
|
-
@property
|
|
55414
|
-
def SelfDepend(self):
|
|
55415
|
-
return self._SelfDepend
|
|
55416
|
-
|
|
55417
|
-
@SelfDepend.setter
|
|
55418
|
-
def SelfDepend(self, SelfDepend):
|
|
55419
|
-
self._SelfDepend = SelfDepend
|
|
55420
|
-
|
|
55421
|
-
@property
|
|
55422
|
-
def CycleType(self):
|
|
55423
|
-
return self._CycleType
|
|
55424
|
-
|
|
55425
|
-
@CycleType.setter
|
|
55426
|
-
def CycleType(self, CycleType):
|
|
55427
|
-
self._CycleType = CycleType
|
|
55428
|
-
|
|
55429
|
-
@property
|
|
55430
|
-
def CycleStep(self):
|
|
55431
|
-
return self._CycleStep
|
|
55432
|
-
|
|
55433
|
-
@CycleStep.setter
|
|
55434
|
-
def CycleStep(self, CycleStep):
|
|
55435
|
-
self._CycleStep = CycleStep
|
|
55436
|
-
|
|
55437
|
-
@property
|
|
55438
|
-
def StartTime(self):
|
|
55439
|
-
return self._StartTime
|
|
55440
|
-
|
|
55441
|
-
@StartTime.setter
|
|
55442
|
-
def StartTime(self, StartTime):
|
|
55443
|
-
self._StartTime = StartTime
|
|
55444
|
-
|
|
55445
|
-
@property
|
|
55446
|
-
def EndTime(self):
|
|
55447
|
-
return self._EndTime
|
|
55448
|
-
|
|
55449
|
-
@EndTime.setter
|
|
55450
|
-
def EndTime(self, EndTime):
|
|
55451
|
-
self._EndTime = EndTime
|
|
55452
|
-
|
|
55453
|
-
@property
|
|
55454
|
-
def TaskAction(self):
|
|
55455
|
-
return self._TaskAction
|
|
55456
|
-
|
|
55457
|
-
@TaskAction.setter
|
|
55458
|
-
def TaskAction(self, TaskAction):
|
|
55459
|
-
self._TaskAction = TaskAction
|
|
55460
|
-
|
|
55461
|
-
@property
|
|
55462
|
-
def CrontabExpression(self):
|
|
55463
|
-
return self._CrontabExpression
|
|
55464
|
-
|
|
55465
|
-
@CrontabExpression.setter
|
|
55466
|
-
def CrontabExpression(self, CrontabExpression):
|
|
55467
|
-
self._CrontabExpression = CrontabExpression
|
|
55468
|
-
|
|
55469
|
-
@property
|
|
55470
|
-
def ExecutionStartTime(self):
|
|
55471
|
-
return self._ExecutionStartTime
|
|
55472
|
-
|
|
55473
|
-
@ExecutionStartTime.setter
|
|
55474
|
-
def ExecutionStartTime(self, ExecutionStartTime):
|
|
55475
|
-
self._ExecutionStartTime = ExecutionStartTime
|
|
55476
|
-
|
|
55477
|
-
@property
|
|
55478
|
-
def ExecutionEndTime(self):
|
|
55479
|
-
return self._ExecutionEndTime
|
|
55480
|
-
|
|
55481
|
-
@ExecutionEndTime.setter
|
|
55482
|
-
def ExecutionEndTime(self, ExecutionEndTime):
|
|
55483
|
-
self._ExecutionEndTime = ExecutionEndTime
|
|
55484
|
-
|
|
55485
|
-
@property
|
|
55486
|
-
def DependencyWorkflow(self):
|
|
55487
|
-
return self._DependencyWorkflow
|
|
55488
|
-
|
|
55489
|
-
@DependencyWorkflow.setter
|
|
55490
|
-
def DependencyWorkflow(self, DependencyWorkflow):
|
|
55491
|
-
self._DependencyWorkflow = DependencyWorkflow
|
|
55492
|
-
|
|
55493
|
-
|
|
55494
|
-
def _deserialize(self, params):
|
|
55495
|
-
self._ProjectId = params.get("ProjectId")
|
|
55496
|
-
self._WorkflowId = params.get("WorkflowId")
|
|
55497
|
-
self._DelayTime = params.get("DelayTime")
|
|
55498
|
-
self._StartupTime = params.get("StartupTime")
|
|
55499
|
-
self._SelfDepend = params.get("SelfDepend")
|
|
55500
|
-
self._CycleType = params.get("CycleType")
|
|
55501
|
-
self._CycleStep = params.get("CycleStep")
|
|
55502
|
-
self._StartTime = params.get("StartTime")
|
|
55503
|
-
self._EndTime = params.get("EndTime")
|
|
55504
|
-
self._TaskAction = params.get("TaskAction")
|
|
55505
|
-
self._CrontabExpression = params.get("CrontabExpression")
|
|
55506
|
-
self._ExecutionStartTime = params.get("ExecutionStartTime")
|
|
55507
|
-
self._ExecutionEndTime = params.get("ExecutionEndTime")
|
|
55508
|
-
self._DependencyWorkflow = params.get("DependencyWorkflow")
|
|
55509
|
-
memeber_set = set(params.keys())
|
|
55510
|
-
for name, value in vars(self).items():
|
|
55511
|
-
property_name = name[1:]
|
|
55512
|
-
if property_name in memeber_set:
|
|
55513
|
-
memeber_set.remove(property_name)
|
|
55514
|
-
if len(memeber_set) > 0:
|
|
55515
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
55516
|
-
|
|
55517
|
-
|
|
55518
|
-
|
|
55519
|
-
class ModifyWorkflowScheduleResponse(AbstractModel):
|
|
55520
|
-
"""ModifyWorkflowSchedule返回参数结构体
|
|
55521
|
-
|
|
55522
|
-
"""
|
|
55523
|
-
|
|
55524
|
-
def __init__(self):
|
|
55525
|
-
r"""
|
|
55526
|
-
:param _Data: 执行结果
|
|
55527
|
-
:type Data: :class:`tencentcloud.wedata.v20210820.models.BatchResult`
|
|
55528
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
55529
|
-
:type RequestId: str
|
|
55530
|
-
"""
|
|
55531
|
-
self._Data = None
|
|
55532
|
-
self._RequestId = None
|
|
55533
|
-
|
|
55534
|
-
@property
|
|
55535
|
-
def Data(self):
|
|
55536
|
-
return self._Data
|
|
55537
|
-
|
|
55538
|
-
@Data.setter
|
|
55539
|
-
def Data(self, Data):
|
|
55540
|
-
self._Data = Data
|
|
55541
|
-
|
|
55542
|
-
@property
|
|
55543
|
-
def RequestId(self):
|
|
55544
|
-
return self._RequestId
|
|
55545
|
-
|
|
55546
|
-
@RequestId.setter
|
|
55547
|
-
def RequestId(self, RequestId):
|
|
55548
|
-
self._RequestId = RequestId
|
|
55549
|
-
|
|
55550
|
-
|
|
55551
|
-
def _deserialize(self, params):
|
|
55552
|
-
if params.get("Data") is not None:
|
|
55553
|
-
self._Data = BatchResult()
|
|
55554
|
-
self._Data._deserialize(params.get("Data"))
|
|
53804
|
+
self._Data = params.get("Data")
|
|
55555
53805
|
self._RequestId = params.get("RequestId")
|
|
55556
53806
|
|
|
55557
53807
|
|
|
55558
|
-
class
|
|
55559
|
-
"""
|
|
53808
|
+
class ModifyWorkflowScheduleRequest(AbstractModel):
|
|
53809
|
+
"""ModifyWorkflowSchedule请求参数结构体
|
|
55560
53810
|
|
|
55561
53811
|
"""
|
|
55562
53812
|
|
|
55563
53813
|
def __init__(self):
|
|
55564
53814
|
r"""
|
|
55565
|
-
:param
|
|
55566
|
-
:type
|
|
55567
|
-
:param
|
|
55568
|
-
:type
|
|
55569
|
-
:param
|
|
55570
|
-
:type
|
|
53815
|
+
:param _ProjectId: 项目Id
|
|
53816
|
+
:type ProjectId: str
|
|
53817
|
+
:param _WorkflowId: 工作流id
|
|
53818
|
+
:type WorkflowId: str
|
|
53819
|
+
:param _DelayTime: 延迟时间,单位分钟
|
|
53820
|
+
:type DelayTime: int
|
|
53821
|
+
:param _StartupTime: 启动时间
|
|
53822
|
+
:type StartupTime: int
|
|
53823
|
+
:param _SelfDepend: 自依赖类型 1:有序串行 一次一个 排队, 2: 无序串行 一次一个 不排队, 3:并行 一次多个
|
|
53824
|
+
:type SelfDepend: int
|
|
53825
|
+
:param _CycleType: "周期类型 0:crontab类型, 1:分钟,2:小时,3:天,4:周,5:月,6:一次性,7:用户驱动,10:弹性周期 周,11:弹性周期 月,12:年,13:即时触发Instant类型,与正常周期调度任务逻辑隔离
|
|
53826
|
+
:type CycleType: int
|
|
53827
|
+
:param _CycleStep: 步长,间隔时间,最小1
|
|
53828
|
+
:type CycleStep: int
|
|
53829
|
+
:param _StartTime: 生效开始时间,格式 yyyy-MM-dd HH:mm:ss
|
|
53830
|
+
:type StartTime: str
|
|
53831
|
+
:param _EndTime: 生效结束时间,格式 yyyy-MM-dd HH:mm:ss
|
|
53832
|
+
:type EndTime: str
|
|
53833
|
+
:param _TaskAction: 调度配置-弹性周期配置,小时/周/月/年调度才有,小时任务指定每天的0点3点4点跑,则为'0,3,4'。
|
|
53834
|
+
:type TaskAction: str
|
|
53835
|
+
:param _CrontabExpression: cron表达式 周期类型为crontab调度才需要
|
|
53836
|
+
:type CrontabExpression: str
|
|
53837
|
+
:param _ExecutionStartTime: 执行时间左闭区间,格式:HH:mm 小时调度才有,例如小时任务, 每日固定区间生效
|
|
53838
|
+
:type ExecutionStartTime: str
|
|
53839
|
+
:param _ExecutionEndTime: 执行时间右闭区间,格式:HH:mm 小时调度才有,例如小时任务, 每日固定区间生效
|
|
53840
|
+
:type ExecutionEndTime: str
|
|
53841
|
+
:param _DependencyWorkflow: 工作流依赖 ,yes 或者no
|
|
53842
|
+
:type DependencyWorkflow: str
|
|
55571
53843
|
"""
|
|
55572
|
-
self.
|
|
55573
|
-
self.
|
|
55574
|
-
self.
|
|
53844
|
+
self._ProjectId = None
|
|
53845
|
+
self._WorkflowId = None
|
|
53846
|
+
self._DelayTime = None
|
|
53847
|
+
self._StartupTime = None
|
|
53848
|
+
self._SelfDepend = None
|
|
53849
|
+
self._CycleType = None
|
|
53850
|
+
self._CycleStep = None
|
|
53851
|
+
self._StartTime = None
|
|
53852
|
+
self._EndTime = None
|
|
53853
|
+
self._TaskAction = None
|
|
53854
|
+
self._CrontabExpression = None
|
|
53855
|
+
self._ExecutionStartTime = None
|
|
53856
|
+
self._ExecutionEndTime = None
|
|
53857
|
+
self._DependencyWorkflow = None
|
|
55575
53858
|
|
|
55576
53859
|
@property
|
|
55577
|
-
def
|
|
55578
|
-
return self.
|
|
53860
|
+
def ProjectId(self):
|
|
53861
|
+
return self._ProjectId
|
|
55579
53862
|
|
|
55580
|
-
@
|
|
55581
|
-
def
|
|
55582
|
-
self.
|
|
53863
|
+
@ProjectId.setter
|
|
53864
|
+
def ProjectId(self, ProjectId):
|
|
53865
|
+
self._ProjectId = ProjectId
|
|
55583
53866
|
|
|
55584
53867
|
@property
|
|
55585
|
-
def
|
|
55586
|
-
return self.
|
|
53868
|
+
def WorkflowId(self):
|
|
53869
|
+
return self._WorkflowId
|
|
55587
53870
|
|
|
55588
|
-
@
|
|
55589
|
-
def
|
|
55590
|
-
self.
|
|
53871
|
+
@WorkflowId.setter
|
|
53872
|
+
def WorkflowId(self, WorkflowId):
|
|
53873
|
+
self._WorkflowId = WorkflowId
|
|
53874
|
+
|
|
53875
|
+
@property
|
|
53876
|
+
def DelayTime(self):
|
|
53877
|
+
return self._DelayTime
|
|
53878
|
+
|
|
53879
|
+
@DelayTime.setter
|
|
53880
|
+
def DelayTime(self, DelayTime):
|
|
53881
|
+
self._DelayTime = DelayTime
|
|
55591
53882
|
|
|
55592
53883
|
@property
|
|
55593
|
-
def
|
|
55594
|
-
return self.
|
|
53884
|
+
def StartupTime(self):
|
|
53885
|
+
return self._StartupTime
|
|
55595
53886
|
|
|
55596
|
-
@
|
|
55597
|
-
def
|
|
55598
|
-
self.
|
|
53887
|
+
@StartupTime.setter
|
|
53888
|
+
def StartupTime(self, StartupTime):
|
|
53889
|
+
self._StartupTime = StartupTime
|
|
53890
|
+
|
|
53891
|
+
@property
|
|
53892
|
+
def SelfDepend(self):
|
|
53893
|
+
return self._SelfDepend
|
|
53894
|
+
|
|
53895
|
+
@SelfDepend.setter
|
|
53896
|
+
def SelfDepend(self, SelfDepend):
|
|
53897
|
+
self._SelfDepend = SelfDepend
|
|
53898
|
+
|
|
53899
|
+
@property
|
|
53900
|
+
def CycleType(self):
|
|
53901
|
+
return self._CycleType
|
|
53902
|
+
|
|
53903
|
+
@CycleType.setter
|
|
53904
|
+
def CycleType(self, CycleType):
|
|
53905
|
+
self._CycleType = CycleType
|
|
53906
|
+
|
|
53907
|
+
@property
|
|
53908
|
+
def CycleStep(self):
|
|
53909
|
+
return self._CycleStep
|
|
53910
|
+
|
|
53911
|
+
@CycleStep.setter
|
|
53912
|
+
def CycleStep(self, CycleStep):
|
|
53913
|
+
self._CycleStep = CycleStep
|
|
53914
|
+
|
|
53915
|
+
@property
|
|
53916
|
+
def StartTime(self):
|
|
53917
|
+
return self._StartTime
|
|
53918
|
+
|
|
53919
|
+
@StartTime.setter
|
|
53920
|
+
def StartTime(self, StartTime):
|
|
53921
|
+
self._StartTime = StartTime
|
|
53922
|
+
|
|
53923
|
+
@property
|
|
53924
|
+
def EndTime(self):
|
|
53925
|
+
return self._EndTime
|
|
53926
|
+
|
|
53927
|
+
@EndTime.setter
|
|
53928
|
+
def EndTime(self, EndTime):
|
|
53929
|
+
self._EndTime = EndTime
|
|
53930
|
+
|
|
53931
|
+
@property
|
|
53932
|
+
def TaskAction(self):
|
|
53933
|
+
return self._TaskAction
|
|
53934
|
+
|
|
53935
|
+
@TaskAction.setter
|
|
53936
|
+
def TaskAction(self, TaskAction):
|
|
53937
|
+
self._TaskAction = TaskAction
|
|
53938
|
+
|
|
53939
|
+
@property
|
|
53940
|
+
def CrontabExpression(self):
|
|
53941
|
+
return self._CrontabExpression
|
|
53942
|
+
|
|
53943
|
+
@CrontabExpression.setter
|
|
53944
|
+
def CrontabExpression(self, CrontabExpression):
|
|
53945
|
+
self._CrontabExpression = CrontabExpression
|
|
53946
|
+
|
|
53947
|
+
@property
|
|
53948
|
+
def ExecutionStartTime(self):
|
|
53949
|
+
return self._ExecutionStartTime
|
|
53950
|
+
|
|
53951
|
+
@ExecutionStartTime.setter
|
|
53952
|
+
def ExecutionStartTime(self, ExecutionStartTime):
|
|
53953
|
+
self._ExecutionStartTime = ExecutionStartTime
|
|
53954
|
+
|
|
53955
|
+
@property
|
|
53956
|
+
def ExecutionEndTime(self):
|
|
53957
|
+
return self._ExecutionEndTime
|
|
53958
|
+
|
|
53959
|
+
@ExecutionEndTime.setter
|
|
53960
|
+
def ExecutionEndTime(self, ExecutionEndTime):
|
|
53961
|
+
self._ExecutionEndTime = ExecutionEndTime
|
|
53962
|
+
|
|
53963
|
+
@property
|
|
53964
|
+
def DependencyWorkflow(self):
|
|
53965
|
+
return self._DependencyWorkflow
|
|
53966
|
+
|
|
53967
|
+
@DependencyWorkflow.setter
|
|
53968
|
+
def DependencyWorkflow(self, DependencyWorkflow):
|
|
53969
|
+
self._DependencyWorkflow = DependencyWorkflow
|
|
55599
53970
|
|
|
55600
53971
|
|
|
55601
53972
|
def _deserialize(self, params):
|
|
55602
|
-
self.
|
|
55603
|
-
self.
|
|
55604
|
-
self.
|
|
53973
|
+
self._ProjectId = params.get("ProjectId")
|
|
53974
|
+
self._WorkflowId = params.get("WorkflowId")
|
|
53975
|
+
self._DelayTime = params.get("DelayTime")
|
|
53976
|
+
self._StartupTime = params.get("StartupTime")
|
|
53977
|
+
self._SelfDepend = params.get("SelfDepend")
|
|
53978
|
+
self._CycleType = params.get("CycleType")
|
|
53979
|
+
self._CycleStep = params.get("CycleStep")
|
|
53980
|
+
self._StartTime = params.get("StartTime")
|
|
53981
|
+
self._EndTime = params.get("EndTime")
|
|
53982
|
+
self._TaskAction = params.get("TaskAction")
|
|
53983
|
+
self._CrontabExpression = params.get("CrontabExpression")
|
|
53984
|
+
self._ExecutionStartTime = params.get("ExecutionStartTime")
|
|
53985
|
+
self._ExecutionEndTime = params.get("ExecutionEndTime")
|
|
53986
|
+
self._DependencyWorkflow = params.get("DependencyWorkflow")
|
|
55605
53987
|
memeber_set = set(params.keys())
|
|
55606
53988
|
for name, value in vars(self).items():
|
|
55607
53989
|
property_name = name[1:]
|
|
@@ -55612,6 +53994,45 @@ class Namespace(AbstractModel):
|
|
|
55612
53994
|
|
|
55613
53995
|
|
|
55614
53996
|
|
|
53997
|
+
class ModifyWorkflowScheduleResponse(AbstractModel):
|
|
53998
|
+
"""ModifyWorkflowSchedule返回参数结构体
|
|
53999
|
+
|
|
54000
|
+
"""
|
|
54001
|
+
|
|
54002
|
+
def __init__(self):
|
|
54003
|
+
r"""
|
|
54004
|
+
:param _Data: 执行结果
|
|
54005
|
+
:type Data: :class:`tencentcloud.wedata.v20210820.models.BatchResult`
|
|
54006
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
54007
|
+
:type RequestId: str
|
|
54008
|
+
"""
|
|
54009
|
+
self._Data = None
|
|
54010
|
+
self._RequestId = None
|
|
54011
|
+
|
|
54012
|
+
@property
|
|
54013
|
+
def Data(self):
|
|
54014
|
+
return self._Data
|
|
54015
|
+
|
|
54016
|
+
@Data.setter
|
|
54017
|
+
def Data(self, Data):
|
|
54018
|
+
self._Data = Data
|
|
54019
|
+
|
|
54020
|
+
@property
|
|
54021
|
+
def RequestId(self):
|
|
54022
|
+
return self._RequestId
|
|
54023
|
+
|
|
54024
|
+
@RequestId.setter
|
|
54025
|
+
def RequestId(self, RequestId):
|
|
54026
|
+
self._RequestId = RequestId
|
|
54027
|
+
|
|
54028
|
+
|
|
54029
|
+
def _deserialize(self, params):
|
|
54030
|
+
if params.get("Data") is not None:
|
|
54031
|
+
self._Data = BatchResult()
|
|
54032
|
+
self._Data._deserialize(params.get("Data"))
|
|
54033
|
+
self._RequestId = params.get("RequestId")
|
|
54034
|
+
|
|
54035
|
+
|
|
55615
54036
|
class OfflineInstance(AbstractModel):
|
|
55616
54037
|
"""离线实例
|
|
55617
54038
|
|
|
@@ -55619,10 +54040,10 @@ class OfflineInstance(AbstractModel):
|
|
|
55619
54040
|
|
|
55620
54041
|
def __init__(self):
|
|
55621
54042
|
r"""
|
|
55622
|
-
:param _CreateUin: 创建账号
|
|
54043
|
+
:param _CreateUin: 创建账号sub uin
|
|
55623
54044
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
55624
54045
|
:type CreateUin: str
|
|
55625
|
-
:param _OperatorUin: 操作账号
|
|
54046
|
+
:param _OperatorUin: 操作账号sub uin
|
|
55626
54047
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
55627
54048
|
:type OperatorUin: str
|
|
55628
54049
|
:param _OwnerUin: 主账号
|
|
@@ -55640,15 +54061,15 @@ class OfflineInstance(AbstractModel):
|
|
|
55640
54061
|
:type CurRunDate: str
|
|
55641
54062
|
:param _IssueId: 下发时间
|
|
55642
54063
|
:type IssueId: str
|
|
55643
|
-
:param _InlongTaskId:
|
|
54064
|
+
:param _InlongTaskId: 下发资源组id,非传入项
|
|
55644
54065
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
55645
54066
|
:type InlongTaskId: str
|
|
55646
54067
|
:param _ResourceGroup: 资源组
|
|
55647
54068
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
55648
54069
|
:type ResourceGroup: str
|
|
55649
|
-
:param _TaskRunType:
|
|
54070
|
+
:param _TaskRunType: 任务类型(1 调试运行,2 调度执行)
|
|
55650
54071
|
:type TaskRunType: int
|
|
55651
|
-
:param _State: 实例状态
|
|
54072
|
+
:param _State: 实例状态 EVENT_LISTENING|DEPENDENCE|BEFORE_ASPECT|ALLOCATED|LAUNCHED|KILL|SNAP_STATE_SAVING|ISSUED|RUNNING|AFTER_ASPECT|PENDING|KILLING|FINAL_STATE_SAVING|FAILED|KILL_FAILED| COMPLETED|EXPIRED|KILL_EXPIRED|DELETED
|
|
55652
54073
|
:type State: str
|
|
55653
54074
|
:param _StartTime: 开始时间
|
|
55654
54075
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -55857,19 +54278,19 @@ class OfflineTaskAddParam(AbstractModel):
|
|
|
55857
54278
|
r"""
|
|
55858
54279
|
:param _WorkflowName: 名称
|
|
55859
54280
|
:type WorkflowName: str
|
|
55860
|
-
:param _DependencyWorkflow:
|
|
54281
|
+
:param _DependencyWorkflow: 依赖:yes、no
|
|
55861
54282
|
:type DependencyWorkflow: str
|
|
55862
|
-
:param _StartTime:
|
|
54283
|
+
:param _StartTime: 任务开始数据时间。非空。默认当前时间
|
|
55863
54284
|
:type StartTime: str
|
|
55864
|
-
:param _EndTime:
|
|
54285
|
+
:param _EndTime: 任务结束数据时间。非空。默认当前时间
|
|
55865
54286
|
:type EndTime: str
|
|
55866
|
-
:param _CycleType:
|
|
54287
|
+
:param _CycleType: 周期类型。一次性任务:6、分钟任务:1、小时任务:2、天任务:3、周任务:4、月任务:5、crontab任务:0
|
|
55867
54288
|
:type CycleType: int
|
|
55868
|
-
:param _CycleStep:
|
|
54289
|
+
:param _CycleStep: 间隔,可选,默认1。非空。默认 1
|
|
55869
54290
|
:type CycleStep: int
|
|
55870
|
-
:param _DelayTime:
|
|
54291
|
+
:param _DelayTime: 延时执行时间,单位分钟
|
|
55871
54292
|
:type DelayTime: int
|
|
55872
|
-
:param _CrontabExpression:
|
|
54293
|
+
:param _CrontabExpression: 任务cron表达式,仅cron任务使用,其他时候默认为空
|
|
55873
54294
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
55874
54295
|
:type CrontabExpression: str
|
|
55875
54296
|
:param _RetryWait: 重试等待
|
|
@@ -55886,7 +54307,7 @@ class OfflineTaskAddParam(AbstractModel):
|
|
|
55886
54307
|
2 无序串行 一次一个,不排队 serial
|
|
55887
54308
|
3 并行 一次多个 parallel
|
|
55888
54309
|
:type SelfDepend: int
|
|
55889
|
-
:param _TaskAction:
|
|
54310
|
+
:param _TaskAction: 时间指定,如月任务指定1,3号,则填入 1,3。非空。默认 ""
|
|
55890
54311
|
月任务:如具体1,3号则写 "1,3",指定月末不可和具体号数一起输入,仅能为 "L"
|
|
55891
54312
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
55892
54313
|
:type TaskAction: str
|
|
@@ -55899,7 +54320,7 @@ class OfflineTaskAddParam(AbstractModel):
|
|
|
55899
54320
|
:param _TaskAutoSubmit: 是否自动提交
|
|
55900
54321
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
55901
54322
|
:type TaskAutoSubmit: bool
|
|
55902
|
-
:param _InstanceInitStrategy:
|
|
54323
|
+
:param _InstanceInitStrategy: 实例生成方式,T_PLUS_0 当天任务当天调度 / T_PLUS_1 当天任务后一天调度
|
|
55903
54324
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
55904
54325
|
:type InstanceInitStrategy: str
|
|
55905
54326
|
"""
|
|
@@ -58613,15 +57034,15 @@ class RealTimeTaskSpeed(AbstractModel):
|
|
|
58613
57034
|
|
|
58614
57035
|
|
|
58615
57036
|
class RecordField(AbstractModel):
|
|
58616
|
-
"""
|
|
57037
|
+
"""通用记录字段,与服务端约定传入合法的键值对
|
|
58617
57038
|
|
|
58618
57039
|
"""
|
|
58619
57040
|
|
|
58620
57041
|
def __init__(self):
|
|
58621
57042
|
r"""
|
|
58622
|
-
:param _Name:
|
|
57043
|
+
:param _Name: 字段名称,拓展字段名称
|
|
58623
57044
|
:type Name: str
|
|
58624
|
-
:param _Value:
|
|
57045
|
+
:param _Value: 字段值,拓展字段值
|
|
58625
57046
|
:type Value: str
|
|
58626
57047
|
"""
|
|
58627
57048
|
self._Name = None
|
|
@@ -59902,76 +58323,6 @@ class ResourcePathTree(AbstractModel):
|
|
|
59902
58323
|
|
|
59903
58324
|
|
|
59904
58325
|
|
|
59905
|
-
class RestartInLongAgentRequest(AbstractModel):
|
|
59906
|
-
"""RestartInLongAgent请求参数结构体
|
|
59907
|
-
|
|
59908
|
-
"""
|
|
59909
|
-
|
|
59910
|
-
def __init__(self):
|
|
59911
|
-
r"""
|
|
59912
|
-
:param _AgentId: 采集器ID
|
|
59913
|
-
:type AgentId: str
|
|
59914
|
-
:param _ProjectId: WeData项目ID
|
|
59915
|
-
:type ProjectId: str
|
|
59916
|
-
"""
|
|
59917
|
-
self._AgentId = None
|
|
59918
|
-
self._ProjectId = None
|
|
59919
|
-
|
|
59920
|
-
@property
|
|
59921
|
-
def AgentId(self):
|
|
59922
|
-
return self._AgentId
|
|
59923
|
-
|
|
59924
|
-
@AgentId.setter
|
|
59925
|
-
def AgentId(self, AgentId):
|
|
59926
|
-
self._AgentId = AgentId
|
|
59927
|
-
|
|
59928
|
-
@property
|
|
59929
|
-
def ProjectId(self):
|
|
59930
|
-
return self._ProjectId
|
|
59931
|
-
|
|
59932
|
-
@ProjectId.setter
|
|
59933
|
-
def ProjectId(self, ProjectId):
|
|
59934
|
-
self._ProjectId = ProjectId
|
|
59935
|
-
|
|
59936
|
-
|
|
59937
|
-
def _deserialize(self, params):
|
|
59938
|
-
self._AgentId = params.get("AgentId")
|
|
59939
|
-
self._ProjectId = params.get("ProjectId")
|
|
59940
|
-
memeber_set = set(params.keys())
|
|
59941
|
-
for name, value in vars(self).items():
|
|
59942
|
-
property_name = name[1:]
|
|
59943
|
-
if property_name in memeber_set:
|
|
59944
|
-
memeber_set.remove(property_name)
|
|
59945
|
-
if len(memeber_set) > 0:
|
|
59946
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
59947
|
-
|
|
59948
|
-
|
|
59949
|
-
|
|
59950
|
-
class RestartInLongAgentResponse(AbstractModel):
|
|
59951
|
-
"""RestartInLongAgent返回参数结构体
|
|
59952
|
-
|
|
59953
|
-
"""
|
|
59954
|
-
|
|
59955
|
-
def __init__(self):
|
|
59956
|
-
r"""
|
|
59957
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
59958
|
-
:type RequestId: str
|
|
59959
|
-
"""
|
|
59960
|
-
self._RequestId = None
|
|
59961
|
-
|
|
59962
|
-
@property
|
|
59963
|
-
def RequestId(self):
|
|
59964
|
-
return self._RequestId
|
|
59965
|
-
|
|
59966
|
-
@RequestId.setter
|
|
59967
|
-
def RequestId(self, RequestId):
|
|
59968
|
-
self._RequestId = RequestId
|
|
59969
|
-
|
|
59970
|
-
|
|
59971
|
-
def _deserialize(self, params):
|
|
59972
|
-
self._RequestId = params.get("RequestId")
|
|
59973
|
-
|
|
59974
|
-
|
|
59975
58326
|
class ResumeIntegrationTaskRequest(AbstractModel):
|
|
59976
58327
|
"""ResumeIntegrationTask请求参数结构体
|
|
59977
58328
|
|
|
@@ -71921,7 +70272,7 @@ class TaskAlarmInfo(AbstractModel):
|
|
|
71921
70272
|
:type AlarmWay: str
|
|
71922
70273
|
:param _TaskType: 任务类型(201表示实时,202表示离线)
|
|
71923
70274
|
:type TaskType: int
|
|
71924
|
-
:param _Id:
|
|
70275
|
+
:param _Id: ID
|
|
71925
70276
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
71926
70277
|
:type Id: str
|
|
71927
70278
|
:param _RegularId: 规则ID
|
|
@@ -80707,100 +79058,6 @@ class UnlockIntegrationTaskResponse(AbstractModel):
|
|
|
80707
79058
|
self._RequestId = params.get("RequestId")
|
|
80708
79059
|
|
|
80709
79060
|
|
|
80710
|
-
class UpdateInLongAgentRequest(AbstractModel):
|
|
80711
|
-
"""UpdateInLongAgent请求参数结构体
|
|
80712
|
-
|
|
80713
|
-
"""
|
|
80714
|
-
|
|
80715
|
-
def __init__(self):
|
|
80716
|
-
r"""
|
|
80717
|
-
:param _AgentId: 采集器ID
|
|
80718
|
-
:type AgentId: str
|
|
80719
|
-
:param _ProjectId: WeData项目ID
|
|
80720
|
-
:type ProjectId: str
|
|
80721
|
-
:param _AgentName: 采集器名称
|
|
80722
|
-
:type AgentName: str
|
|
80723
|
-
:param _ExecutorGroupId: 集成资源组ID
|
|
80724
|
-
:type ExecutorGroupId: str
|
|
80725
|
-
"""
|
|
80726
|
-
self._AgentId = None
|
|
80727
|
-
self._ProjectId = None
|
|
80728
|
-
self._AgentName = None
|
|
80729
|
-
self._ExecutorGroupId = None
|
|
80730
|
-
|
|
80731
|
-
@property
|
|
80732
|
-
def AgentId(self):
|
|
80733
|
-
return self._AgentId
|
|
80734
|
-
|
|
80735
|
-
@AgentId.setter
|
|
80736
|
-
def AgentId(self, AgentId):
|
|
80737
|
-
self._AgentId = AgentId
|
|
80738
|
-
|
|
80739
|
-
@property
|
|
80740
|
-
def ProjectId(self):
|
|
80741
|
-
return self._ProjectId
|
|
80742
|
-
|
|
80743
|
-
@ProjectId.setter
|
|
80744
|
-
def ProjectId(self, ProjectId):
|
|
80745
|
-
self._ProjectId = ProjectId
|
|
80746
|
-
|
|
80747
|
-
@property
|
|
80748
|
-
def AgentName(self):
|
|
80749
|
-
return self._AgentName
|
|
80750
|
-
|
|
80751
|
-
@AgentName.setter
|
|
80752
|
-
def AgentName(self, AgentName):
|
|
80753
|
-
self._AgentName = AgentName
|
|
80754
|
-
|
|
80755
|
-
@property
|
|
80756
|
-
def ExecutorGroupId(self):
|
|
80757
|
-
return self._ExecutorGroupId
|
|
80758
|
-
|
|
80759
|
-
@ExecutorGroupId.setter
|
|
80760
|
-
def ExecutorGroupId(self, ExecutorGroupId):
|
|
80761
|
-
self._ExecutorGroupId = ExecutorGroupId
|
|
80762
|
-
|
|
80763
|
-
|
|
80764
|
-
def _deserialize(self, params):
|
|
80765
|
-
self._AgentId = params.get("AgentId")
|
|
80766
|
-
self._ProjectId = params.get("ProjectId")
|
|
80767
|
-
self._AgentName = params.get("AgentName")
|
|
80768
|
-
self._ExecutorGroupId = params.get("ExecutorGroupId")
|
|
80769
|
-
memeber_set = set(params.keys())
|
|
80770
|
-
for name, value in vars(self).items():
|
|
80771
|
-
property_name = name[1:]
|
|
80772
|
-
if property_name in memeber_set:
|
|
80773
|
-
memeber_set.remove(property_name)
|
|
80774
|
-
if len(memeber_set) > 0:
|
|
80775
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
80776
|
-
|
|
80777
|
-
|
|
80778
|
-
|
|
80779
|
-
class UpdateInLongAgentResponse(AbstractModel):
|
|
80780
|
-
"""UpdateInLongAgent返回参数结构体
|
|
80781
|
-
|
|
80782
|
-
"""
|
|
80783
|
-
|
|
80784
|
-
def __init__(self):
|
|
80785
|
-
r"""
|
|
80786
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
80787
|
-
:type RequestId: str
|
|
80788
|
-
"""
|
|
80789
|
-
self._RequestId = None
|
|
80790
|
-
|
|
80791
|
-
@property
|
|
80792
|
-
def RequestId(self):
|
|
80793
|
-
return self._RequestId
|
|
80794
|
-
|
|
80795
|
-
@RequestId.setter
|
|
80796
|
-
def RequestId(self, RequestId):
|
|
80797
|
-
self._RequestId = RequestId
|
|
80798
|
-
|
|
80799
|
-
|
|
80800
|
-
def _deserialize(self, params):
|
|
80801
|
-
self._RequestId = params.get("RequestId")
|
|
80802
|
-
|
|
80803
|
-
|
|
80804
79061
|
class UpdateWorkflowOwnerRequest(AbstractModel):
|
|
80805
79062
|
"""UpdateWorkflowOwner请求参数结构体
|
|
80806
79063
|
|