CloudWatchClient.php 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. namespace Aws\CloudWatch;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **Amazon CloudWatch** service.
  6. *
  7. * @method \Aws\Result deleteAlarms(array $args = [])
  8. * @method \GuzzleHttp\Promise\Promise deleteAlarmsAsync(array $args = [])
  9. * @method \Aws\Result deleteAnomalyDetector(array $args = [])
  10. * @method \GuzzleHttp\Promise\Promise deleteAnomalyDetectorAsync(array $args = [])
  11. * @method \Aws\Result deleteDashboards(array $args = [])
  12. * @method \GuzzleHttp\Promise\Promise deleteDashboardsAsync(array $args = [])
  13. * @method \Aws\Result deleteInsightRules(array $args = [])
  14. * @method \GuzzleHttp\Promise\Promise deleteInsightRulesAsync(array $args = [])
  15. * @method \Aws\Result describeAlarmHistory(array $args = [])
  16. * @method \GuzzleHttp\Promise\Promise describeAlarmHistoryAsync(array $args = [])
  17. * @method \Aws\Result describeAlarms(array $args = [])
  18. * @method \GuzzleHttp\Promise\Promise describeAlarmsAsync(array $args = [])
  19. * @method \Aws\Result describeAlarmsForMetric(array $args = [])
  20. * @method \GuzzleHttp\Promise\Promise describeAlarmsForMetricAsync(array $args = [])
  21. * @method \Aws\Result describeAnomalyDetectors(array $args = [])
  22. * @method \GuzzleHttp\Promise\Promise describeAnomalyDetectorsAsync(array $args = [])
  23. * @method \Aws\Result describeInsightRules(array $args = [])
  24. * @method \GuzzleHttp\Promise\Promise describeInsightRulesAsync(array $args = [])
  25. * @method \Aws\Result disableAlarmActions(array $args = [])
  26. * @method \GuzzleHttp\Promise\Promise disableAlarmActionsAsync(array $args = [])
  27. * @method \Aws\Result disableInsightRules(array $args = [])
  28. * @method \GuzzleHttp\Promise\Promise disableInsightRulesAsync(array $args = [])
  29. * @method \Aws\Result enableAlarmActions(array $args = [])
  30. * @method \GuzzleHttp\Promise\Promise enableAlarmActionsAsync(array $args = [])
  31. * @method \Aws\Result enableInsightRules(array $args = [])
  32. * @method \GuzzleHttp\Promise\Promise enableInsightRulesAsync(array $args = [])
  33. * @method \Aws\Result getDashboard(array $args = [])
  34. * @method \GuzzleHttp\Promise\Promise getDashboardAsync(array $args = [])
  35. * @method \Aws\Result getInsightRuleReport(array $args = [])
  36. * @method \GuzzleHttp\Promise\Promise getInsightRuleReportAsync(array $args = [])
  37. * @method \Aws\Result getMetricData(array $args = [])
  38. * @method \GuzzleHttp\Promise\Promise getMetricDataAsync(array $args = [])
  39. * @method \Aws\Result getMetricStatistics(array $args = [])
  40. * @method \GuzzleHttp\Promise\Promise getMetricStatisticsAsync(array $args = [])
  41. * @method \Aws\Result getMetricWidgetImage(array $args = [])
  42. * @method \GuzzleHttp\Promise\Promise getMetricWidgetImageAsync(array $args = [])
  43. * @method \Aws\Result listDashboards(array $args = [])
  44. * @method \GuzzleHttp\Promise\Promise listDashboardsAsync(array $args = [])
  45. * @method \Aws\Result listMetrics(array $args = [])
  46. * @method \GuzzleHttp\Promise\Promise listMetricsAsync(array $args = [])
  47. * @method \Aws\Result listTagsForResource(array $args = [])
  48. * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
  49. * @method \Aws\Result putAnomalyDetector(array $args = [])
  50. * @method \GuzzleHttp\Promise\Promise putAnomalyDetectorAsync(array $args = [])
  51. * @method \Aws\Result putCompositeAlarm(array $args = [])
  52. * @method \GuzzleHttp\Promise\Promise putCompositeAlarmAsync(array $args = [])
  53. * @method \Aws\Result putDashboard(array $args = [])
  54. * @method \GuzzleHttp\Promise\Promise putDashboardAsync(array $args = [])
  55. * @method \Aws\Result putInsightRule(array $args = [])
  56. * @method \GuzzleHttp\Promise\Promise putInsightRuleAsync(array $args = [])
  57. * @method \Aws\Result putMetricAlarm(array $args = [])
  58. * @method \GuzzleHttp\Promise\Promise putMetricAlarmAsync(array $args = [])
  59. * @method \Aws\Result putMetricData(array $args = [])
  60. * @method \GuzzleHttp\Promise\Promise putMetricDataAsync(array $args = [])
  61. * @method \Aws\Result setAlarmState(array $args = [])
  62. * @method \GuzzleHttp\Promise\Promise setAlarmStateAsync(array $args = [])
  63. * @method \Aws\Result tagResource(array $args = [])
  64. * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
  65. * @method \Aws\Result untagResource(array $args = [])
  66. * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
  67. */
  68. class CloudWatchClient extends AwsClient {}