CodeCommitClient.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. namespace Aws\CodeCommit;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **AWS CodeCommit** service.
  6. *
  7. * @method \Aws\Result batchGetRepositories(array $args = [])
  8. * @method \GuzzleHttp\Promise\Promise batchGetRepositoriesAsync(array $args = [])
  9. * @method \Aws\Result createBranch(array $args = [])
  10. * @method \GuzzleHttp\Promise\Promise createBranchAsync(array $args = [])
  11. * @method \Aws\Result createRepository(array $args = [])
  12. * @method \GuzzleHttp\Promise\Promise createRepositoryAsync(array $args = [])
  13. * @method \Aws\Result deleteRepository(array $args = [])
  14. * @method \GuzzleHttp\Promise\Promise deleteRepositoryAsync(array $args = [])
  15. * @method \Aws\Result getBlob(array $args = [])
  16. * @method \GuzzleHttp\Promise\Promise getBlobAsync(array $args = [])
  17. * @method \Aws\Result getBranch(array $args = [])
  18. * @method \GuzzleHttp\Promise\Promise getBranchAsync(array $args = [])
  19. * @method \Aws\Result getCommit(array $args = [])
  20. * @method \GuzzleHttp\Promise\Promise getCommitAsync(array $args = [])
  21. * @method \Aws\Result getDifferences(array $args = [])
  22. * @method \GuzzleHttp\Promise\Promise getDifferencesAsync(array $args = [])
  23. * @method \Aws\Result getRepository(array $args = [])
  24. * @method \GuzzleHttp\Promise\Promise getRepositoryAsync(array $args = [])
  25. * @method \Aws\Result getRepositoryTriggers(array $args = [])
  26. * @method \GuzzleHttp\Promise\Promise getRepositoryTriggersAsync(array $args = [])
  27. * @method \Aws\Result listBranches(array $args = [])
  28. * @method \GuzzleHttp\Promise\Promise listBranchesAsync(array $args = [])
  29. * @method \Aws\Result listRepositories(array $args = [])
  30. * @method \GuzzleHttp\Promise\Promise listRepositoriesAsync(array $args = [])
  31. * @method \Aws\Result putRepositoryTriggers(array $args = [])
  32. * @method \GuzzleHttp\Promise\Promise putRepositoryTriggersAsync(array $args = [])
  33. * @method \Aws\Result testRepositoryTriggers(array $args = [])
  34. * @method \GuzzleHttp\Promise\Promise testRepositoryTriggersAsync(array $args = [])
  35. * @method \Aws\Result updateDefaultBranch(array $args = [])
  36. * @method \GuzzleHttp\Promise\Promise updateDefaultBranchAsync(array $args = [])
  37. * @method \Aws\Result updateRepositoryDescription(array $args = [])
  38. * @method \GuzzleHttp\Promise\Promise updateRepositoryDescriptionAsync(array $args = [])
  39. * @method \Aws\Result updateRepositoryName(array $args = [])
  40. * @method \GuzzleHttp\Promise\Promise updateRepositoryNameAsync(array $args = [])
  41. */
  42. class CodeCommitClient extends AwsClient {}