Sha256: d5c9f2e7c8bfa3019777926df3a1525ce3999843b43ce0047f42284b71459577
Contents?: true
Size: 1.42 KB
Versions: 9
Compression:
Stored size: 1.42 KB
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class Monitor class V1 < Version ## # Initialize the V1 version of Monitor def initialize(domain) super @version = 'v1' @alerts = nil @events = nil end ## # @param [String] sid The sid # @return [Twilio::REST::Monitor::V1::AlertContext] if sid was passed. # @return [Twilio::REST::Monitor::V1::AlertList] def alerts(sid=:unset) if sid.nil? raise ArgumentError, 'sid cannot be nil' elsif sid == :unset @alerts ||= AlertList.new self else AlertContext.new(self, sid) end end ## # @param [String] sid The sid # @return [Twilio::REST::Monitor::V1::EventContext] if sid was passed. # @return [Twilio::REST::Monitor::V1::EventList] def events(sid=:unset) if sid.nil? raise ArgumentError, 'sid cannot be nil' elsif sid == :unset @events ||= EventList.new self else EventContext.new(self, sid) end end ## # Provide a user friendly representation def to_s '<Twilio::REST::Monitor::V1>' end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems