CodeBuildClient.php 1.6 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace Aws\CodeBuild;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **AWS CodeBuild** service.
  6. * @method \Aws\Result batchGetBuilds(array $args = [])
  7. * @method \GuzzleHttp\Promise\Promise batchGetBuildsAsync(array $args = [])
  8. * @method \Aws\Result batchGetProjects(array $args = [])
  9. * @method \GuzzleHttp\Promise\Promise batchGetProjectsAsync(array $args = [])
  10. * @method \Aws\Result createProject(array $args = [])
  11. * @method \GuzzleHttp\Promise\Promise createProjectAsync(array $args = [])
  12. * @method \Aws\Result deleteProject(array $args = [])
  13. * @method \GuzzleHttp\Promise\Promise deleteProjectAsync(array $args = [])
  14. * @method \Aws\Result listBuilds(array $args = [])
  15. * @method \GuzzleHttp\Promise\Promise listBuildsAsync(array $args = [])
  16. * @method \Aws\Result listBuildsForProject(array $args = [])
  17. * @method \GuzzleHttp\Promise\Promise listBuildsForProjectAsync(array $args = [])
  18. * @method \Aws\Result listCuratedEnvironmentImages(array $args = [])
  19. * @method \GuzzleHttp\Promise\Promise listCuratedEnvironmentImagesAsync(array $args = [])
  20. * @method \Aws\Result listProjects(array $args = [])
  21. * @method \GuzzleHttp\Promise\Promise listProjectsAsync(array $args = [])
  22. * @method \Aws\Result startBuild(array $args = [])
  23. * @method \GuzzleHttp\Promise\Promise startBuildAsync(array $args = [])
  24. * @method \Aws\Result stopBuild(array $args = [])
  25. * @method \GuzzleHttp\Promise\Promise stopBuildAsync(array $args = [])
  26. * @method \Aws\Result updateProject(array $args = [])
  27. * @method \GuzzleHttp\Promise\Promise updateProjectAsync(array $args = [])
  28. */
  29. class CodeBuildClient extends AwsClient {}