Class: ESP::Service

Inherits:
Resource
  • Object
show all
Defined in:
lib/esp/resources/service.rb

Constant Summary

Constants inherited from Resource

Resource::PREDICATES

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Resource

arrange_options, filters, find, make_pageable, #serializable_hash

Class Method Details

.whereObject

Not Implemented. You cannot search for a Tag.



8
9
10
# File 'lib/esp/resources/service.rb', line 8

def self.where(*)
  fail ESP::NotImplementedError
end

Instance Method Details

#destroyObject

Not Implemented. You cannot destroy a Service.



18
19
20
# File 'lib/esp/resources/service.rb', line 18

def destroy
  fail ESP::NotImplementedError
end

#saveObject

Not Implemented. You cannot create or update a Service.



13
14
15
# File 'lib/esp/resources/service.rb', line 13

def save
  fail ESP::NotImplementedError
end

#signaturesObject

The collection of signatures associated with this service.



5
# File 'lib/esp/resources/service.rb', line 5

has_many :signatures, class_name: 'ESP::Signature'