EcrClient.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. namespace Aws\Ecr;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **Amazon EC2 Container Registry** service.
  6. *
  7. * @method \Aws\Result batchCheckLayerAvailability(array $args = [])
  8. * @method \GuzzleHttp\Promise\Promise batchCheckLayerAvailabilityAsync(array $args = [])
  9. * @method \Aws\Result batchDeleteImage(array $args = [])
  10. * @method \GuzzleHttp\Promise\Promise batchDeleteImageAsync(array $args = [])
  11. * @method \Aws\Result batchGetImage(array $args = [])
  12. * @method \GuzzleHttp\Promise\Promise batchGetImageAsync(array $args = [])
  13. * @method \Aws\Result completeLayerUpload(array $args = [])
  14. * @method \GuzzleHttp\Promise\Promise completeLayerUploadAsync(array $args = [])
  15. * @method \Aws\Result createRepository(array $args = [])
  16. * @method \GuzzleHttp\Promise\Promise createRepositoryAsync(array $args = [])
  17. * @method \Aws\Result deleteRepository(array $args = [])
  18. * @method \GuzzleHttp\Promise\Promise deleteRepositoryAsync(array $args = [])
  19. * @method \Aws\Result deleteRepositoryPolicy(array $args = [])
  20. * @method \GuzzleHttp\Promise\Promise deleteRepositoryPolicyAsync(array $args = [])
  21. * @method \Aws\Result describeImages(array $args = [])
  22. * @method \GuzzleHttp\Promise\Promise describeImagesAsync(array $args = [])
  23. * @method \Aws\Result describeRepositories(array $args = [])
  24. * @method \GuzzleHttp\Promise\Promise describeRepositoriesAsync(array $args = [])
  25. * @method \Aws\Result getAuthorizationToken(array $args = [])
  26. * @method \GuzzleHttp\Promise\Promise getAuthorizationTokenAsync(array $args = [])
  27. * @method \Aws\Result getDownloadUrlForLayer(array $args = [])
  28. * @method \GuzzleHttp\Promise\Promise getDownloadUrlForLayerAsync(array $args = [])
  29. * @method \Aws\Result getRepositoryPolicy(array $args = [])
  30. * @method \GuzzleHttp\Promise\Promise getRepositoryPolicyAsync(array $args = [])
  31. * @method \Aws\Result initiateLayerUpload(array $args = [])
  32. * @method \GuzzleHttp\Promise\Promise initiateLayerUploadAsync(array $args = [])
  33. * @method \Aws\Result listImages(array $args = [])
  34. * @method \GuzzleHttp\Promise\Promise listImagesAsync(array $args = [])
  35. * @method \Aws\Result putImage(array $args = [])
  36. * @method \GuzzleHttp\Promise\Promise putImageAsync(array $args = [])
  37. * @method \Aws\Result setRepositoryPolicy(array $args = [])
  38. * @method \GuzzleHttp\Promise\Promise setRepositoryPolicyAsync(array $args = [])
  39. * @method \Aws\Result uploadLayerPart(array $args = [])
  40. * @method \GuzzleHttp\Promise\Promise uploadLayerPartAsync(array $args = [])
  41. */
  42. class EcrClient extends AwsClient {}