lib/aws/cloud_watch/client.rb
# Copyright 2011-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"). You # may not use this file except in compliance with the License. A copy of # the License is located at # # http://aws.amazon.com/apache2.0/ # # or in the "license" file accompanying this file. This file is # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF # ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. module AWS class CloudWatch # Client class for Cloud Watch class Client < Core::Client API_VERSION = '2010-08-01' extend Core::QueryClient # @private CACHEABLE_REQUESTS = Set[ :describe_alarm_history, :describe_alarms, :describe_alarms_for_metric, :list_metrics, ] ## client methods ## # Calls the DeleteAlarms API operation. # @method delete_alarms(options = {}) # @param [Hash] options # * +:alarm_names+ - *required* - (Array<String>) # @return [Core::Response] define_client_method :delete_alarms, 'DeleteAlarms' # Calls the DescribeAlarmHistory API operation. # @method describe_alarm_history(options = {}) # @param [Hash] options # * +:alarm_name+ - (String) # * +:history_item_type+ - (String) # * +:start_date+ - (String<ISO8601 datetime>) # * +:end_date+ - (String<ISO8601 datetime>) # * +:max_records+ - (Integer) # * +:next_token+ - (String) # @return [Core::Response] # The #data method of the response object returns # a hash with the following structure: # * +:alarm_history_items+ - (Array<Hash>) # * +:alarm_name+ - (String) # * +:timestamp+ - (Time) # * +:history_item_type+ - (String) # * +:history_summary+ - (String) # * +:history_data+ - (String) # * +:next_token+ - (String) define_client_method :describe_alarm_history, 'DescribeAlarmHistory' # Calls the DescribeAlarms API operation. # @method describe_alarms(options = {}) # @param [Hash] options # * +:alarm_names+ - (Array<String>) # * +:alarm_name_prefix+ - (String) # * +:state_value+ - (String) # * +:action_prefix+ - (String) # * +:max_records+ - (Integer) # * +:next_token+ - (String) # @return [Core::Response] # The #data method of the response object returns # a hash with the following structure: # * +:metric_alarms+ - (Array<Hash>) # * +:alarm_name+ - (String) # * +:alarm_arn+ - (String) # * +:alarm_description+ - (String) # * +:alarm_configuration_updated_timestamp+ - (Time) # * +:actions_enabled+ - (Boolean) # * +:ok_actions+ - (Array<String>) # * +:alarm_actions+ - (Array<String>) # * +:insufficient_data_actions+ - (Array<String>) # * +:state_value+ - (String) # * +:state_reason+ - (String) # * +:state_reason_data+ - (String) # * +:state_updated_timestamp+ - (Time) # * +:metric_name+ - (String) # * +:namespace+ - (String) # * +:statistic+ - (String) # * +:dimensions+ - (Array<Hash>) # * +:name+ - (String) # * +:value+ - (String) # * +:period+ - (Integer) # * +:unit+ - (String) # * +:evaluation_periods+ - (Integer) # * +:threshold+ - (Numeric) # * +:comparison_operator+ - (String) # * +:next_token+ - (String) define_client_method :describe_alarms, 'DescribeAlarms' # Calls the DescribeAlarmsForMetric API operation. # @method describe_alarms_for_metric(options = {}) # @param [Hash] options # * +:metric_name+ - *required* - (String) # * +:namespace+ - *required* - (String) # * +:statistic+ - (String) # * +:dimensions+ - (Array<Hash>) # * +:name+ - *required* - (String) # * +:value+ - *required* - (String) # * +:period+ - (Integer) # * +:unit+ - (String) # @return [Core::Response] # The #data method of the response object returns # a hash with the following structure: # * +:metric_alarms+ - (Array<Hash>) # * +:alarm_name+ - (String) # * +:alarm_arn+ - (String) # * +:alarm_description+ - (String) # * +:alarm_configuration_updated_timestamp+ - (Time) # * +:actions_enabled+ - (Boolean) # * +:ok_actions+ - (Array<String>) # * +:alarm_actions+ - (Array<String>) # * +:insufficient_data_actions+ - (Array<String>) # * +:state_value+ - (String) # * +:state_reason+ - (String) # * +:state_reason_data+ - (String) # * +:state_updated_timestamp+ - (Time) # * +:metric_name+ - (String) # * +:namespace+ - (String) # * +:statistic+ - (String) # * +:dimensions+ - (Array<Hash>) # * +:name+ - (String) # * +:value+ - (String) # * +:period+ - (Integer) # * +:unit+ - (String) # * +:evaluation_periods+ - (Integer) # * +:threshold+ - (Numeric) # * +:comparison_operator+ - (String) define_client_method :describe_alarms_for_metric, 'DescribeAlarmsForMetric' # Calls the DisableAlarmActions API operation. # @method disable_alarm_actions(options = {}) # @param [Hash] options # * +:alarm_names+ - *required* - (Array<String>) # @return [Core::Response] define_client_method :disable_alarm_actions, 'DisableAlarmActions' # Calls the EnableAlarmActions API operation. # @method enable_alarm_actions(options = {}) # @param [Hash] options # * +:alarm_names+ - *required* - (Array<String>) # @return [Core::Response] define_client_method :enable_alarm_actions, 'EnableAlarmActions' # Calls the GetMetricStatistics API operation. # @method get_metric_statistics(options = {}) # @param [Hash] options # * +:namespace+ - *required* - (String) # * +:metric_name+ - *required* - (String) # * +:dimensions+ - (Array<Hash>) # * +:name+ - *required* - (String) # * +:value+ - *required* - (String) # * +:start_time+ - *required* - (String<ISO8601 datetime>) # * +:end_time+ - *required* - (String<ISO8601 datetime>) # * +:period+ - *required* - (Integer) # * +:statistics+ - *required* - (Array<String>) # * +:unit+ - (String) # @return [Core::Response] # The #data method of the response object returns # a hash with the following structure: # * +:label+ - (String) # * +:datapoints+ - (Array<Hash>) # * +:timestamp+ - (Time) # * +:sample_count+ - (Numeric) # * +:average+ - (Numeric) # * +:sum+ - (Numeric) # * +:minimum+ - (Numeric) # * +:maximum+ - (Numeric) # * +:unit+ - (String) define_client_method :get_metric_statistics, 'GetMetricStatistics' # Calls the ListMetrics API operation. # @method list_metrics(options = {}) # @param [Hash] options # * +:namespace+ - (String) # * +:metric_name+ - (String) # * +:dimensions+ - (Array<Hash>) # * +:name+ - *required* - (String) # * +:value+ - (String) # * +:next_token+ - (String) # @return [Core::Response] # The #data method of the response object returns # a hash with the following structure: # * +:metrics+ - (Array<Hash>) # * +:namespace+ - (String) # * +:metric_name+ - (String) # * +:dimensions+ - (Array<Hash>) # * +:name+ - (String) # * +:value+ - (String) # * +:next_token+ - (String) define_client_method :list_metrics, 'ListMetrics' # Calls the PutMetricAlarm API operation. # @method put_metric_alarm(options = {}) # @param [Hash] options # * +:alarm_name+ - *required* - (String) # * +:alarm_description+ - (String) # * +:actions_enabled+ - (Boolean) # * +:ok_actions+ - (Array<String>) # * +:alarm_actions+ - (Array<String>) # * +:insufficient_data_actions+ - (Array<String>) # * +:metric_name+ - *required* - (String) # * +:namespace+ - *required* - (String) # * +:statistic+ - *required* - (String) # * +:dimensions+ - (Array<Hash>) # * +:name+ - *required* - (String) # * +:value+ - *required* - (String) # * +:period+ - *required* - (Integer) # * +:unit+ - (String) # * +:evaluation_periods+ - *required* - (Integer) # * +:threshold+ - *required* - (Float) # * +:comparison_operator+ - *required* - (String) # @return [Core::Response] define_client_method :put_metric_alarm, 'PutMetricAlarm' # Calls the PutMetricData API operation. # @method put_metric_data(options = {}) # @param [Hash] options # * +:namespace+ - *required* - (String) # * +:metric_data+ - *required* - (Array<Hash>) # * +:metric_name+ - *required* - (String) # * +:dimensions+ - (Array<Hash>) # * +:name+ - *required* - (String) # * +:value+ - *required* - (String) # * +:timestamp+ - (String<ISO8601 datetime>) # * +:value+ - (Float) # * +:statistic_values+ - (Hash) # * +:sample_count+ - *required* - (Float) # * +:sum+ - *required* - (Float) # * +:minimum+ - *required* - (Float) # * +:maximum+ - *required* - (Float) # * +:unit+ - (String) # @return [Core::Response] define_client_method :put_metric_data, 'PutMetricData' # Calls the SetAlarmState API operation. # @method set_alarm_state(options = {}) # @param [Hash] options # * +:alarm_name+ - *required* - (String) # * +:state_value+ - *required* - (String) # * +:state_reason+ - *required* - (String) # * +:state_reason_data+ - (String) # @return [Core::Response] define_client_method :set_alarm_state, 'SetAlarmState' ## end client methods ## end end end