public static interface WorkflowService.Iface
| Modifier and Type | Method and Description |
|---|---|
CountWorkflowExecutionsResponse |
CountWorkflowExecutions(CountWorkflowExecutionsRequest countRequest)
CountWorkflowExecutions is a visibility API to count of workflow executions in a specific domain.
|
void |
DeprecateDomain(DeprecateDomainRequest deprecateRequest)
DeprecateDomain us used to update status of a registered domain to DEPRECATED.
|
DescribeDomainResponse |
DescribeDomain(DescribeDomainRequest describeRequest)
DescribeDomain returns the information and configuration for a registered domain.
|
DescribeTaskListResponse |
DescribeTaskList(DescribeTaskListRequest request)
DescribeTaskList returns information about the target tasklist, right now this API returns the
pollers which polled this tasklist in last few minutes.
|
DescribeWorkflowExecutionResponse |
DescribeWorkflowExecution(DescribeWorkflowExecutionRequest describeRequest)
DescribeWorkflowExecution returns information about the specified workflow execution.
|
ClusterInfo |
GetClusterInfo()
GetClusterInfo returns information about cadence cluster
|
GetSearchAttributesResponse |
GetSearchAttributes()
GetSearchAttributes is a visibility API to get all legal keys that could be used in list APIs
|
GetTaskListsByDomainResponse |
GetTaskListsByDomain(GetTaskListsByDomainRequest request)
GetTaskListsByDomain returns the list of all the task lists for a domainName.
|
GetWorkflowExecutionHistoryResponse |
GetWorkflowExecutionHistory(GetWorkflowExecutionHistoryRequest getRequest)
Returns the history of specified workflow execution.
|
ListArchivedWorkflowExecutionsResponse |
ListArchivedWorkflowExecutions(ListArchivedWorkflowExecutionsRequest listRequest)
ListArchivedWorkflowExecutions is a visibility API to list archived workflow executions in a specific domain.
|
ListClosedWorkflowExecutionsResponse |
ListClosedWorkflowExecutions(ListClosedWorkflowExecutionsRequest listRequest)
ListClosedWorkflowExecutions is a visibility API to list the closed executions in a specific domain.
|
ListDomainsResponse |
ListDomains(ListDomainsRequest listRequest)
ListDomains returns the information and configuration for all domains.
|
ListOpenWorkflowExecutionsResponse |
ListOpenWorkflowExecutions(ListOpenWorkflowExecutionsRequest listRequest)
ListOpenWorkflowExecutions is a visibility API to list the open executions in a specific domain.
|
ListTaskListPartitionsResponse |
ListTaskListPartitions(ListTaskListPartitionsRequest request)
ReapplyEvents applies stale events to the current workflow and current run
|
ListWorkflowExecutionsResponse |
ListWorkflowExecutions(ListWorkflowExecutionsRequest listRequest)
ListWorkflowExecutions is a visibility API to list workflow executions in a specific domain.
|
PollForActivityTaskResponse |
PollForActivityTask(PollForActivityTaskRequest pollRequest)
PollForActivityTask is called by application worker to process ActivityTask from a specific taskList.
|
PollForDecisionTaskResponse |
PollForDecisionTask(PollForDecisionTaskRequest pollRequest)
PollForDecisionTask is called by application worker to process DecisionTask from a specific taskList.
|
QueryWorkflowResponse |
QueryWorkflow(QueryWorkflowRequest queryRequest)
QueryWorkflow returns query result for a specified workflow execution
|
RecordActivityTaskHeartbeatResponse |
RecordActivityTaskHeartbeat(RecordActivityTaskHeartbeatRequest heartbeatRequest)
RecordActivityTaskHeartbeat is called by application worker while it is processing an ActivityTask.
|
RecordActivityTaskHeartbeatResponse |
RecordActivityTaskHeartbeatByID(RecordActivityTaskHeartbeatByIDRequest heartbeatRequest)
RecordActivityTaskHeartbeatByID is called by application worker while it is processing an ActivityTask.
|
void |
RegisterDomain(RegisterDomainRequest registerRequest)
RegisterDomain creates a new domain which can be used as a container for all resources.
|
void |
RequestCancelWorkflowExecution(RequestCancelWorkflowExecutionRequest cancelRequest)
RequestCancelWorkflowExecution is called by application worker when it wants to request cancellation of a workflow instance.
|
ResetStickyTaskListResponse |
ResetStickyTaskList(ResetStickyTaskListRequest resetRequest)
Reset the sticky tasklist related information in mutable state of a given workflow.
|
ResetWorkflowExecutionResponse |
ResetWorkflowExecution(ResetWorkflowExecutionRequest resetRequest)
ResetWorkflowExecution reset an existing workflow execution to DecisionTaskCompleted event(exclusive).
|
void |
RespondActivityTaskCanceled(RespondActivityTaskCanceledRequest canceledRequest)
RespondActivityTaskCanceled is called by application worker when it is successfully canceled an ActivityTask.
|
void |
RespondActivityTaskCanceledByID(RespondActivityTaskCanceledByIDRequest canceledRequest)
RespondActivityTaskCanceledByID is called by application worker when it is successfully canceled an ActivityTask.
|
void |
RespondActivityTaskCompleted(RespondActivityTaskCompletedRequest completeRequest)
RespondActivityTaskCompleted is called by application worker when it is done processing an ActivityTask.
|
void |
RespondActivityTaskCompletedByID(RespondActivityTaskCompletedByIDRequest completeRequest)
RespondActivityTaskCompletedByID is called by application worker when it is done processing an ActivityTask.
|
void |
RespondActivityTaskFailed(RespondActivityTaskFailedRequest failRequest)
RespondActivityTaskFailed is called by application worker when it is done processing an ActivityTask.
|
void |
RespondActivityTaskFailedByID(RespondActivityTaskFailedByIDRequest failRequest)
RespondActivityTaskFailedByID is called by application worker when it is done processing an ActivityTask.
|
RespondDecisionTaskCompletedResponse |
RespondDecisionTaskCompleted(RespondDecisionTaskCompletedRequest completeRequest)
RespondDecisionTaskCompleted is called by application worker to complete a DecisionTask handed as a result of
'PollForDecisionTask' API call.
|
void |
RespondDecisionTaskFailed(RespondDecisionTaskFailedRequest failedRequest)
RespondDecisionTaskFailed is called by application worker to indicate failure.
|
void |
RespondQueryTaskCompleted(RespondQueryTaskCompletedRequest completeRequest)
RespondQueryTaskCompleted is called by application worker to complete a QueryTask (which is a DecisionTask for query)
as a result of 'PollForDecisionTask' API call.
|
ListWorkflowExecutionsResponse |
ScanWorkflowExecutions(ListWorkflowExecutionsRequest listRequest)
ScanWorkflowExecutions is a visibility API to list large amount of workflow executions in a specific domain without order.
|
StartWorkflowExecutionResponse |
SignalWithStartWorkflowExecution(SignalWithStartWorkflowExecutionRequest signalWithStartRequest)
SignalWithStartWorkflowExecution is used to ensure sending signal to a workflow.
|
void |
SignalWorkflowExecution(SignalWorkflowExecutionRequest signalRequest)
SignalWorkflowExecution is used to send a signal event to running workflow execution.
|
StartWorkflowExecutionResponse |
StartWorkflowExecution(StartWorkflowExecutionRequest startRequest)
StartWorkflowExecution starts a new long running workflow instance.
|
void |
TerminateWorkflowExecution(TerminateWorkflowExecutionRequest terminateRequest)
TerminateWorkflowExecution terminates an existing workflow execution by recording WorkflowExecutionTerminated event
in the history and immediately terminating the execution instance.
|
UpdateDomainResponse |
UpdateDomain(UpdateDomainRequest updateRequest)
UpdateDomain is used to update the information and configuration for a registered domain.
|
void RegisterDomain(RegisterDomainRequest registerRequest) throws BadRequestError, DomainAlreadyExistsError, ServiceBusyError, ClientVersionNotSupportedError, org.apache.thrift.TException
registerRequest - BadRequestErrorDomainAlreadyExistsErrorServiceBusyErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionDescribeDomainResponse DescribeDomain(DescribeDomainRequest describeRequest) throws BadRequestError, EntityNotExistsError, ServiceBusyError, ClientVersionNotSupportedError, org.apache.thrift.TException
describeRequest - BadRequestErrorEntityNotExistsErrorServiceBusyErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionListDomainsResponse ListDomains(ListDomainsRequest listRequest) throws BadRequestError, EntityNotExistsError, ServiceBusyError, ClientVersionNotSupportedError, org.apache.thrift.TException
listRequest - BadRequestErrorEntityNotExistsErrorServiceBusyErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionUpdateDomainResponse UpdateDomain(UpdateDomainRequest updateRequest) throws BadRequestError, EntityNotExistsError, ServiceBusyError, DomainNotActiveError, ClientVersionNotSupportedError, org.apache.thrift.TException
updateRequest - BadRequestErrorEntityNotExistsErrorServiceBusyErrorDomainNotActiveErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionvoid DeprecateDomain(DeprecateDomainRequest deprecateRequest) throws BadRequestError, EntityNotExistsError, ServiceBusyError, DomainNotActiveError, ClientVersionNotSupportedError, org.apache.thrift.TException
deprecateRequest - BadRequestErrorEntityNotExistsErrorServiceBusyErrorDomainNotActiveErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionStartWorkflowExecutionResponse StartWorkflowExecution(StartWorkflowExecutionRequest startRequest) throws BadRequestError, WorkflowExecutionAlreadyStartedError, ServiceBusyError, DomainNotActiveError, LimitExceededError, EntityNotExistsError, ClientVersionNotSupportedError, org.apache.thrift.TException
startRequest - BadRequestErrorWorkflowExecutionAlreadyStartedErrorServiceBusyErrorDomainNotActiveErrorLimitExceededErrorEntityNotExistsErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionGetWorkflowExecutionHistoryResponse GetWorkflowExecutionHistory(GetWorkflowExecutionHistoryRequest getRequest) throws BadRequestError, EntityNotExistsError, ServiceBusyError, ClientVersionNotSupportedError, org.apache.thrift.TException
getRequest - BadRequestErrorEntityNotExistsErrorServiceBusyErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionPollForDecisionTaskResponse PollForDecisionTask(PollForDecisionTaskRequest pollRequest) throws BadRequestError, ServiceBusyError, LimitExceededError, EntityNotExistsError, DomainNotActiveError, ClientVersionNotSupportedError, org.apache.thrift.TException
pollRequest - BadRequestErrorServiceBusyErrorLimitExceededErrorEntityNotExistsErrorDomainNotActiveErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionRespondDecisionTaskCompletedResponse RespondDecisionTaskCompleted(RespondDecisionTaskCompletedRequest completeRequest) throws BadRequestError, EntityNotExistsError, DomainNotActiveError, LimitExceededError, ServiceBusyError, ClientVersionNotSupportedError, WorkflowExecutionAlreadyCompletedError, org.apache.thrift.TException
completeRequest - BadRequestErrorEntityNotExistsErrorDomainNotActiveErrorLimitExceededErrorServiceBusyErrorClientVersionNotSupportedErrorWorkflowExecutionAlreadyCompletedErrororg.apache.thrift.TExceptionvoid RespondDecisionTaskFailed(RespondDecisionTaskFailedRequest failedRequest) throws BadRequestError, EntityNotExistsError, DomainNotActiveError, LimitExceededError, ServiceBusyError, ClientVersionNotSupportedError, WorkflowExecutionAlreadyCompletedError, org.apache.thrift.TException
failedRequest - BadRequestErrorEntityNotExistsErrorDomainNotActiveErrorLimitExceededErrorServiceBusyErrorClientVersionNotSupportedErrorWorkflowExecutionAlreadyCompletedErrororg.apache.thrift.TExceptionPollForActivityTaskResponse PollForActivityTask(PollForActivityTaskRequest pollRequest) throws BadRequestError, ServiceBusyError, LimitExceededError, EntityNotExistsError, DomainNotActiveError, ClientVersionNotSupportedError, org.apache.thrift.TException
pollRequest - BadRequestErrorServiceBusyErrorLimitExceededErrorEntityNotExistsErrorDomainNotActiveErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionRecordActivityTaskHeartbeatResponse RecordActivityTaskHeartbeat(RecordActivityTaskHeartbeatRequest heartbeatRequest) throws BadRequestError, EntityNotExistsError, DomainNotActiveError, LimitExceededError, ServiceBusyError, ClientVersionNotSupportedError, WorkflowExecutionAlreadyCompletedError, org.apache.thrift.TException
heartbeatRequest - BadRequestErrorEntityNotExistsErrorDomainNotActiveErrorLimitExceededErrorServiceBusyErrorClientVersionNotSupportedErrorWorkflowExecutionAlreadyCompletedErrororg.apache.thrift.TExceptionRecordActivityTaskHeartbeatResponse RecordActivityTaskHeartbeatByID(RecordActivityTaskHeartbeatByIDRequest heartbeatRequest) throws BadRequestError, EntityNotExistsError, DomainNotActiveError, LimitExceededError, ServiceBusyError, ClientVersionNotSupportedError, WorkflowExecutionAlreadyCompletedError, org.apache.thrift.TException
heartbeatRequest - BadRequestErrorEntityNotExistsErrorDomainNotActiveErrorLimitExceededErrorServiceBusyErrorClientVersionNotSupportedErrorWorkflowExecutionAlreadyCompletedErrororg.apache.thrift.TExceptionvoid RespondActivityTaskCompleted(RespondActivityTaskCompletedRequest completeRequest) throws BadRequestError, EntityNotExistsError, DomainNotActiveError, LimitExceededError, ServiceBusyError, ClientVersionNotSupportedError, WorkflowExecutionAlreadyCompletedError, org.apache.thrift.TException
completeRequest - BadRequestErrorEntityNotExistsErrorDomainNotActiveErrorLimitExceededErrorServiceBusyErrorClientVersionNotSupportedErrorWorkflowExecutionAlreadyCompletedErrororg.apache.thrift.TExceptionvoid RespondActivityTaskCompletedByID(RespondActivityTaskCompletedByIDRequest completeRequest) throws BadRequestError, EntityNotExistsError, DomainNotActiveError, LimitExceededError, ServiceBusyError, ClientVersionNotSupportedError, WorkflowExecutionAlreadyCompletedError, org.apache.thrift.TException
completeRequest - BadRequestErrorEntityNotExistsErrorDomainNotActiveErrorLimitExceededErrorServiceBusyErrorClientVersionNotSupportedErrorWorkflowExecutionAlreadyCompletedErrororg.apache.thrift.TExceptionvoid RespondActivityTaskFailed(RespondActivityTaskFailedRequest failRequest) throws BadRequestError, EntityNotExistsError, DomainNotActiveError, LimitExceededError, ServiceBusyError, ClientVersionNotSupportedError, WorkflowExecutionAlreadyCompletedError, org.apache.thrift.TException
failRequest - BadRequestErrorEntityNotExistsErrorDomainNotActiveErrorLimitExceededErrorServiceBusyErrorClientVersionNotSupportedErrorWorkflowExecutionAlreadyCompletedErrororg.apache.thrift.TExceptionvoid RespondActivityTaskFailedByID(RespondActivityTaskFailedByIDRequest failRequest) throws BadRequestError, EntityNotExistsError, DomainNotActiveError, LimitExceededError, ServiceBusyError, ClientVersionNotSupportedError, WorkflowExecutionAlreadyCompletedError, org.apache.thrift.TException
failRequest - BadRequestErrorEntityNotExistsErrorDomainNotActiveErrorLimitExceededErrorServiceBusyErrorClientVersionNotSupportedErrorWorkflowExecutionAlreadyCompletedErrororg.apache.thrift.TExceptionvoid RespondActivityTaskCanceled(RespondActivityTaskCanceledRequest canceledRequest) throws BadRequestError, EntityNotExistsError, DomainNotActiveError, LimitExceededError, ServiceBusyError, ClientVersionNotSupportedError, WorkflowExecutionAlreadyCompletedError, org.apache.thrift.TException
canceledRequest - BadRequestErrorEntityNotExistsErrorDomainNotActiveErrorLimitExceededErrorServiceBusyErrorClientVersionNotSupportedErrorWorkflowExecutionAlreadyCompletedErrororg.apache.thrift.TExceptionvoid RespondActivityTaskCanceledByID(RespondActivityTaskCanceledByIDRequest canceledRequest) throws BadRequestError, EntityNotExistsError, DomainNotActiveError, LimitExceededError, ServiceBusyError, ClientVersionNotSupportedError, WorkflowExecutionAlreadyCompletedError, org.apache.thrift.TException
canceledRequest - BadRequestErrorEntityNotExistsErrorDomainNotActiveErrorLimitExceededErrorServiceBusyErrorClientVersionNotSupportedErrorWorkflowExecutionAlreadyCompletedErrororg.apache.thrift.TExceptionvoid RequestCancelWorkflowExecution(RequestCancelWorkflowExecutionRequest cancelRequest) throws BadRequestError, EntityNotExistsError, CancellationAlreadyRequestedError, ServiceBusyError, DomainNotActiveError, LimitExceededError, ClientVersionNotSupportedError, WorkflowExecutionAlreadyCompletedError, org.apache.thrift.TException
cancelRequest - BadRequestErrorEntityNotExistsErrorCancellationAlreadyRequestedErrorServiceBusyErrorDomainNotActiveErrorLimitExceededErrorClientVersionNotSupportedErrorWorkflowExecutionAlreadyCompletedErrororg.apache.thrift.TExceptionvoid SignalWorkflowExecution(SignalWorkflowExecutionRequest signalRequest) throws BadRequestError, EntityNotExistsError, ServiceBusyError, DomainNotActiveError, LimitExceededError, ClientVersionNotSupportedError, WorkflowExecutionAlreadyCompletedError, org.apache.thrift.TException
signalRequest - BadRequestErrorEntityNotExistsErrorServiceBusyErrorDomainNotActiveErrorLimitExceededErrorClientVersionNotSupportedErrorWorkflowExecutionAlreadyCompletedErrororg.apache.thrift.TExceptionStartWorkflowExecutionResponse SignalWithStartWorkflowExecution(SignalWithStartWorkflowExecutionRequest signalWithStartRequest) throws BadRequestError, EntityNotExistsError, ServiceBusyError, DomainNotActiveError, LimitExceededError, WorkflowExecutionAlreadyStartedError, ClientVersionNotSupportedError, org.apache.thrift.TException
signalWithStartRequest - BadRequestErrorEntityNotExistsErrorServiceBusyErrorDomainNotActiveErrorLimitExceededErrorWorkflowExecutionAlreadyStartedErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionResetWorkflowExecutionResponse ResetWorkflowExecution(ResetWorkflowExecutionRequest resetRequest) throws BadRequestError, EntityNotExistsError, ServiceBusyError, DomainNotActiveError, LimitExceededError, ClientVersionNotSupportedError, org.apache.thrift.TException
resetRequest - BadRequestErrorEntityNotExistsErrorServiceBusyErrorDomainNotActiveErrorLimitExceededErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionvoid TerminateWorkflowExecution(TerminateWorkflowExecutionRequest terminateRequest) throws BadRequestError, EntityNotExistsError, ServiceBusyError, DomainNotActiveError, LimitExceededError, ClientVersionNotSupportedError, WorkflowExecutionAlreadyCompletedError, org.apache.thrift.TException
terminateRequest - BadRequestErrorEntityNotExistsErrorServiceBusyErrorDomainNotActiveErrorLimitExceededErrorClientVersionNotSupportedErrorWorkflowExecutionAlreadyCompletedErrororg.apache.thrift.TExceptionListOpenWorkflowExecutionsResponse ListOpenWorkflowExecutions(ListOpenWorkflowExecutionsRequest listRequest) throws BadRequestError, EntityNotExistsError, ServiceBusyError, LimitExceededError, ClientVersionNotSupportedError, org.apache.thrift.TException
listRequest - BadRequestErrorEntityNotExistsErrorServiceBusyErrorLimitExceededErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionListClosedWorkflowExecutionsResponse ListClosedWorkflowExecutions(ListClosedWorkflowExecutionsRequest listRequest) throws BadRequestError, EntityNotExistsError, ServiceBusyError, ClientVersionNotSupportedError, org.apache.thrift.TException
listRequest - BadRequestErrorEntityNotExistsErrorServiceBusyErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionListWorkflowExecutionsResponse ListWorkflowExecutions(ListWorkflowExecutionsRequest listRequest) throws BadRequestError, EntityNotExistsError, ServiceBusyError, ClientVersionNotSupportedError, org.apache.thrift.TException
listRequest - BadRequestErrorEntityNotExistsErrorServiceBusyErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionListArchivedWorkflowExecutionsResponse ListArchivedWorkflowExecutions(ListArchivedWorkflowExecutionsRequest listRequest) throws BadRequestError, EntityNotExistsError, ServiceBusyError, ClientVersionNotSupportedError, org.apache.thrift.TException
listRequest - BadRequestErrorEntityNotExistsErrorServiceBusyErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionListWorkflowExecutionsResponse ScanWorkflowExecutions(ListWorkflowExecutionsRequest listRequest) throws BadRequestError, EntityNotExistsError, ServiceBusyError, ClientVersionNotSupportedError, org.apache.thrift.TException
listRequest - BadRequestErrorEntityNotExistsErrorServiceBusyErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionCountWorkflowExecutionsResponse CountWorkflowExecutions(CountWorkflowExecutionsRequest countRequest) throws BadRequestError, EntityNotExistsError, ServiceBusyError, ClientVersionNotSupportedError, org.apache.thrift.TException
countRequest - BadRequestErrorEntityNotExistsErrorServiceBusyErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionGetSearchAttributesResponse GetSearchAttributes() throws ServiceBusyError, ClientVersionNotSupportedError, org.apache.thrift.TException
ServiceBusyErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionvoid RespondQueryTaskCompleted(RespondQueryTaskCompletedRequest completeRequest) throws BadRequestError, EntityNotExistsError, LimitExceededError, ServiceBusyError, DomainNotActiveError, ClientVersionNotSupportedError, org.apache.thrift.TException
completeRequest - BadRequestErrorEntityNotExistsErrorLimitExceededErrorServiceBusyErrorDomainNotActiveErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionResetStickyTaskListResponse ResetStickyTaskList(ResetStickyTaskListRequest resetRequest) throws BadRequestError, EntityNotExistsError, LimitExceededError, ServiceBusyError, DomainNotActiveError, ClientVersionNotSupportedError, WorkflowExecutionAlreadyCompletedError, org.apache.thrift.TException
resetRequest - BadRequestErrorEntityNotExistsErrorLimitExceededErrorServiceBusyErrorDomainNotActiveErrorClientVersionNotSupportedErrorWorkflowExecutionAlreadyCompletedErrororg.apache.thrift.TExceptionQueryWorkflowResponse QueryWorkflow(QueryWorkflowRequest queryRequest) throws BadRequestError, EntityNotExistsError, QueryFailedError, LimitExceededError, ServiceBusyError, ClientVersionNotSupportedError, org.apache.thrift.TException
queryRequest - BadRequestErrorEntityNotExistsErrorQueryFailedErrorLimitExceededErrorServiceBusyErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionDescribeWorkflowExecutionResponse DescribeWorkflowExecution(DescribeWorkflowExecutionRequest describeRequest) throws BadRequestError, EntityNotExistsError, LimitExceededError, ServiceBusyError, ClientVersionNotSupportedError, org.apache.thrift.TException
describeRequest - BadRequestErrorEntityNotExistsErrorLimitExceededErrorServiceBusyErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionDescribeTaskListResponse DescribeTaskList(DescribeTaskListRequest request) throws BadRequestError, EntityNotExistsError, LimitExceededError, ServiceBusyError, ClientVersionNotSupportedError, org.apache.thrift.TException
request - BadRequestErrorEntityNotExistsErrorLimitExceededErrorServiceBusyErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionClusterInfo GetClusterInfo() throws InternalServiceError, ServiceBusyError, org.apache.thrift.TException
InternalServiceErrorServiceBusyErrororg.apache.thrift.TExceptionGetTaskListsByDomainResponse GetTaskListsByDomain(GetTaskListsByDomainRequest request) throws BadRequestError, EntityNotExistsError, LimitExceededError, ServiceBusyError, ClientVersionNotSupportedError, org.apache.thrift.TException
request - BadRequestErrorEntityNotExistsErrorLimitExceededErrorServiceBusyErrorClientVersionNotSupportedErrororg.apache.thrift.TExceptionListTaskListPartitionsResponse ListTaskListPartitions(ListTaskListPartitionsRequest request) throws BadRequestError, EntityNotExistsError, LimitExceededError, ServiceBusyError, org.apache.thrift.TException
request - BadRequestErrorEntityNotExistsErrorLimitExceededErrorServiceBusyErrororg.apache.thrift.TException