AppConfigClient.php 6.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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 createExtension(array $args = [])
  15. * @method \GuzzleHttp\Promise\Promise createExtensionAsync(array $args = [])
  16. * @method \Aws\Result createExtensionAssociation(array $args = [])
  17. * @method \GuzzleHttp\Promise\Promise createExtensionAssociationAsync(array $args = [])
  18. * @method \Aws\Result createHostedConfigurationVersion(array $args = [])
  19. * @method \GuzzleHttp\Promise\Promise createHostedConfigurationVersionAsync(array $args = [])
  20. * @method \Aws\Result deleteApplication(array $args = [])
  21. * @method \GuzzleHttp\Promise\Promise deleteApplicationAsync(array $args = [])
  22. * @method \Aws\Result deleteConfigurationProfile(array $args = [])
  23. * @method \GuzzleHttp\Promise\Promise deleteConfigurationProfileAsync(array $args = [])
  24. * @method \Aws\Result deleteDeploymentStrategy(array $args = [])
  25. * @method \GuzzleHttp\Promise\Promise deleteDeploymentStrategyAsync(array $args = [])
  26. * @method \Aws\Result deleteEnvironment(array $args = [])
  27. * @method \GuzzleHttp\Promise\Promise deleteEnvironmentAsync(array $args = [])
  28. * @method \Aws\Result deleteExtension(array $args = [])
  29. * @method \GuzzleHttp\Promise\Promise deleteExtensionAsync(array $args = [])
  30. * @method \Aws\Result deleteExtensionAssociation(array $args = [])
  31. * @method \GuzzleHttp\Promise\Promise deleteExtensionAssociationAsync(array $args = [])
  32. * @method \Aws\Result deleteHostedConfigurationVersion(array $args = [])
  33. * @method \GuzzleHttp\Promise\Promise deleteHostedConfigurationVersionAsync(array $args = [])
  34. * @method \Aws\Result getApplication(array $args = [])
  35. * @method \GuzzleHttp\Promise\Promise getApplicationAsync(array $args = [])
  36. * @method \Aws\Result getConfiguration(array $args = [])
  37. * @method \GuzzleHttp\Promise\Promise getConfigurationAsync(array $args = [])
  38. * @method \Aws\Result getConfigurationProfile(array $args = [])
  39. * @method \GuzzleHttp\Promise\Promise getConfigurationProfileAsync(array $args = [])
  40. * @method \Aws\Result getDeployment(array $args = [])
  41. * @method \GuzzleHttp\Promise\Promise getDeploymentAsync(array $args = [])
  42. * @method \Aws\Result getDeploymentStrategy(array $args = [])
  43. * @method \GuzzleHttp\Promise\Promise getDeploymentStrategyAsync(array $args = [])
  44. * @method \Aws\Result getEnvironment(array $args = [])
  45. * @method \GuzzleHttp\Promise\Promise getEnvironmentAsync(array $args = [])
  46. * @method \Aws\Result getExtension(array $args = [])
  47. * @method \GuzzleHttp\Promise\Promise getExtensionAsync(array $args = [])
  48. * @method \Aws\Result getExtensionAssociation(array $args = [])
  49. * @method \GuzzleHttp\Promise\Promise getExtensionAssociationAsync(array $args = [])
  50. * @method \Aws\Result getHostedConfigurationVersion(array $args = [])
  51. * @method \GuzzleHttp\Promise\Promise getHostedConfigurationVersionAsync(array $args = [])
  52. * @method \Aws\Result listApplications(array $args = [])
  53. * @method \GuzzleHttp\Promise\Promise listApplicationsAsync(array $args = [])
  54. * @method \Aws\Result listConfigurationProfiles(array $args = [])
  55. * @method \GuzzleHttp\Promise\Promise listConfigurationProfilesAsync(array $args = [])
  56. * @method \Aws\Result listDeploymentStrategies(array $args = [])
  57. * @method \GuzzleHttp\Promise\Promise listDeploymentStrategiesAsync(array $args = [])
  58. * @method \Aws\Result listDeployments(array $args = [])
  59. * @method \GuzzleHttp\Promise\Promise listDeploymentsAsync(array $args = [])
  60. * @method \Aws\Result listEnvironments(array $args = [])
  61. * @method \GuzzleHttp\Promise\Promise listEnvironmentsAsync(array $args = [])
  62. * @method \Aws\Result listExtensionAssociations(array $args = [])
  63. * @method \GuzzleHttp\Promise\Promise listExtensionAssociationsAsync(array $args = [])
  64. * @method \Aws\Result listExtensions(array $args = [])
  65. * @method \GuzzleHttp\Promise\Promise listExtensionsAsync(array $args = [])
  66. * @method \Aws\Result listHostedConfigurationVersions(array $args = [])
  67. * @method \GuzzleHttp\Promise\Promise listHostedConfigurationVersionsAsync(array $args = [])
  68. * @method \Aws\Result listTagsForResource(array $args = [])
  69. * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
  70. * @method \Aws\Result startDeployment(array $args = [])
  71. * @method \GuzzleHttp\Promise\Promise startDeploymentAsync(array $args = [])
  72. * @method \Aws\Result stopDeployment(array $args = [])
  73. * @method \GuzzleHttp\Promise\Promise stopDeploymentAsync(array $args = [])
  74. * @method \Aws\Result tagResource(array $args = [])
  75. * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
  76. * @method \Aws\Result untagResource(array $args = [])
  77. * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
  78. * @method \Aws\Result updateApplication(array $args = [])
  79. * @method \GuzzleHttp\Promise\Promise updateApplicationAsync(array $args = [])
  80. * @method \Aws\Result updateConfigurationProfile(array $args = [])
  81. * @method \GuzzleHttp\Promise\Promise updateConfigurationProfileAsync(array $args = [])
  82. * @method \Aws\Result updateDeploymentStrategy(array $args = [])
  83. * @method \GuzzleHttp\Promise\Promise updateDeploymentStrategyAsync(array $args = [])
  84. * @method \Aws\Result updateEnvironment(array $args = [])
  85. * @method \GuzzleHttp\Promise\Promise updateEnvironmentAsync(array $args = [])
  86. * @method \Aws\Result updateExtension(array $args = [])
  87. * @method \GuzzleHttp\Promise\Promise updateExtensionAsync(array $args = [])
  88. * @method \Aws\Result updateExtensionAssociation(array $args = [])
  89. * @method \GuzzleHttp\Promise\Promise updateExtensionAssociationAsync(array $args = [])
  90. * @method \Aws\Result validateConfiguration(array $args = [])
  91. * @method \GuzzleHttp\Promise\Promise validateConfigurationAsync(array $args = [])
  92. */
  93. class AppConfigClient extends AwsClient {}