AppConfigClient.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. namespace Aws\AppConfig;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **Amazon AppConfig** service.
  6. * @method \Aws\Result createApplication(array $args = [])
  7. * @method \GuzzleHttp\Promise\Promise createApplicationAsync(array $args = [])
  8. * @method \Aws\Result createConfigurationProfile(array $args = [])
  9. * @method \GuzzleHttp\Promise\Promise createConfigurationProfileAsync(array $args = [])
  10. * @method \Aws\Result createDeploymentStrategy(array $args = [])
  11. * @method \GuzzleHttp\Promise\Promise createDeploymentStrategyAsync(array $args = [])
  12. * @method \Aws\Result createEnvironment(array $args = [])
  13. * @method \GuzzleHttp\Promise\Promise createEnvironmentAsync(array $args = [])
  14. * @method \Aws\Result createHostedConfigurationVersion(array $args = [])
  15. * @method \GuzzleHttp\Promise\Promise createHostedConfigurationVersionAsync(array $args = [])
  16. * @method \Aws\Result deleteApplication(array $args = [])
  17. * @method \GuzzleHttp\Promise\Promise deleteApplicationAsync(array $args = [])
  18. * @method \Aws\Result deleteConfigurationProfile(array $args = [])
  19. * @method \GuzzleHttp\Promise\Promise deleteConfigurationProfileAsync(array $args = [])
  20. * @method \Aws\Result deleteDeploymentStrategy(array $args = [])
  21. * @method \GuzzleHttp\Promise\Promise deleteDeploymentStrategyAsync(array $args = [])
  22. * @method \Aws\Result deleteEnvironment(array $args = [])
  23. * @method \GuzzleHttp\Promise\Promise deleteEnvironmentAsync(array $args = [])
  24. * @method \Aws\Result deleteHostedConfigurationVersion(array $args = [])
  25. * @method \GuzzleHttp\Promise\Promise deleteHostedConfigurationVersionAsync(array $args = [])
  26. * @method \Aws\Result getApplication(array $args = [])
  27. * @method \GuzzleHttp\Promise\Promise getApplicationAsync(array $args = [])
  28. * @method \Aws\Result getConfiguration(array $args = [])
  29. * @method \GuzzleHttp\Promise\Promise getConfigurationAsync(array $args = [])
  30. * @method \Aws\Result getConfigurationProfile(array $args = [])
  31. * @method \GuzzleHttp\Promise\Promise getConfigurationProfileAsync(array $args = [])
  32. * @method \Aws\Result getDeployment(array $args = [])
  33. * @method \GuzzleHttp\Promise\Promise getDeploymentAsync(array $args = [])
  34. * @method \Aws\Result getDeploymentStrategy(array $args = [])
  35. * @method \GuzzleHttp\Promise\Promise getDeploymentStrategyAsync(array $args = [])
  36. * @method \Aws\Result getEnvironment(array $args = [])
  37. * @method \GuzzleHttp\Promise\Promise getEnvironmentAsync(array $args = [])
  38. * @method \Aws\Result getHostedConfigurationVersion(array $args = [])
  39. * @method \GuzzleHttp\Promise\Promise getHostedConfigurationVersionAsync(array $args = [])
  40. * @method \Aws\Result listApplications(array $args = [])
  41. * @method \GuzzleHttp\Promise\Promise listApplicationsAsync(array $args = [])
  42. * @method \Aws\Result listConfigurationProfiles(array $args = [])
  43. * @method \GuzzleHttp\Promise\Promise listConfigurationProfilesAsync(array $args = [])
  44. * @method \Aws\Result listDeploymentStrategies(array $args = [])
  45. * @method \GuzzleHttp\Promise\Promise listDeploymentStrategiesAsync(array $args = [])
  46. * @method \Aws\Result listDeployments(array $args = [])
  47. * @method \GuzzleHttp\Promise\Promise listDeploymentsAsync(array $args = [])
  48. * @method \Aws\Result listEnvironments(array $args = [])
  49. * @method \GuzzleHttp\Promise\Promise listEnvironmentsAsync(array $args = [])
  50. * @method \Aws\Result listHostedConfigurationVersions(array $args = [])
  51. * @method \GuzzleHttp\Promise\Promise listHostedConfigurationVersionsAsync(array $args = [])
  52. * @method \Aws\Result listTagsForResource(array $args = [])
  53. * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
  54. * @method \Aws\Result startDeployment(array $args = [])
  55. * @method \GuzzleHttp\Promise\Promise startDeploymentAsync(array $args = [])
  56. * @method \Aws\Result stopDeployment(array $args = [])
  57. * @method \GuzzleHttp\Promise\Promise stopDeploymentAsync(array $args = [])
  58. * @method \Aws\Result tagResource(array $args = [])
  59. * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
  60. * @method \Aws\Result untagResource(array $args = [])
  61. * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
  62. * @method \Aws\Result updateApplication(array $args = [])
  63. * @method \GuzzleHttp\Promise\Promise updateApplicationAsync(array $args = [])
  64. * @method \Aws\Result updateConfigurationProfile(array $args = [])
  65. * @method \GuzzleHttp\Promise\Promise updateConfigurationProfileAsync(array $args = [])
  66. * @method \Aws\Result updateDeploymentStrategy(array $args = [])
  67. * @method \GuzzleHttp\Promise\Promise updateDeploymentStrategyAsync(array $args = [])
  68. * @method \Aws\Result updateEnvironment(array $args = [])
  69. * @method \GuzzleHttp\Promise\Promise updateEnvironmentAsync(array $args = [])
  70. * @method \Aws\Result validateConfiguration(array $args = [])
  71. * @method \GuzzleHttp\Promise\Promise validateConfigurationAsync(array $args = [])
  72. */
  73. class AppConfigClient extends AwsClient {}