lib/twilio-ruby/rest/monitor.rb in twilio-ruby-5.77.0 vs lib/twilio-ruby/rest/monitor.rb in twilio-ruby-6.0.0.pre.rc.1
- old
+ new
@@ -1,56 +1,25 @@
-##
-# This code was generated by
-# \ / _ _ _| _ _
-# | (_)\/(_)(_|\/| |(/_ v1.0.0
-# / /
-#
-# frozen_string_literal: true
-
module Twilio
module REST
- class Monitor < Domain
+ class Monitor < MonitorBase
##
- # Initialize the Monitor Domain
- def initialize(twilio)
- super
-
- @base_url = 'https://monitor.twilio.com'
- @host = 'monitor.twilio.com'
- @port = 443
-
- # Versions
- @v1 = nil
- end
-
- ##
- # Version v1 of monitor
- def v1
- @v1 ||= V1.new self
- end
-
- ##
# @param [String] sid The unique string that we created to identify the Alert
# resource.
# @return [Twilio::REST::Monitor::V1::AlertInstance] if sid was passed.
# @return [Twilio::REST::Monitor::V1::AlertList]
def alerts(sid=:unset)
+ warn "alerts is deprecated. Use v1.alerts instead."
self.v1.alerts(sid)
end
##
# @param [String] sid The unique string that we created to identify the Event
# resource.
# @return [Twilio::REST::Monitor::V1::EventInstance] if sid was passed.
# @return [Twilio::REST::Monitor::V1::EventList]
def events(sid=:unset)
+ warn "events is deprecated. Use v1.events instead."
self.v1.events(sid)
- end
-
- ##
- # Provide a user friendly representation
- def to_s
- '#<Twilio::REST::Monitor>'
end
end
end
end
\ No newline at end of file