Class: Twilio::REST::Events::V1::SinkContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Events::V1::SinkContext
- Defined in:
- lib/twilio-ruby/rest/events/v1/sink.rb,
lib/twilio-ruby/rest/events/v1/sink/sink_test.rb,
lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb
Overview
PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
Defined Under Namespace
Classes: SinkTestInstance, SinkTestList, SinkTestPage, SinkValidateInstance, SinkValidateList, SinkValidatePage
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the SinkInstance.
-
#fetch ⇒ SinkInstance
Fetch the SinkInstance.
-
#initialize(version, sid) ⇒ SinkContext
constructor
Initialize the SinkContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#sink_test ⇒ SinkTestList, SinkTestContext
Access the sink_test.
-
#sink_validate ⇒ SinkValidateList, SinkValidateContext
Access the sink_validate.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(description: nil) ⇒ SinkInstance
Update the SinkInstance.
Constructor Details
#initialize(version, sid) ⇒ SinkContext
Initialize the SinkContext
189 190 191 192 193 194 195 196 197 198 199 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 189 def initialize(version, sid) super(version) # Path Solution @solution = {sid: sid, } @uri = "/Sinks/#{@solution[:sid]}" # Dependents @sink_test = nil @sink_validate = nil end |
Instance Method Details
#delete ⇒ Boolean
Delete the SinkInstance
213 214 215 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 213 def delete @version.delete('DELETE', @uri) end |
#fetch ⇒ SinkInstance
Fetch the SinkInstance
204 205 206 207 208 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 204 def fetch payload = @version.fetch('GET', @uri) SinkInstance.new(@version, payload, sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
263 264 265 266 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 263 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Events.V1.SinkContext #{context}>" end |
#sink_test ⇒ SinkTestList, SinkTestContext
Access the sink_test
234 235 236 237 238 239 240 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 234 def sink_test unless @sink_test @sink_test = SinkTestList.new(@version, sid: @solution[:sid], ) end @sink_test end |
#sink_validate ⇒ SinkValidateList, SinkValidateContext
Access the sink_validate
246 247 248 249 250 251 252 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 246 def sink_validate unless @sink_validate @sink_validate = SinkValidateList.new(@version, sid: @solution[:sid], ) end @sink_validate end |
#to_s ⇒ Object
Provide a user friendly representation
256 257 258 259 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 256 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Events.V1.SinkContext #{context}>" end |
#update(description: nil) ⇒ SinkInstance
Update the SinkInstance
222 223 224 225 226 227 228 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 222 def update(description: nil) data = Twilio::Values.of({'Description' => description, }) payload = @version.update('POST', @uri, data: data) SinkInstance.new(@version, payload, sid: @solution[:sid], ) end |