Sha256: 0efb5e66fdd83a243571fb9e61e0198c160827f0d80a2e440654767936195899

Contents?: true

Size: 1.82 KB

Versions: 1

Compression:

Stored size: 1.82 KB

Contents

module Fog
  module AWS
    class AutoScaling

      class Real

        require 'rackspace-fog/aws/parsers/auto_scaling/put_notification_configuration'

        # Creates a notification configuration for an Auto Scaling group. To update an
        # existing policy, overwrite the existing notification configuration name 
        # and set the parameter(s) you want to change. 
        #
        # ==== Parameters
        # * auto_scaling_group_name<~String> - The name of the Auto Scaling group.
        # * notification_types<~Array> - The type of events that will trigger the 
        #   notification.
        # * topic_arn<~String> - The Amazon Resource Name (ARN) of the Amazon 
        #   Simple Notification Service (SNS) topic.
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'ResponseMetadata'<~Hash>:
        #       * 'RequestId'<~String> - Id of request
        #
        # ==== See Also
        # http://docs.amazonwebservices.com/AutoScaling/latest/APIReference/API_PutNotificationConfiguration.html
        #
        def put_notification_configuration(auto_scaling_group_name, notification_types, topic_arn)
          options = {}
          options.merge!(AWS.indexed_param('NotificationTypes.member.%d', [*notification_types]))
          request({
            'Action'               => 'PutNotificationConfiguration',
            'AutoScalingGroupName' => auto_scaling_group_name,
            'TopicARN'             => topic_arn,
            :parser                => Fog::Parsers::AWS::AutoScaling::PutNotificationConfiguration.new
          }.merge!(options))
        end

      end

      class Mock

        def put_notification_configuration(auto_scaling_group_name, notification_types, topic_arn)
          Fog::Mock.not_implemented
        end

      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rackspace-fog-1.4.2 lib/rackspace-fog/aws/requests/auto_scaling/put_notification_configuration.rb