Class: Aws::CloudWatch::Alarm::Collection

Inherits:
Resources::Collection
  • Object
show all
Defined in:
lib/aws-sdk-cloudwatch/alarm.rb

Batch Actions collapse

Instance Method Details

#batch_delete!(options = {}) ⇒ void

This method returns an undefined value.

Parameters:

  • options ({}) (defaults to: {})


514
515
516
517
518
519
520
521
522
523
524
# File 'lib/aws-sdk-cloudwatch/alarm.rb', line 514

def batch_delete!(options = {})
  batch_enum.each do |batch|
    params = Aws::Util.copy_hash(options)
    params[:alarm_names] ||= []
    batch.each do |item|
      params[:alarm_names] << item.name
    end
    batch[0].client.delete_alarms(params)
  end
  nil
end

#batch_disable_actions(options = {}) ⇒ void

This method returns an undefined value.

Parameters:

  • options ({}) (defaults to: {})


528
529
530
531
532
533
534
535
536
537
538
# File 'lib/aws-sdk-cloudwatch/alarm.rb', line 528

def batch_disable_actions(options = {})
  batch_enum.each do |batch|
    params = Aws::Util.copy_hash(options)
    params[:alarm_names] ||= []
    batch.each do |item|
      params[:alarm_names] << item.name
    end
    batch[0].client.disable_alarm_actions(params)
  end
  nil
end

#batch_enable_actions(options = {}) ⇒ void

This method returns an undefined value.

Parameters:

  • options ({}) (defaults to: {})


542
543
544
545
546
547
548
549
550
551
552
# File 'lib/aws-sdk-cloudwatch/alarm.rb', line 542

def batch_enable_actions(options = {})
  batch_enum.each do |batch|
    params = Aws::Util.copy_hash(options)
    params[:alarm_names] ||= []
    batch.each do |item|
      params[:alarm_names] << item.name
    end
    batch[0].client.enable_alarm_actions(params)
  end
  nil
end