Class: ESP::Tag
- Defined in:
- lib/esp/resources/tag.rb
Constant Summary
Constants inherited from Resource
Class Method Summary collapse
-
.find(*arguments) ⇒ Object
Find a Tag by id.
-
.for_alert(alert_id = nil) ⇒ Object
Returns a paginated collection of tags for the given alert_id Convenience method to use instead of ::find since an alert_id is required to return tags.
-
.where ⇒ Object
Not Implemented.
Instance Method Summary collapse
-
#destroy ⇒ Object
Not Implemented.
-
#save ⇒ Object
Not Implemented.
Methods inherited from Resource
arrange_options, filters, make_pageable, #serializable_hash
Class Method Details
.find(*arguments) ⇒ Object
Find a Tag by id
Parameter
id | Required | The ID of the tag to retrieve
:call-seq:
find(id)
41 42 43 44 45 46 47 48 |
# File 'lib/esp/resources/tag.rb', line 41 def self.find(*arguments) scope = arguments.slice!(0) = (arguments.slice!(0) || {}).with_indifferent_access return super(scope, ) if scope.is_a?(Numeric) || [:from].present? params = .fetch(:params, {}).with_indifferent_access alert_id = params.delete(:alert_id) for_alert(alert_id) end |
.for_alert(alert_id = nil) ⇒ Object
27 28 29 30 31 |
# File 'lib/esp/resources/tag.rb', line 27 def self.for_alert(alert_id = nil) fail ArgumentError, "You must supply an alert id." unless alert_id.present? from = "#{prefix}alerts/#{alert_id}/tags.json" find(:all, from: from) end |
.where ⇒ Object
Not Implemented. You cannot search for a Tag.
14 15 16 |
# File 'lib/esp/resources/tag.rb', line 14 def self.where(*) fail ESP::NotImplementedError end |
Instance Method Details
#destroy ⇒ Object
Not Implemented. You cannot destroy a Tag.
9 10 11 |
# File 'lib/esp/resources/tag.rb', line 9 def destroy fail ESP::NotImplementedError end |
#save ⇒ Object
Not Implemented. You cannot create or update a Tag.
4 5 6 |
# File 'lib/esp/resources/tag.rb', line 4 def save fail ESP::NotImplementedError end |