EcsClient.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. namespace Aws\Ecs;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with **Amazon ECS**.
  6. *
  7. * @method \Aws\Result createCluster(array $args = [])
  8. * @method \GuzzleHttp\Promise\Promise createClusterAsync(array $args = [])
  9. * @method \Aws\Result createService(array $args = [])
  10. * @method \GuzzleHttp\Promise\Promise createServiceAsync(array $args = [])
  11. * @method \Aws\Result deleteAttributes(array $args = [])
  12. * @method \GuzzleHttp\Promise\Promise deleteAttributesAsync(array $args = [])
  13. * @method \Aws\Result deleteCluster(array $args = [])
  14. * @method \GuzzleHttp\Promise\Promise deleteClusterAsync(array $args = [])
  15. * @method \Aws\Result deleteService(array $args = [])
  16. * @method \GuzzleHttp\Promise\Promise deleteServiceAsync(array $args = [])
  17. * @method \Aws\Result deregisterContainerInstance(array $args = [])
  18. * @method \GuzzleHttp\Promise\Promise deregisterContainerInstanceAsync(array $args = [])
  19. * @method \Aws\Result deregisterTaskDefinition(array $args = [])
  20. * @method \GuzzleHttp\Promise\Promise deregisterTaskDefinitionAsync(array $args = [])
  21. * @method \Aws\Result describeClusters(array $args = [])
  22. * @method \GuzzleHttp\Promise\Promise describeClustersAsync(array $args = [])
  23. * @method \Aws\Result describeContainerInstances(array $args = [])
  24. * @method \GuzzleHttp\Promise\Promise describeContainerInstancesAsync(array $args = [])
  25. * @method \Aws\Result describeServices(array $args = [])
  26. * @method \GuzzleHttp\Promise\Promise describeServicesAsync(array $args = [])
  27. * @method \Aws\Result describeTaskDefinition(array $args = [])
  28. * @method \GuzzleHttp\Promise\Promise describeTaskDefinitionAsync(array $args = [])
  29. * @method \Aws\Result describeTasks(array $args = [])
  30. * @method \GuzzleHttp\Promise\Promise describeTasksAsync(array $args = [])
  31. * @method \Aws\Result discoverPollEndpoint(array $args = [])
  32. * @method \GuzzleHttp\Promise\Promise discoverPollEndpointAsync(array $args = [])
  33. * @method \Aws\Result listAttributes(array $args = [])
  34. * @method \GuzzleHttp\Promise\Promise listAttributesAsync(array $args = [])
  35. * @method \Aws\Result listClusters(array $args = [])
  36. * @method \GuzzleHttp\Promise\Promise listClustersAsync(array $args = [])
  37. * @method \Aws\Result listContainerInstances(array $args = [])
  38. * @method \GuzzleHttp\Promise\Promise listContainerInstancesAsync(array $args = [])
  39. * @method \Aws\Result listServices(array $args = [])
  40. * @method \GuzzleHttp\Promise\Promise listServicesAsync(array $args = [])
  41. * @method \Aws\Result listTaskDefinitionFamilies(array $args = [])
  42. * @method \GuzzleHttp\Promise\Promise listTaskDefinitionFamiliesAsync(array $args = [])
  43. * @method \Aws\Result listTaskDefinitions(array $args = [])
  44. * @method \GuzzleHttp\Promise\Promise listTaskDefinitionsAsync(array $args = [])
  45. * @method \Aws\Result listTasks(array $args = [])
  46. * @method \GuzzleHttp\Promise\Promise listTasksAsync(array $args = [])
  47. * @method \Aws\Result putAttributes(array $args = [])
  48. * @method \GuzzleHttp\Promise\Promise putAttributesAsync(array $args = [])
  49. * @method \Aws\Result registerContainerInstance(array $args = [])
  50. * @method \GuzzleHttp\Promise\Promise registerContainerInstanceAsync(array $args = [])
  51. * @method \Aws\Result registerTaskDefinition(array $args = [])
  52. * @method \GuzzleHttp\Promise\Promise registerTaskDefinitionAsync(array $args = [])
  53. * @method \Aws\Result runTask(array $args = [])
  54. * @method \GuzzleHttp\Promise\Promise runTaskAsync(array $args = [])
  55. * @method \Aws\Result startTask(array $args = [])
  56. * @method \GuzzleHttp\Promise\Promise startTaskAsync(array $args = [])
  57. * @method \Aws\Result stopTask(array $args = [])
  58. * @method \GuzzleHttp\Promise\Promise stopTaskAsync(array $args = [])
  59. * @method \Aws\Result submitContainerStateChange(array $args = [])
  60. * @method \GuzzleHttp\Promise\Promise submitContainerStateChangeAsync(array $args = [])
  61. * @method \Aws\Result submitTaskStateChange(array $args = [])
  62. * @method \GuzzleHttp\Promise\Promise submitTaskStateChangeAsync(array $args = [])
  63. * @method \Aws\Result updateContainerAgent(array $args = [])
  64. * @method \GuzzleHttp\Promise\Promise updateContainerAgentAsync(array $args = [])
  65. * @method \Aws\Result updateContainerInstancesState(array $args = [])
  66. * @method \GuzzleHttp\Promise\Promise updateContainerInstancesStateAsync(array $args = [])
  67. * @method \Aws\Result updateService(array $args = [])
  68. * @method \GuzzleHttp\Promise\Promise updateServiceAsync(array $args = [])
  69. */
  70. class EcsClient extends AwsClient {}