public class InstanceLifeCycleVO extends AbstractModel
header, skipSign| Constructor and Description |
|---|
InstanceLifeCycleVO() |
InstanceLifeCycleVO(InstanceLifeCycleVO source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getBrokerIp()
Get The execution node where the log resides.
|
String |
getCodeFileName()
Get Instance code file.
|
String |
getCostTime()
Get Time spent.
|
String |
getExecutionJobId()
Get Dispatch execution ID.
|
String |
getInstanceKey()
Get Unique identifier of the instance.
|
Long |
getInstanceState()
Get Instance status.
|
InstanceLifeDetailDto[] |
getLifeCycleDetailList()
Get List of instance lifecycle.
|
Long |
getLifeRoundNum()
Get Instance lifetime number, which identifies one-time execution of the instance.
|
String |
getLogType()
Get Instance log type.
|
String |
getOriginFileName()
Get Log file name.
|
String |
getRunType()
Get Instance running trigger type.
|
Long |
getTries()
Get Number of retries after failure.
|
void |
setBrokerIp(String BrokerIp)
Set The execution node where the log resides.
|
void |
setCodeFileName(String CodeFileName)
Set Instance code file.
|
void |
setCostTime(String CostTime)
Set Time spent.
|
void |
setExecutionJobId(String ExecutionJobId)
Set Dispatch execution ID.
|
void |
setInstanceKey(String InstanceKey)
Set Unique identifier of the instance.
|
void |
setInstanceState(Long InstanceState)
Set Instance status.
|
void |
setLifeCycleDetailList(InstanceLifeDetailDto[] LifeCycleDetailList)
Set List of instance lifecycle.
|
void |
setLifeRoundNum(Long LifeRoundNum)
Set Instance lifetime number, which identifies one-time execution of the instance.
|
void |
setLogType(String LogType)
Set Instance log type.
|
void |
setOriginFileName(String OriginFileName)
Set Log file name.
|
void |
setRunType(String RunType)
Set Instance running trigger type.
|
void |
setTries(Long Tries)
Set Number of retries after failure.
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, GetHeader, getMultipartRequestParams, getSkipSign, isStream, set, SetHeader, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, setSkipSign, toJsonStringpublic InstanceLifeCycleVO()
public InstanceLifeCycleVO(InstanceLifeCycleVO source)
public String getInstanceKey()
public void setInstanceKey(String InstanceKey)
InstanceKey - Unique identifier of the instance.
Note: This field may return null, indicating that no valid values can be obtained.public Long getInstanceState()
public void setInstanceState(Long InstanceState)
InstanceState - Instance status.
-[0] Indicates waiting for event.
-[12] indicates waiting for upstream.
-[6, 7, 9, 10, 18] indicates awaiting execution.
-[1, 19, 22] indicate running.
-[21] skip running.
-[3] indicates retry on failure.
-[8, 4, 5, 13] indicates a failure.
-[2] indicates a success.
Note: This field may return null, indicating that no valid values can be obtained.public Long getLifeRoundNum()
public void setLifeRoundNum(Long LifeRoundNum)
LifeRoundNum - Instance lifetime number, which identifies one-time execution of the instance.
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.
Note: This field may return null, indicating that no valid values can be obtained.public String getRunType()
public void setRunType(String RunType)
RunType - Instance running trigger type.
-RERUN indicates rerunning.
-ADDITION indicates data replenishment.
-PERIODIC indicates a period.
-APERIODIC indicates non-periodic.
-RERUN_SKIP_RUN means empty run for re-run.
-ADDITION_SKIP_RUN indicates data replenishment - empty run.
-PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
-APERIODIC_SKIP_RUN indicates a non-periodic empty run.
-MANUAL_TRIGGER indicates manual triggering.
-RERUN_MANUAL_TRIGGER indicates manual triggering - rerun.
Note: This field may return null, indicating that no valid values can be obtained.public Long getTries()
public void setTries(Long Tries)
Tries - Number of retries after failure.
Note: This field may return null, indicating that no valid values can be obtained.public InstanceLifeDetailDto[] getLifeCycleDetailList()
public void setLifeCycleDetailList(InstanceLifeDetailDto[] LifeCycleDetailList)
LifeCycleDetailList - List of instance lifecycle.
Note: This field may return null, indicating that no valid values can be obtained.public String getCodeFileName()
public void setCodeFileName(String CodeFileName)
CodeFileName - Instance code file.
The file content specifies the code used for running the execution instance this time. only some tasks support it.
Note: This field may return null, indicating that no valid values can be obtained.public String getExecutionJobId()
public void setExecutionJobId(String ExecutionJobId)
ExecutionJobId - Dispatch execution ID.
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.
If it is unknown whether the executor version supports this ID, contact tencent cloud's operations team.
Note: This field may return null, indicating that no valid values can be obtained.public String getBrokerIp()
public void setBrokerIp(String BrokerIp)
BrokerIp - The execution node where the log resides.
Note: This field may return null, indicating that no valid values can be obtained.public String getOriginFileName()
public void setOriginFileName(String OriginFileName)
OriginFileName - Log file name.
Note: This field may return null, indicating that no valid values can be obtained.public String getLogType()
public void setLogType(String LogType)
LogType - Instance log type.
-run: indicates the state of functioning.
-kill: terminates.
Note: This field may return null, indicating that no valid values can be obtained.public String getCostTime()
public void setCostTime(String CostTime)
CostTime - Time spent.
Note: This field may return null, indicating that no valid values can be obtained.Copyright © 2025. All rights reserved.