EKSClient.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. namespace Aws\EKS;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **Amazon Elastic Container Service for Kubernetes** service.
  6. * @method \Aws\Result createAddon(array $args = [])
  7. * @method \GuzzleHttp\Promise\Promise createAddonAsync(array $args = [])
  8. * @method \Aws\Result createCluster(array $args = [])
  9. * @method \GuzzleHttp\Promise\Promise createClusterAsync(array $args = [])
  10. * @method \Aws\Result createFargateProfile(array $args = [])
  11. * @method \GuzzleHttp\Promise\Promise createFargateProfileAsync(array $args = [])
  12. * @method \Aws\Result createNodegroup(array $args = [])
  13. * @method \GuzzleHttp\Promise\Promise createNodegroupAsync(array $args = [])
  14. * @method \Aws\Result deleteAddon(array $args = [])
  15. * @method \GuzzleHttp\Promise\Promise deleteAddonAsync(array $args = [])
  16. * @method \Aws\Result deleteCluster(array $args = [])
  17. * @method \GuzzleHttp\Promise\Promise deleteClusterAsync(array $args = [])
  18. * @method \Aws\Result deleteFargateProfile(array $args = [])
  19. * @method \GuzzleHttp\Promise\Promise deleteFargateProfileAsync(array $args = [])
  20. * @method \Aws\Result deleteNodegroup(array $args = [])
  21. * @method \GuzzleHttp\Promise\Promise deleteNodegroupAsync(array $args = [])
  22. * @method \Aws\Result describeAddon(array $args = [])
  23. * @method \GuzzleHttp\Promise\Promise describeAddonAsync(array $args = [])
  24. * @method \Aws\Result describeAddonVersions(array $args = [])
  25. * @method \GuzzleHttp\Promise\Promise describeAddonVersionsAsync(array $args = [])
  26. * @method \Aws\Result describeCluster(array $args = [])
  27. * @method \GuzzleHttp\Promise\Promise describeClusterAsync(array $args = [])
  28. * @method \Aws\Result describeFargateProfile(array $args = [])
  29. * @method \GuzzleHttp\Promise\Promise describeFargateProfileAsync(array $args = [])
  30. * @method \Aws\Result describeNodegroup(array $args = [])
  31. * @method \GuzzleHttp\Promise\Promise describeNodegroupAsync(array $args = [])
  32. * @method \Aws\Result describeUpdate(array $args = [])
  33. * @method \GuzzleHttp\Promise\Promise describeUpdateAsync(array $args = [])
  34. * @method \Aws\Result listAddons(array $args = [])
  35. * @method \GuzzleHttp\Promise\Promise listAddonsAsync(array $args = [])
  36. * @method \Aws\Result listClusters(array $args = [])
  37. * @method \GuzzleHttp\Promise\Promise listClustersAsync(array $args = [])
  38. * @method \Aws\Result listFargateProfiles(array $args = [])
  39. * @method \GuzzleHttp\Promise\Promise listFargateProfilesAsync(array $args = [])
  40. * @method \Aws\Result listNodegroups(array $args = [])
  41. * @method \GuzzleHttp\Promise\Promise listNodegroupsAsync(array $args = [])
  42. * @method \Aws\Result listTagsForResource(array $args = [])
  43. * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
  44. * @method \Aws\Result listUpdates(array $args = [])
  45. * @method \GuzzleHttp\Promise\Promise listUpdatesAsync(array $args = [])
  46. * @method \Aws\Result tagResource(array $args = [])
  47. * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
  48. * @method \Aws\Result untagResource(array $args = [])
  49. * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
  50. * @method \Aws\Result updateAddon(array $args = [])
  51. * @method \GuzzleHttp\Promise\Promise updateAddonAsync(array $args = [])
  52. * @method \Aws\Result updateClusterConfig(array $args = [])
  53. * @method \GuzzleHttp\Promise\Promise updateClusterConfigAsync(array $args = [])
  54. * @method \Aws\Result updateClusterVersion(array $args = [])
  55. * @method \GuzzleHttp\Promise\Promise updateClusterVersionAsync(array $args = [])
  56. * @method \Aws\Result updateNodegroupConfig(array $args = [])
  57. * @method \GuzzleHttp\Promise\Promise updateNodegroupConfigAsync(array $args = [])
  58. * @method \Aws\Result updateNodegroupVersion(array $args = [])
  59. * @method \GuzzleHttp\Promise\Promise updateNodegroupVersionAsync(array $args = [])
  60. */
  61. class EKSClient extends AwsClient {}