CodePipelineClient.php 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. namespace Aws\CodePipeline;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **Amazon CodePipeline** service.
  6. *
  7. * @method \Aws\Result acknowledgeJob(array $args = [])
  8. * @method \GuzzleHttp\Promise\Promise acknowledgeJobAsync(array $args = [])
  9. * @method \Aws\Result acknowledgeThirdPartyJob(array $args = [])
  10. * @method \GuzzleHttp\Promise\Promise acknowledgeThirdPartyJobAsync(array $args = [])
  11. * @method \Aws\Result createCustomActionType(array $args = [])
  12. * @method \GuzzleHttp\Promise\Promise createCustomActionTypeAsync(array $args = [])
  13. * @method \Aws\Result createPipeline(array $args = [])
  14. * @method \GuzzleHttp\Promise\Promise createPipelineAsync(array $args = [])
  15. * @method \Aws\Result deleteCustomActionType(array $args = [])
  16. * @method \GuzzleHttp\Promise\Promise deleteCustomActionTypeAsync(array $args = [])
  17. * @method \Aws\Result deletePipeline(array $args = [])
  18. * @method \GuzzleHttp\Promise\Promise deletePipelineAsync(array $args = [])
  19. * @method \Aws\Result disableStageTransition(array $args = [])
  20. * @method \GuzzleHttp\Promise\Promise disableStageTransitionAsync(array $args = [])
  21. * @method \Aws\Result enableStageTransition(array $args = [])
  22. * @method \GuzzleHttp\Promise\Promise enableStageTransitionAsync(array $args = [])
  23. * @method \Aws\Result getJobDetails(array $args = [])
  24. * @method \GuzzleHttp\Promise\Promise getJobDetailsAsync(array $args = [])
  25. * @method \Aws\Result getPipeline(array $args = [])
  26. * @method \GuzzleHttp\Promise\Promise getPipelineAsync(array $args = [])
  27. * @method \Aws\Result getPipelineExecution(array $args = [])
  28. * @method \GuzzleHttp\Promise\Promise getPipelineExecutionAsync(array $args = [])
  29. * @method \Aws\Result getPipelineState(array $args = [])
  30. * @method \GuzzleHttp\Promise\Promise getPipelineStateAsync(array $args = [])
  31. * @method \Aws\Result getThirdPartyJobDetails(array $args = [])
  32. * @method \GuzzleHttp\Promise\Promise getThirdPartyJobDetailsAsync(array $args = [])
  33. * @method \Aws\Result listActionTypes(array $args = [])
  34. * @method \GuzzleHttp\Promise\Promise listActionTypesAsync(array $args = [])
  35. * @method \Aws\Result listPipelineExecutions(array $args = [])
  36. * @method \GuzzleHttp\Promise\Promise listPipelineExecutionsAsync(array $args = [])
  37. * @method \Aws\Result listPipelines(array $args = [])
  38. * @method \GuzzleHttp\Promise\Promise listPipelinesAsync(array $args = [])
  39. * @method \Aws\Result pollForJobs(array $args = [])
  40. * @method \GuzzleHttp\Promise\Promise pollForJobsAsync(array $args = [])
  41. * @method \Aws\Result pollForThirdPartyJobs(array $args = [])
  42. * @method \GuzzleHttp\Promise\Promise pollForThirdPartyJobsAsync(array $args = [])
  43. * @method \Aws\Result putActionRevision(array $args = [])
  44. * @method \GuzzleHttp\Promise\Promise putActionRevisionAsync(array $args = [])
  45. * @method \Aws\Result putApprovalResult(array $args = [])
  46. * @method \GuzzleHttp\Promise\Promise putApprovalResultAsync(array $args = [])
  47. * @method \Aws\Result putJobFailureResult(array $args = [])
  48. * @method \GuzzleHttp\Promise\Promise putJobFailureResultAsync(array $args = [])
  49. * @method \Aws\Result putJobSuccessResult(array $args = [])
  50. * @method \GuzzleHttp\Promise\Promise putJobSuccessResultAsync(array $args = [])
  51. * @method \Aws\Result putThirdPartyJobFailureResult(array $args = [])
  52. * @method \GuzzleHttp\Promise\Promise putThirdPartyJobFailureResultAsync(array $args = [])
  53. * @method \Aws\Result putThirdPartyJobSuccessResult(array $args = [])
  54. * @method \GuzzleHttp\Promise\Promise putThirdPartyJobSuccessResultAsync(array $args = [])
  55. * @method \Aws\Result retryStageExecution(array $args = [])
  56. * @method \GuzzleHttp\Promise\Promise retryStageExecutionAsync(array $args = [])
  57. * @method \Aws\Result startPipelineExecution(array $args = [])
  58. * @method \GuzzleHttp\Promise\Promise startPipelineExecutionAsync(array $args = [])
  59. * @method \Aws\Result updatePipeline(array $args = [])
  60. * @method \GuzzleHttp\Promise\Promise updatePipelineAsync(array $args = [])
  61. */
  62. class CodePipelineClient extends AwsClient {}