Class: Twilio::REST::Events::V1::SinkInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Events::V1::SinkInstance
- Defined in:
- lib/twilio-ruby/rest/events/v1/sink.rb
Overview
PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
Instance Method Summary collapse
-
#context ⇒ SinkContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date this Sink was created.
-
#date_updated ⇒ Time
The date this Sink was updated.
-
#delete ⇒ Boolean
Delete the SinkInstance.
-
#description ⇒ String
Sink Description.
-
#fetch ⇒ SinkInstance
Fetch the SinkInstance.
-
#initialize(version, payload, sid: nil) ⇒ SinkInstance
constructor
Initialize the SinkInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#links ⇒ String
Nested resource URLs.
-
#sid ⇒ String
A string that uniquely identifies this Sink.
-
#sink_configuration ⇒ Hash
JSON Sink configuration.
-
#sink_test ⇒ sink_test
Access the sink_test.
-
#sink_type ⇒ sink.SinkType
Sink type.
-
#sink_validate ⇒ sink_validate
Access the sink_validate.
-
#status ⇒ sink.Status
The Status of this Sink.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The URL of this resource.
Constructor Details
#initialize(version, payload, sid: nil) ⇒ SinkInstance
Initialize the SinkInstance
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 251 def initialize(version, payload, sid: nil) super(version) # Marshaled Properties @properties = { 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'description' => payload['description'], 'sid' => payload['sid'], 'sink_configuration' => payload['sink_configuration'], 'sink_type' => payload['sink_type'], 'status' => payload['status'], 'url' => payload['url'], 'links' => payload['links'], } # Context @instance_context = nil @params = {'sid' => sid || @properties['sid'], } end |
Instance Method Details
#context ⇒ SinkContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
276 277 278 279 280 281 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 276 def context unless @instance_context @instance_context = SinkContext.new(@version, @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The date this Sink was created.
285 286 287 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 285 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date this Sink was updated.
291 292 293 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 291 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the SinkInstance
347 348 349 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 347 def delete context.delete end |
#description ⇒ String
Returns Sink Description.
297 298 299 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 297 def description @properties['description'] end |
#fetch ⇒ SinkInstance
Fetch the SinkInstance
340 341 342 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 340 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
374 375 376 377 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 374 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Events.V1.SinkInstance #{values}>" end |
#links ⇒ String
Returns Nested resource URLs.
333 334 335 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 333 def links @properties['links'] end |
#sid ⇒ String
Returns A string that uniquely identifies this Sink.
303 304 305 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 303 def sid @properties['sid'] end |
#sink_configuration ⇒ Hash
Returns JSON Sink configuration.
309 310 311 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 309 def sink_configuration @properties['sink_configuration'] end |
#sink_test ⇒ sink_test
Access the sink_test
354 355 356 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 354 def sink_test context.sink_test end |
#sink_type ⇒ sink.SinkType
Returns Sink type.
315 316 317 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 315 def sink_type @properties['sink_type'] end |
#sink_validate ⇒ sink_validate
Access the sink_validate
361 362 363 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 361 def sink_validate context.sink_validate end |
#status ⇒ sink.Status
Returns The Status of this Sink.
321 322 323 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 321 def status @properties['status'] end |
#to_s ⇒ Object
Provide a user friendly representation
367 368 369 370 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 367 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Events.V1.SinkInstance #{values}>" end |
#url ⇒ String
Returns The URL of this resource.
327 328 329 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 327 def url @properties['url'] end |