tencentcloud-sdk-python-intl-en 3.0.1186__py2.py3-none-any.whl → 3.0.1188__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py +24 -0
- tencentcloud/intlpartnersmgt/v20220928/models.py +363 -0
- tencentcloud/ocr/v20181119/models.py +364 -0
- tencentcloud/ocr/v20181119/ocr_client.py +23 -0
- tencentcloud/wedata/v20210820/models.py +153 -110
- {tencentcloud_sdk_python_intl_en-3.0.1186.dist-info → tencentcloud_sdk_python_intl_en-3.0.1188.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1186.dist-info → tencentcloud_sdk_python_intl_en-3.0.1188.dist-info}/RECORD +10 -10
- {tencentcloud_sdk_python_intl_en-3.0.1186.dist-info → tencentcloud_sdk_python_intl_en-3.0.1188.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1186.dist-info → tencentcloud_sdk_python_intl_en-3.0.1188.dist-info}/top_level.txt +0 -0
|
@@ -39568,7 +39568,9 @@ class GetInstanceLogRequest(AbstractModel):
|
|
|
39568
39568
|
:type ProjectId: str
|
|
39569
39569
|
:param _InstanceKey: Unique identifier of an instance.
|
|
39570
39570
|
:type InstanceKey: str
|
|
39571
|
-
:param _LifeRoundNum:
|
|
39571
|
+
:param _LifeRoundNum: Instance lifetime number, which identifies one-time execution of the instance.
|
|
39572
|
+
|
|
39573
|
+
For example: the number of the first run of a periodic instance is 0. when the user reruns the instance later, the number of the second execution is 1.
|
|
39572
39574
|
:type LifeRoundNum: int
|
|
39573
39575
|
:param _ScheduleTimeZone: Time zone.
|
|
39574
39576
|
Time zone. specifies the time zone. the default value is UTC+8.
|
|
@@ -39598,6 +39600,11 @@ The default is 1.
|
|
|
39598
39600
|
:param _EndLineCount: End line number for obtaining logs.
|
|
39599
39601
|
The default value is 10000.
|
|
39600
39602
|
:type EndLineCount: int
|
|
39603
|
+
:param _ExtInfo: Used when performing a paging query for logs. it has no specific business meaning.
|
|
39604
|
+
|
|
39605
|
+
Specifies that the value is null for the first query.
|
|
39606
|
+
Use the ExtInfo field value in the returned information from the previous query for the second and subsequent queries.
|
|
39607
|
+
:type ExtInfo: str
|
|
39601
39608
|
"""
|
|
39602
39609
|
self._ProjectId = None
|
|
39603
39610
|
self._InstanceKey = None
|
|
@@ -39609,6 +39616,7 @@ The default value is 10000.
|
|
|
39609
39616
|
self._LogLevel = None
|
|
39610
39617
|
self._StartLineNum = None
|
|
39611
39618
|
self._EndLineCount = None
|
|
39619
|
+
self._ExtInfo = None
|
|
39612
39620
|
|
|
39613
39621
|
@property
|
|
39614
39622
|
def ProjectId(self):
|
|
@@ -39634,7 +39642,9 @@ The default value is 10000.
|
|
|
39634
39642
|
|
|
39635
39643
|
@property
|
|
39636
39644
|
def LifeRoundNum(self):
|
|
39637
|
-
"""
|
|
39645
|
+
"""Instance lifetime number, which identifies one-time execution of the instance.
|
|
39646
|
+
|
|
39647
|
+
For example: the number of the first run of a periodic instance is 0. when the user reruns the instance later, the number of the second execution is 1.
|
|
39638
39648
|
:rtype: int
|
|
39639
39649
|
"""
|
|
39640
39650
|
return self._LifeRoundNum
|
|
@@ -39734,6 +39744,20 @@ The default value is 10000.
|
|
|
39734
39744
|
def EndLineCount(self, EndLineCount):
|
|
39735
39745
|
self._EndLineCount = EndLineCount
|
|
39736
39746
|
|
|
39747
|
+
@property
|
|
39748
|
+
def ExtInfo(self):
|
|
39749
|
+
"""Used when performing a paging query for logs. it has no specific business meaning.
|
|
39750
|
+
|
|
39751
|
+
Specifies that the value is null for the first query.
|
|
39752
|
+
Use the ExtInfo field value in the returned information from the previous query for the second and subsequent queries.
|
|
39753
|
+
:rtype: str
|
|
39754
|
+
"""
|
|
39755
|
+
return self._ExtInfo
|
|
39756
|
+
|
|
39757
|
+
@ExtInfo.setter
|
|
39758
|
+
def ExtInfo(self, ExtInfo):
|
|
39759
|
+
self._ExtInfo = ExtInfo
|
|
39760
|
+
|
|
39737
39761
|
|
|
39738
39762
|
def _deserialize(self, params):
|
|
39739
39763
|
self._ProjectId = params.get("ProjectId")
|
|
@@ -39746,6 +39770,7 @@ The default value is 10000.
|
|
|
39746
39770
|
self._LogLevel = params.get("LogLevel")
|
|
39747
39771
|
self._StartLineNum = params.get("StartLineNum")
|
|
39748
39772
|
self._EndLineCount = params.get("EndLineCount")
|
|
39773
|
+
self._ExtInfo = params.get("ExtInfo")
|
|
39749
39774
|
memeber_set = set(params.keys())
|
|
39750
39775
|
for name, value in vars(self).items():
|
|
39751
39776
|
property_name = name[1:]
|
|
@@ -40917,10 +40942,10 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
40917
40942
|
|
|
40918
40943
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
40919
40944
|
:type ExecutorGroupName: str
|
|
40920
|
-
:param _CurRunDate:
|
|
40945
|
+
:param _CurRunDate: Instance data time.
|
|
40921
40946
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
40922
40947
|
:type CurRunDate: str
|
|
40923
|
-
:param _NextCurDate: Next
|
|
40948
|
+
:param _NextCurDate: Next instance data time.
|
|
40924
40949
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
40925
40950
|
:type NextCurDate: str
|
|
40926
40951
|
:param _TryLimit: Limit on the number of retries issued each time a run fails.
|
|
@@ -40932,23 +40957,25 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
40932
40957
|
:param _TotalRunNum: Cumulative running times.
|
|
40933
40958
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
40934
40959
|
:type TotalRunNum: int
|
|
40935
|
-
:param _LifeRoundNum:
|
|
40960
|
+
:param _LifeRoundNum: Instance lifetime number, which identifies one-time execution of the instance.
|
|
40961
|
+
|
|
40962
|
+
For example: the number of the first run of a periodic instance is 0. after the user reruns the instance later, the number of the second execution is 1.
|
|
40936
40963
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
40937
40964
|
:type LifeRoundNum: int
|
|
40938
40965
|
:param _InstanceType: Instance type.
|
|
40939
40966
|
|
|
40940
|
-
-0 indicates
|
|
40941
|
-
-1 indicates
|
|
40942
|
-
-2 indicates
|
|
40967
|
+
-0 indicates Replenished Instance.
|
|
40968
|
+
-1 indicates Periodic Instance.
|
|
40969
|
+
-2 indicates Non-Periodic Instance.
|
|
40943
40970
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
40944
40971
|
:type InstanceType: int
|
|
40945
40972
|
:param _InstanceState: Indicates the status of an instance.
|
|
40946
40973
|
|
|
40947
|
-
-Indicates waiting for event.
|
|
40974
|
+
-[0] Indicates waiting for event.
|
|
40948
40975
|
-[12] indicates waiting for upstream.
|
|
40949
40976
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
40950
|
-
-1, 19, 22 indicate running.
|
|
40951
|
-
-21: skip running.
|
|
40977
|
+
-[1, 19, 22] indicate running.
|
|
40978
|
+
-[21]: skip running.
|
|
40952
40979
|
-[3] indicates retry on failure.
|
|
40953
40980
|
-[8, 4, 5, 13] indicates a failure.
|
|
40954
40981
|
-[2] indicates a success.
|
|
@@ -40969,11 +40996,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
40969
40996
|
:param _InstanceRunType: Instance running trigger type.
|
|
40970
40997
|
|
|
40971
40998
|
-RERUN indicates rerunning.
|
|
40972
|
-
-ADDITION indicates
|
|
40999
|
+
-ADDITION indicates data replenishment.
|
|
40973
41000
|
-PERIODIC indicates a period.
|
|
40974
41001
|
-APERIODIC indicates non-periodic.
|
|
40975
41002
|
-RERUN_SKIP_RUN indicates re-run - empty run.
|
|
40976
|
-
-ADDITION_SKIP_RUN indicates a
|
|
41003
|
+
-ADDITION_SKIP_RUN indicates a data replenishment run - empty run.
|
|
40977
41004
|
-PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
|
|
40978
41005
|
-APERIODIC_SKIP_RUN indicates a non-periodic empty run.
|
|
40979
41006
|
-MANUAL_TRIGGER indicates manual triggering.
|
|
@@ -41194,7 +41221,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
41194
41221
|
|
|
41195
41222
|
@property
|
|
41196
41223
|
def CurRunDate(self):
|
|
41197
|
-
"""
|
|
41224
|
+
"""Instance data time.
|
|
41198
41225
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41199
41226
|
:rtype: str
|
|
41200
41227
|
"""
|
|
@@ -41206,7 +41233,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
41206
41233
|
|
|
41207
41234
|
@property
|
|
41208
41235
|
def NextCurDate(self):
|
|
41209
|
-
"""Next
|
|
41236
|
+
"""Next instance data time.
|
|
41210
41237
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41211
41238
|
:rtype: str
|
|
41212
41239
|
"""
|
|
@@ -41254,7 +41281,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
41254
41281
|
|
|
41255
41282
|
@property
|
|
41256
41283
|
def LifeRoundNum(self):
|
|
41257
|
-
"""
|
|
41284
|
+
"""Instance lifetime number, which identifies one-time execution of the instance.
|
|
41285
|
+
|
|
41286
|
+
For example: the number of the first run of a periodic instance is 0. after the user reruns the instance later, the number of the second execution is 1.
|
|
41258
41287
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41259
41288
|
:rtype: int
|
|
41260
41289
|
"""
|
|
@@ -41268,9 +41297,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
41268
41297
|
def InstanceType(self):
|
|
41269
41298
|
"""Instance type.
|
|
41270
41299
|
|
|
41271
|
-
-0 indicates
|
|
41272
|
-
-1 indicates
|
|
41273
|
-
-2 indicates
|
|
41300
|
+
-0 indicates Replenished Instance.
|
|
41301
|
+
-1 indicates Periodic Instance.
|
|
41302
|
+
-2 indicates Non-Periodic Instance.
|
|
41274
41303
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41275
41304
|
:rtype: int
|
|
41276
41305
|
"""
|
|
@@ -41284,11 +41313,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
41284
41313
|
def InstanceState(self):
|
|
41285
41314
|
"""Indicates the status of an instance.
|
|
41286
41315
|
|
|
41287
|
-
-Indicates waiting for event.
|
|
41316
|
+
-[0] Indicates waiting for event.
|
|
41288
41317
|
-[12] indicates waiting for upstream.
|
|
41289
41318
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
41290
|
-
-1, 19, 22 indicate running.
|
|
41291
|
-
-21: skip running.
|
|
41319
|
+
-[1, 19, 22] indicate running.
|
|
41320
|
+
-[21]: skip running.
|
|
41292
41321
|
-[3] indicates retry on failure.
|
|
41293
41322
|
-[8, 4, 5, 13] indicates a failure.
|
|
41294
41323
|
-[2] indicates a success.
|
|
@@ -41354,11 +41383,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
41354
41383
|
"""Instance running trigger type.
|
|
41355
41384
|
|
|
41356
41385
|
-RERUN indicates rerunning.
|
|
41357
|
-
-ADDITION indicates
|
|
41386
|
+
-ADDITION indicates data replenishment.
|
|
41358
41387
|
-PERIODIC indicates a period.
|
|
41359
41388
|
-APERIODIC indicates non-periodic.
|
|
41360
41389
|
-RERUN_SKIP_RUN indicates re-run - empty run.
|
|
41361
|
-
-ADDITION_SKIP_RUN indicates a
|
|
41390
|
+
-ADDITION_SKIP_RUN indicates a data replenishment run - empty run.
|
|
41362
41391
|
-PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
|
|
41363
41392
|
-APERIODIC_SKIP_RUN indicates a non-periodic empty run.
|
|
41364
41393
|
-MANUAL_TRIGGER indicates manual triggering.
|
|
@@ -41732,27 +41761,29 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
41732
41761
|
:type InstanceKey: str
|
|
41733
41762
|
:param _InstanceState: Instance status.
|
|
41734
41763
|
|
|
41735
|
-
-Indicates waiting for event.
|
|
41764
|
+
-[0] Indicates waiting for event.
|
|
41736
41765
|
-[12] indicates waiting for upstream.
|
|
41737
41766
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
41738
|
-
-1, 19, 22 indicate running.
|
|
41739
|
-
-21
|
|
41767
|
+
-[1, 19, 22] indicate running.
|
|
41768
|
+
-[21] skip running.
|
|
41740
41769
|
-[3] indicates retry on failure.
|
|
41741
41770
|
-[8, 4, 5, 13] indicates a failure.
|
|
41742
41771
|
-[2] indicates a success.
|
|
41743
41772
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41744
41773
|
:type InstanceState: int
|
|
41745
|
-
:param _LifeRoundNum:
|
|
41774
|
+
:param _LifeRoundNum: Instance lifetime number, which identifies one-time execution of the instance.
|
|
41775
|
+
|
|
41776
|
+
For example: the number of the first run of a periodic instance is 0. when the user reruns the instance later, the number of the second execution is 1.
|
|
41746
41777
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41747
41778
|
:type LifeRoundNum: int
|
|
41748
41779
|
:param _RunType: Instance running trigger type.
|
|
41749
41780
|
|
|
41750
41781
|
-RERUN indicates rerunning.
|
|
41751
|
-
-ADDITION indicates
|
|
41782
|
+
-ADDITION indicates data replenishment.
|
|
41752
41783
|
-PERIODIC indicates a period.
|
|
41753
41784
|
-APERIODIC indicates non-periodic.
|
|
41754
41785
|
-RERUN_SKIP_RUN means empty run for re-run.
|
|
41755
|
-
-ADDITION_SKIP_RUN indicates
|
|
41786
|
+
-ADDITION_SKIP_RUN indicates data replenishment - empty run.
|
|
41756
41787
|
-PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
|
|
41757
41788
|
-APERIODIC_SKIP_RUN indicates a non-periodic empty run.
|
|
41758
41789
|
-MANUAL_TRIGGER indicates manual triggering.
|
|
@@ -41770,6 +41801,8 @@ The file content specifies the code used for running the execution instance this
|
|
|
41770
41801
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41771
41802
|
:type CodeFileName: str
|
|
41772
41803
|
:param _ExecutionJobId: Dispatch execution ID.
|
|
41804
|
+
The unified execution platform dispatches execution to the new version executor with a unique ID to identify a specific execution, while the existing old executors do not have this ID when dispatching execution.
|
|
41805
|
+
If it is unknown whether the executor version supports this ID, contact tencent cloud's operations team.
|
|
41773
41806
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41774
41807
|
:type ExecutionJobId: str
|
|
41775
41808
|
:param _BrokerIp: The execution node where the log resides.
|
|
@@ -41817,11 +41850,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
41817
41850
|
def InstanceState(self):
|
|
41818
41851
|
"""Instance status.
|
|
41819
41852
|
|
|
41820
|
-
-Indicates waiting for event.
|
|
41853
|
+
-[0] Indicates waiting for event.
|
|
41821
41854
|
-[12] indicates waiting for upstream.
|
|
41822
41855
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
41823
|
-
-1, 19, 22 indicate running.
|
|
41824
|
-
-21
|
|
41856
|
+
-[1, 19, 22] indicate running.
|
|
41857
|
+
-[21] skip running.
|
|
41825
41858
|
-[3] indicates retry on failure.
|
|
41826
41859
|
-[8, 4, 5, 13] indicates a failure.
|
|
41827
41860
|
-[2] indicates a success.
|
|
@@ -41836,7 +41869,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
41836
41869
|
|
|
41837
41870
|
@property
|
|
41838
41871
|
def LifeRoundNum(self):
|
|
41839
|
-
"""
|
|
41872
|
+
"""Instance lifetime number, which identifies one-time execution of the instance.
|
|
41873
|
+
|
|
41874
|
+
For example: the number of the first run of a periodic instance is 0. when the user reruns the instance later, the number of the second execution is 1.
|
|
41840
41875
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41841
41876
|
:rtype: int
|
|
41842
41877
|
"""
|
|
@@ -41851,11 +41886,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
41851
41886
|
"""Instance running trigger type.
|
|
41852
41887
|
|
|
41853
41888
|
-RERUN indicates rerunning.
|
|
41854
|
-
-ADDITION indicates
|
|
41889
|
+
-ADDITION indicates data replenishment.
|
|
41855
41890
|
-PERIODIC indicates a period.
|
|
41856
41891
|
-APERIODIC indicates non-periodic.
|
|
41857
41892
|
-RERUN_SKIP_RUN means empty run for re-run.
|
|
41858
|
-
-ADDITION_SKIP_RUN indicates
|
|
41893
|
+
-ADDITION_SKIP_RUN indicates data replenishment - empty run.
|
|
41859
41894
|
-PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
|
|
41860
41895
|
-APERIODIC_SKIP_RUN indicates a non-periodic empty run.
|
|
41861
41896
|
-MANUAL_TRIGGER indicates manual triggering.
|
|
@@ -41909,6 +41944,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
41909
41944
|
@property
|
|
41910
41945
|
def ExecutionJobId(self):
|
|
41911
41946
|
"""Dispatch execution ID.
|
|
41947
|
+
The unified execution platform dispatches execution to the new version executor with a unique ID to identify a specific execution, while the existing old executors do not have this ID when dispatching execution.
|
|
41948
|
+
If it is unknown whether the executor version supports this ID, contact tencent cloud's operations team.
|
|
41912
41949
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41913
41950
|
:rtype: str
|
|
41914
41951
|
"""
|
|
@@ -42006,11 +42043,11 @@ class InstanceLifeDetailDto(AbstractModel):
|
|
|
42006
42043
|
def __init__(self):
|
|
42007
42044
|
r"""
|
|
42008
42045
|
:param _State: Indicates the status of an instance.
|
|
42009
|
-
-Indicates waiting for event.
|
|
42046
|
+
-[0] Indicates waiting for event.
|
|
42010
42047
|
-[12] indicates waiting for upstream.
|
|
42011
42048
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
42012
|
-
-1, 19, 22
|
|
42013
|
-
-21
|
|
42049
|
+
-[1, 19, 22] indicate running.
|
|
42050
|
+
-[21] skip running.
|
|
42014
42051
|
-[3] indicates retry on failure.
|
|
42015
42052
|
-[8, 4, 5, 13] indicates a failure.
|
|
42016
42053
|
-[2] indicates a success.
|
|
@@ -42021,14 +42058,14 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
42021
42058
|
:type StartTime: str
|
|
42022
42059
|
:param _DetailState: Instance lifecycle phase status.
|
|
42023
42060
|
|
|
42024
|
-
-WAIT_UPSTREAM indicates waiting for event
|
|
42025
|
-
-WAIT_RUN indicates
|
|
42026
|
-
-RUNNING indicates
|
|
42027
|
-
-COMPLETE indicates
|
|
42028
|
-
-FAILED indicates
|
|
42029
|
-
-EXPIRED indicates
|
|
42030
|
-
-SKIP_RUNNING indicates
|
|
42031
|
-
-HISTORY indicates compatibility with historical instances.
|
|
42061
|
+
-WAIT_UPSTREAM indicates waiting for an event or upstream status.
|
|
42062
|
+
-WAIT_RUN indicates waiting for running status.
|
|
42063
|
+
-RUNNING indicates the running state.
|
|
42064
|
+
-COMPLETE indicates terminal state - completed.
|
|
42065
|
+
-FAILED indicates terminal state - retry after failure.
|
|
42066
|
+
-EXPIRED indicates terminal state - failure.
|
|
42067
|
+
-SKIP_RUNNING indicates terminal state - a branch skipped by the upstream branch node.
|
|
42068
|
+
-HISTORY indicates compatibility with historical instances before march 30, 2024. no need to pay attention to this enumeration type for instances afterward.
|
|
42032
42069
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
42033
42070
|
:type DetailState: str
|
|
42034
42071
|
:param _EndTime: End Time of the State
|
|
@@ -42043,11 +42080,11 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
42043
42080
|
@property
|
|
42044
42081
|
def State(self):
|
|
42045
42082
|
"""Indicates the status of an instance.
|
|
42046
|
-
-Indicates waiting for event.
|
|
42083
|
+
-[0] Indicates waiting for event.
|
|
42047
42084
|
-[12] indicates waiting for upstream.
|
|
42048
42085
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
42049
|
-
-1, 19, 22
|
|
42050
|
-
-21
|
|
42086
|
+
-[1, 19, 22] indicate running.
|
|
42087
|
+
-[21] skip running.
|
|
42051
42088
|
-[3] indicates retry on failure.
|
|
42052
42089
|
-[8, 4, 5, 13] indicates a failure.
|
|
42053
42090
|
-[2] indicates a success.
|
|
@@ -42076,14 +42113,14 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
42076
42113
|
def DetailState(self):
|
|
42077
42114
|
"""Instance lifecycle phase status.
|
|
42078
42115
|
|
|
42079
|
-
-WAIT_UPSTREAM indicates waiting for event
|
|
42080
|
-
-WAIT_RUN indicates
|
|
42081
|
-
-RUNNING indicates
|
|
42082
|
-
-COMPLETE indicates
|
|
42083
|
-
-FAILED indicates
|
|
42084
|
-
-EXPIRED indicates
|
|
42085
|
-
-SKIP_RUNNING indicates
|
|
42086
|
-
-HISTORY indicates compatibility with historical instances.
|
|
42116
|
+
-WAIT_UPSTREAM indicates waiting for an event or upstream status.
|
|
42117
|
+
-WAIT_RUN indicates waiting for running status.
|
|
42118
|
+
-RUNNING indicates the running state.
|
|
42119
|
+
-COMPLETE indicates terminal state - completed.
|
|
42120
|
+
-FAILED indicates terminal state - retry after failure.
|
|
42121
|
+
-EXPIRED indicates terminal state - failure.
|
|
42122
|
+
-SKIP_RUNNING indicates terminal state - a branch skipped by the upstream branch node.
|
|
42123
|
+
-HISTORY indicates compatibility with historical instances before march 30, 2024. no need to pay attention to this enumeration type for instances afterward.
|
|
42087
42124
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
42088
42125
|
:rtype: str
|
|
42089
42126
|
"""
|
|
@@ -42925,11 +42962,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
42925
42962
|
:type ProjectId: str
|
|
42926
42963
|
:param _InstanceState: **Instance status**.
|
|
42927
42964
|
|
|
42928
|
-
-Indicates waiting for event.
|
|
42965
|
+
-[0] Indicates waiting for event.
|
|
42929
42966
|
-[12] indicates waiting for upstream.
|
|
42930
42967
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
42931
|
-
-1, 19, 22 indicate running.
|
|
42932
|
-
-21
|
|
42968
|
+
-[1, 19, 22] indicate running.
|
|
42969
|
+
-[21] skip running.
|
|
42933
42970
|
-[3] indicates retry on failure.
|
|
42934
42971
|
-[8, 4, 5, 13] indicates a failure.
|
|
42935
42972
|
-[2] indicates a success.
|
|
@@ -42937,12 +42974,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
42937
42974
|
:type InstanceState: int
|
|
42938
42975
|
:param _RunType: Instance running trigger type.
|
|
42939
42976
|
|
|
42940
|
-
-RERUN indicates
|
|
42977
|
+
-RERUN indicates data replenishment.
|
|
42941
42978
|
-ADDITION indicates supplementary recording.
|
|
42942
42979
|
-PERIODIC indicates a period.
|
|
42943
42980
|
-APERIODIC indicates non-periodic.
|
|
42944
42981
|
-RERUN_SKIP_RUN means empty run for re-run.
|
|
42945
|
-
-ADDITION_SKIP_RUN indicates
|
|
42982
|
+
-ADDITION_SKIP_RUN indicates data replenishment - empty run.
|
|
42946
42983
|
-PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
|
|
42947
42984
|
-APERIODIC_SKIP_RUN indicates a non-periodic empty run.
|
|
42948
42985
|
-MANUAL_TRIGGER indicates manual triggering.
|
|
@@ -42975,7 +43012,10 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
42975
43012
|
:param _LineCount: Row count of returned logs this time.
|
|
42976
43013
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
42977
43014
|
:type LineCount: int
|
|
42978
|
-
:param _ExtInfo:
|
|
43015
|
+
:param _ExtInfo: Used when performing a paging query for logs. it has no specific business meaning.
|
|
43016
|
+
|
|
43017
|
+
Specifies that the value is null for the first query.
|
|
43018
|
+
Specifies that you can use the field value of ExtInfo in the returned information from the previous query for the second and subsequent queries.
|
|
42979
43019
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
42980
43020
|
:type ExtInfo: str
|
|
42981
43021
|
:param _IsEnd: Paging query for logs. indicates whether it is the last page.
|
|
@@ -43026,11 +43066,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
43026
43066
|
def InstanceState(self):
|
|
43027
43067
|
"""**Instance status**.
|
|
43028
43068
|
|
|
43029
|
-
-Indicates waiting for event.
|
|
43069
|
+
-[0] Indicates waiting for event.
|
|
43030
43070
|
-[12] indicates waiting for upstream.
|
|
43031
43071
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
43032
|
-
-1, 19, 22 indicate running.
|
|
43033
|
-
-21
|
|
43072
|
+
-[1, 19, 22] indicate running.
|
|
43073
|
+
-[21] skip running.
|
|
43034
43074
|
-[3] indicates retry on failure.
|
|
43035
43075
|
-[8, 4, 5, 13] indicates a failure.
|
|
43036
43076
|
-[2] indicates a success.
|
|
@@ -43047,12 +43087,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
43047
43087
|
def RunType(self):
|
|
43048
43088
|
"""Instance running trigger type.
|
|
43049
43089
|
|
|
43050
|
-
-RERUN indicates
|
|
43090
|
+
-RERUN indicates data replenishment.
|
|
43051
43091
|
-ADDITION indicates supplementary recording.
|
|
43052
43092
|
-PERIODIC indicates a period.
|
|
43053
43093
|
-APERIODIC indicates non-periodic.
|
|
43054
43094
|
-RERUN_SKIP_RUN means empty run for re-run.
|
|
43055
|
-
-ADDITION_SKIP_RUN indicates
|
|
43095
|
+
-ADDITION_SKIP_RUN indicates data replenishment - empty run.
|
|
43056
43096
|
-PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
|
|
43057
43097
|
-APERIODIC_SKIP_RUN indicates a non-periodic empty run.
|
|
43058
43098
|
-MANUAL_TRIGGER indicates manual triggering.
|
|
@@ -43166,7 +43206,10 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
43166
43206
|
|
|
43167
43207
|
@property
|
|
43168
43208
|
def ExtInfo(self):
|
|
43169
|
-
"""
|
|
43209
|
+
"""Used when performing a paging query for logs. it has no specific business meaning.
|
|
43210
|
+
|
|
43211
|
+
Specifies that the value is null for the first query.
|
|
43212
|
+
Specifies that you can use the field value of ExtInfo in the returned information from the previous query for the second and subsequent queries.
|
|
43170
43213
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
43171
43214
|
:rtype: str
|
|
43172
43215
|
"""
|
|
@@ -44879,7 +44922,7 @@ Supports filtering multiple conditions with an or relationship between them.
|
|
|
44879
44922
|
* C: CRONTAB_CYCLE
|
|
44880
44923
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
44881
44924
|
:type TaskCycleType: str
|
|
44882
|
-
:param _CurRunDate:
|
|
44925
|
+
:param _CurRunDate: Instance data time.
|
|
44883
44926
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
44884
44927
|
:type CurRunDate: str
|
|
44885
44928
|
:param _TryLimit: Specifies the limit on the number of retries issued each time a running failure occurs.
|
|
@@ -44901,7 +44944,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
44901
44944
|
:type InstanceType: int
|
|
44902
44945
|
:param _InstanceState: Indicates the status of an instance.
|
|
44903
44946
|
|
|
44904
|
-
-Indicates waiting for event.
|
|
44947
|
+
-[0]Indicates waiting for event.
|
|
44905
44948
|
-[12] indicates waiting for upstream.
|
|
44906
44949
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
44907
44950
|
-[1, 19, 22]: running.
|
|
@@ -45104,7 +45147,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
45104
45147
|
|
|
45105
45148
|
@property
|
|
45106
45149
|
def CurRunDate(self):
|
|
45107
|
-
"""
|
|
45150
|
+
"""Instance data time.
|
|
45108
45151
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
45109
45152
|
:rtype: str
|
|
45110
45153
|
"""
|
|
@@ -45171,7 +45214,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
45171
45214
|
def InstanceState(self):
|
|
45172
45215
|
"""Indicates the status of an instance.
|
|
45173
45216
|
|
|
45174
|
-
-Indicates waiting for event.
|
|
45217
|
+
-[0]Indicates waiting for event.
|
|
45175
45218
|
-[12] indicates waiting for upstream.
|
|
45176
45219
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
45177
45220
|
-[1, 19, 22]: running.
|
|
@@ -47775,11 +47818,11 @@ class ListInstancesRequest(AbstractModel):
|
|
|
47775
47818
|
r"""
|
|
47776
47819
|
:param _ProjectId: **Project ID**.
|
|
47777
47820
|
:type ProjectId: str
|
|
47778
|
-
:param _ScheduleTimeFrom:
|
|
47779
|
-
|
|
47821
|
+
:param _ScheduleTimeFrom: Filter criteria for instance planned scheduling time.
|
|
47822
|
+
Specifies the start time for filtering. the time format is yyyy-MM-dd HH:MM:ss.
|
|
47780
47823
|
:type ScheduleTimeFrom: str
|
|
47781
|
-
:param _ScheduleTimeTo:
|
|
47782
|
-
Filter expiration time. time format
|
|
47824
|
+
:param _ScheduleTimeTo: Filter criteria for instance planned scheduling time.
|
|
47825
|
+
Filter expiration time. the time format is yyyy-MM-dd HH:MM:ss.
|
|
47783
47826
|
:type ScheduleTimeTo: str
|
|
47784
47827
|
:param _PageNumber: Page number, integer.
|
|
47785
47828
|
Use in conjunction with pageSize and cannot be less than 1. the default value is 1.
|
|
@@ -47787,12 +47830,12 @@ Use in conjunction with pageSize and cannot be less than 1. the default value is
|
|
|
47787
47830
|
:param _PageSize: Number of items per page, integer.
|
|
47788
47831
|
Use in conjunction with pageNumber and should not exceed 200. default value: 10.
|
|
47789
47832
|
:type PageSize: int
|
|
47790
|
-
:param _SortColumn:
|
|
47833
|
+
:param _SortColumn: Sorting field for query results.
|
|
47791
47834
|
|
|
47792
|
-
-SCHEDULE_DATE indicates the planned scheduling time.
|
|
47793
|
-
-START_TIME indicates the start execution time
|
|
47794
|
-
-END_TIME indicates the execution end time
|
|
47795
|
-
-COST_TIME indicates
|
|
47835
|
+
-SCHEDULE_DATE indicates sorting based on the planned scheduling time.
|
|
47836
|
+
-START_TIME indicates sorting by the instance's start execution time.
|
|
47837
|
+
-END_TIME indicates sorting based on the instance execution end time.
|
|
47838
|
+
-COST_TIME indicates sorting based on instance execution duration.
|
|
47796
47839
|
:type SortColumn: str
|
|
47797
47840
|
:param _SortType: Instance sorting order.
|
|
47798
47841
|
|
|
@@ -47801,17 +47844,17 @@ Use in conjunction with pageNumber and should not exceed 200. default value: 10.
|
|
|
47801
47844
|
:type SortType: str
|
|
47802
47845
|
:param _InstanceType: Instance type.
|
|
47803
47846
|
|
|
47804
|
-
-0 indicates
|
|
47805
|
-
-1 indicates
|
|
47806
|
-
-2 indicates
|
|
47847
|
+
-0 indicates Replenished Instance.
|
|
47848
|
+
-1 indicates Periodic Instance.
|
|
47849
|
+
-2 indicates Non-Periodic instance.
|
|
47807
47850
|
:type InstanceType: int
|
|
47808
47851
|
:param _InstanceStateList: Instance execution status.
|
|
47809
47852
|
Support filtering multiple items with an "or" relationship between conditions.
|
|
47810
47853
|
|
|
47811
|
-
-Indicates waiting for event.
|
|
47854
|
+
-[0] Indicates waiting for event.
|
|
47812
47855
|
-[12] indicates waiting for upstream.
|
|
47813
47856
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
47814
|
-
-1, 19, 22 indicate running.
|
|
47857
|
+
-[1, 19, 22] indicate running.
|
|
47815
47858
|
-[21] indicates skipping running.
|
|
47816
47859
|
-[3] indicates retry on failure.
|
|
47817
47860
|
-[8, 4, 5, 13] indicates a failure.
|
|
@@ -47852,11 +47895,11 @@ Supports filtering multiple conditions with an or relationship between them.
|
|
|
47852
47895
|
The scheduling resource group list under the project can be obtained through the DescribeNormalSchedulerExecutorGroups api.
|
|
47853
47896
|
The DescribeNormalIntegrationExecutorGroups API can be used to obtain the list of all integration resource groups under a project.
|
|
47854
47897
|
:type ExecutorGroupIdList: list of str
|
|
47855
|
-
:param _StartTimeFrom:
|
|
47856
|
-
|
|
47898
|
+
:param _StartTimeFrom: Instance execution start time filter criteria.
|
|
47899
|
+
Specifies the start time for filtering. the time format is yyyy-MM-dd HH:MM:ss.
|
|
47857
47900
|
:type StartTimeFrom: str
|
|
47858
|
-
:param _StartTimeTo:
|
|
47859
|
-
Filter expiration time. time format
|
|
47901
|
+
:param _StartTimeTo: Instance execution start time filter criteria.
|
|
47902
|
+
Filter expiration time. the time format is yyyy-MM-dd HH:MM:ss.
|
|
47860
47903
|
:type StartTimeTo: str
|
|
47861
47904
|
:param _ScheduleTimeZone: Time zone.
|
|
47862
47905
|
Time zone. specifies the time zone. the default value is UTC+8.
|
|
@@ -47895,8 +47938,8 @@ Time zone. specifies the time zone. the default value is UTC+8.
|
|
|
47895
47938
|
|
|
47896
47939
|
@property
|
|
47897
47940
|
def ScheduleTimeFrom(self):
|
|
47898
|
-
"""
|
|
47899
|
-
|
|
47941
|
+
"""Filter criteria for instance planned scheduling time.
|
|
47942
|
+
Specifies the start time for filtering. the time format is yyyy-MM-dd HH:MM:ss.
|
|
47900
47943
|
:rtype: str
|
|
47901
47944
|
"""
|
|
47902
47945
|
return self._ScheduleTimeFrom
|
|
@@ -47907,8 +47950,8 @@ Filter start time. the time format is yyyy-MM-dd HH:MM:ss.
|
|
|
47907
47950
|
|
|
47908
47951
|
@property
|
|
47909
47952
|
def ScheduleTimeTo(self):
|
|
47910
|
-
"""
|
|
47911
|
-
Filter expiration time. time format
|
|
47953
|
+
"""Filter criteria for instance planned scheduling time.
|
|
47954
|
+
Filter expiration time. the time format is yyyy-MM-dd HH:MM:ss.
|
|
47912
47955
|
:rtype: str
|
|
47913
47956
|
"""
|
|
47914
47957
|
return self._ScheduleTimeTo
|
|
@@ -47943,12 +47986,12 @@ Use in conjunction with pageNumber and should not exceed 200. default value: 10.
|
|
|
47943
47986
|
|
|
47944
47987
|
@property
|
|
47945
47988
|
def SortColumn(self):
|
|
47946
|
-
"""
|
|
47989
|
+
"""Sorting field for query results.
|
|
47947
47990
|
|
|
47948
|
-
-SCHEDULE_DATE indicates the planned scheduling time.
|
|
47949
|
-
-START_TIME indicates the start execution time
|
|
47950
|
-
-END_TIME indicates the execution end time
|
|
47951
|
-
-COST_TIME indicates
|
|
47991
|
+
-SCHEDULE_DATE indicates sorting based on the planned scheduling time.
|
|
47992
|
+
-START_TIME indicates sorting by the instance's start execution time.
|
|
47993
|
+
-END_TIME indicates sorting based on the instance execution end time.
|
|
47994
|
+
-COST_TIME indicates sorting based on instance execution duration.
|
|
47952
47995
|
:rtype: str
|
|
47953
47996
|
"""
|
|
47954
47997
|
return self._SortColumn
|
|
@@ -47975,9 +48018,9 @@ Use in conjunction with pageNumber and should not exceed 200. default value: 10.
|
|
|
47975
48018
|
def InstanceType(self):
|
|
47976
48019
|
"""Instance type.
|
|
47977
48020
|
|
|
47978
|
-
-0 indicates
|
|
47979
|
-
-1 indicates
|
|
47980
|
-
-2 indicates
|
|
48021
|
+
-0 indicates Replenished Instance.
|
|
48022
|
+
-1 indicates Periodic Instance.
|
|
48023
|
+
-2 indicates Non-Periodic instance.
|
|
47981
48024
|
:rtype: int
|
|
47982
48025
|
"""
|
|
47983
48026
|
return self._InstanceType
|
|
@@ -47991,10 +48034,10 @@ Use in conjunction with pageNumber and should not exceed 200. default value: 10.
|
|
|
47991
48034
|
"""Instance execution status.
|
|
47992
48035
|
Support filtering multiple items with an "or" relationship between conditions.
|
|
47993
48036
|
|
|
47994
|
-
-Indicates waiting for event.
|
|
48037
|
+
-[0] Indicates waiting for event.
|
|
47995
48038
|
-[12] indicates waiting for upstream.
|
|
47996
48039
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
47997
|
-
-1, 19, 22 indicate running.
|
|
48040
|
+
-[1, 19, 22] indicate running.
|
|
47998
48041
|
-[21] indicates skipping running.
|
|
47999
48042
|
-[3] indicates retry on failure.
|
|
48000
48043
|
-[8, 4, 5, 13] indicates a failure.
|
|
@@ -48107,8 +48150,8 @@ The DescribeNormalIntegrationExecutorGroups API can be used to obtain the list o
|
|
|
48107
48150
|
|
|
48108
48151
|
@property
|
|
48109
48152
|
def StartTimeFrom(self):
|
|
48110
|
-
"""
|
|
48111
|
-
|
|
48153
|
+
"""Instance execution start time filter criteria.
|
|
48154
|
+
Specifies the start time for filtering. the time format is yyyy-MM-dd HH:MM:ss.
|
|
48112
48155
|
:rtype: str
|
|
48113
48156
|
"""
|
|
48114
48157
|
return self._StartTimeFrom
|
|
@@ -48119,8 +48162,8 @@ Filter start time. the time format is yyyy-MM-dd HH:MM:ss.
|
|
|
48119
48162
|
|
|
48120
48163
|
@property
|
|
48121
48164
|
def StartTimeTo(self):
|
|
48122
|
-
"""
|
|
48123
|
-
Filter expiration time. time format
|
|
48165
|
+
"""Instance execution start time filter criteria.
|
|
48166
|
+
Filter expiration time. the time format is yyyy-MM-dd HH:MM:ss.
|
|
48124
48167
|
:rtype: str
|
|
48125
48168
|
"""
|
|
48126
48169
|
return self._StartTimeTo
|