SwfClient.php
85 lines
| 1 | <?php |
| 2 | namespace Aws\Swf; |
| 3 | |
| 4 | use Aws\AwsClient; |
| 5 | |
| 6 | /** |
| 7 | * Amazon Simple Workflow Service (Amazon SWF) client. |
| 8 | * |
| 9 | * @method \Aws\Result countClosedWorkflowExecutions(array $args = []) |
| 10 | * @method \GuzzleHttp\Promise\Promise countClosedWorkflowExecutionsAsync(array $args = []) |
| 11 | * @method \Aws\Result countOpenWorkflowExecutions(array $args = []) |
| 12 | * @method \GuzzleHttp\Promise\Promise countOpenWorkflowExecutionsAsync(array $args = []) |
| 13 | * @method \Aws\Result countPendingActivityTasks(array $args = []) |
| 14 | * @method \GuzzleHttp\Promise\Promise countPendingActivityTasksAsync(array $args = []) |
| 15 | * @method \Aws\Result countPendingDecisionTasks(array $args = []) |
| 16 | * @method \GuzzleHttp\Promise\Promise countPendingDecisionTasksAsync(array $args = []) |
| 17 | * @method \Aws\Result deprecateActivityType(array $args = []) |
| 18 | * @method \GuzzleHttp\Promise\Promise deprecateActivityTypeAsync(array $args = []) |
| 19 | * @method \Aws\Result deprecateDomain(array $args = []) |
| 20 | * @method \GuzzleHttp\Promise\Promise deprecateDomainAsync(array $args = []) |
| 21 | * @method \Aws\Result deprecateWorkflowType(array $args = []) |
| 22 | * @method \GuzzleHttp\Promise\Promise deprecateWorkflowTypeAsync(array $args = []) |
| 23 | * @method \Aws\Result describeActivityType(array $args = []) |
| 24 | * @method \GuzzleHttp\Promise\Promise describeActivityTypeAsync(array $args = []) |
| 25 | * @method \Aws\Result describeDomain(array $args = []) |
| 26 | * @method \GuzzleHttp\Promise\Promise describeDomainAsync(array $args = []) |
| 27 | * @method \Aws\Result describeWorkflowExecution(array $args = []) |
| 28 | * @method \GuzzleHttp\Promise\Promise describeWorkflowExecutionAsync(array $args = []) |
| 29 | * @method \Aws\Result describeWorkflowType(array $args = []) |
| 30 | * @method \GuzzleHttp\Promise\Promise describeWorkflowTypeAsync(array $args = []) |
| 31 | * @method \Aws\Result getWorkflowExecutionHistory(array $args = []) |
| 32 | * @method \GuzzleHttp\Promise\Promise getWorkflowExecutionHistoryAsync(array $args = []) |
| 33 | * @method \Aws\Result listActivityTypes(array $args = []) |
| 34 | * @method \GuzzleHttp\Promise\Promise listActivityTypesAsync(array $args = []) |
| 35 | * @method \Aws\Result listClosedWorkflowExecutions(array $args = []) |
| 36 | * @method \GuzzleHttp\Promise\Promise listClosedWorkflowExecutionsAsync(array $args = []) |
| 37 | * @method \Aws\Result listDomains(array $args = []) |
| 38 | * @method \GuzzleHttp\Promise\Promise listDomainsAsync(array $args = []) |
| 39 | * @method \Aws\Result listOpenWorkflowExecutions(array $args = []) |
| 40 | * @method \GuzzleHttp\Promise\Promise listOpenWorkflowExecutionsAsync(array $args = []) |
| 41 | * @method \Aws\Result listTagsForResource(array $args = []) |
| 42 | * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = []) |
| 43 | * @method \Aws\Result listWorkflowTypes(array $args = []) |
| 44 | * @method \GuzzleHttp\Promise\Promise listWorkflowTypesAsync(array $args = []) |
| 45 | * @method \Aws\Result pollForActivityTask(array $args = []) |
| 46 | * @method \GuzzleHttp\Promise\Promise pollForActivityTaskAsync(array $args = []) |
| 47 | * @method \Aws\Result pollForDecisionTask(array $args = []) |
| 48 | * @method \GuzzleHttp\Promise\Promise pollForDecisionTaskAsync(array $args = []) |
| 49 | * @method \Aws\Result recordActivityTaskHeartbeat(array $args = []) |
| 50 | * @method \GuzzleHttp\Promise\Promise recordActivityTaskHeartbeatAsync(array $args = []) |
| 51 | * @method \Aws\Result registerActivityType(array $args = []) |
| 52 | * @method \GuzzleHttp\Promise\Promise registerActivityTypeAsync(array $args = []) |
| 53 | * @method \Aws\Result registerDomain(array $args = []) |
| 54 | * @method \GuzzleHttp\Promise\Promise registerDomainAsync(array $args = []) |
| 55 | * @method \Aws\Result registerWorkflowType(array $args = []) |
| 56 | * @method \GuzzleHttp\Promise\Promise registerWorkflowTypeAsync(array $args = []) |
| 57 | * @method \Aws\Result requestCancelWorkflowExecution(array $args = []) |
| 58 | * @method \GuzzleHttp\Promise\Promise requestCancelWorkflowExecutionAsync(array $args = []) |
| 59 | * @method \Aws\Result respondActivityTaskCanceled(array $args = []) |
| 60 | * @method \GuzzleHttp\Promise\Promise respondActivityTaskCanceledAsync(array $args = []) |
| 61 | * @method \Aws\Result respondActivityTaskCompleted(array $args = []) |
| 62 | * @method \GuzzleHttp\Promise\Promise respondActivityTaskCompletedAsync(array $args = []) |
| 63 | * @method \Aws\Result respondActivityTaskFailed(array $args = []) |
| 64 | * @method \GuzzleHttp\Promise\Promise respondActivityTaskFailedAsync(array $args = []) |
| 65 | * @method \Aws\Result respondDecisionTaskCompleted(array $args = []) |
| 66 | * @method \GuzzleHttp\Promise\Promise respondDecisionTaskCompletedAsync(array $args = []) |
| 67 | * @method \Aws\Result signalWorkflowExecution(array $args = []) |
| 68 | * @method \GuzzleHttp\Promise\Promise signalWorkflowExecutionAsync(array $args = []) |
| 69 | * @method \Aws\Result startWorkflowExecution(array $args = []) |
| 70 | * @method \GuzzleHttp\Promise\Promise startWorkflowExecutionAsync(array $args = []) |
| 71 | * @method \Aws\Result tagResource(array $args = []) |
| 72 | * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = []) |
| 73 | * @method \Aws\Result terminateWorkflowExecution(array $args = []) |
| 74 | * @method \GuzzleHttp\Promise\Promise terminateWorkflowExecutionAsync(array $args = []) |
| 75 | * @method \Aws\Result undeprecateActivityType(array $args = []) |
| 76 | * @method \GuzzleHttp\Promise\Promise undeprecateActivityTypeAsync(array $args = []) |
| 77 | * @method \Aws\Result undeprecateDomain(array $args = []) |
| 78 | * @method \GuzzleHttp\Promise\Promise undeprecateDomainAsync(array $args = []) |
| 79 | * @method \Aws\Result undeprecateWorkflowType(array $args = []) |
| 80 | * @method \GuzzleHttp\Promise\Promise undeprecateWorkflowTypeAsync(array $args = []) |
| 81 | * @method \Aws\Result untagResource(array $args = []) |
| 82 | * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = []) |
| 83 | */ |
| 84 | class SwfClient extends AwsClient {} |
| 85 |