Class: Twilio::REST::Events::V1::SinkInstance

Inherits:
InstanceResource show all
Defined in:
lib/twilio-ruby/rest/events/v1/sink.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, sid: nil) ⇒ SinkInstance

Initialize the SinkInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String)

    The SID of the Account that created this Sink resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 323

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

#contextSinkContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



348
349
350
351
352
353
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 348

def context
    unless @instance_context
        @instance_context = SinkContext.new(@version , @params['sid'])
    end
    @instance_context
end

#date_createdTime

Returns The date that this Sink was created, given in ISO 8601 format.

Returns:

  • (Time)

    The date that this Sink was created, given in ISO 8601 format.



357
358
359
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 357

def date_created
    @properties['date_created']
end

#date_updatedTime

Returns The date that this Sink was updated, given in ISO 8601 format.

Returns:

  • (Time)

    The date that this Sink was updated, given in ISO 8601 format.



363
364
365
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 363

def date_updated
    @properties['date_updated']
end

#deleteBoolean

Delete the SinkInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



412
413
414
415
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 412

def delete

    context.delete
end

#descriptionString

Returns A human readable description for the Sink.

Returns:

  • (String)

    A human readable description for the Sink



369
370
371
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 369

def description
    @properties['description']
end

#fetchSinkInstance

Fetch the SinkInstance

Returns:



420
421
422
423
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 420

def fetch

    context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



461
462
463
464
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 461

def inspect
    values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Events.V1.SinkInstance #{values}>"
end

Returns Contains a dictionary of URL links to nested resources of this Sink.

Returns:

  • (Hash)

    Contains a dictionary of URL links to nested resources of this Sink.



405
406
407
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 405

def links
    @properties['links']
end

#sidString

Returns A 34 character string that uniquely identifies this Sink.

Returns:

  • (String)

    A 34 character string that uniquely identifies this Sink.



375
376
377
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 375

def sid
    @properties['sid']
end

#sink_configurationHash

Returns The information required for Twilio to connect to the provided Sink encoded as JSON.

Returns:

  • (Hash)

    The information required for Twilio to connect to the provided Sink encoded as JSON.



381
382
383
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 381

def sink_configuration
    @properties['sink_configuration']
end

#sink_testsink_test

Access the sink_test

Returns:



441
442
443
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 441

def sink_test
    context.sink_test
end

#sink_typeSinkType

Returns:

  • (SinkType)


387
388
389
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 387

def sink_type
    @properties['sink_type']
end

#sink_validatesink_validate

Access the sink_validate

Returns:



448
449
450
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 448

def sink_validate
    context.sink_validate
end

#statusStatus

Returns:

  • (Status)


393
394
395
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 393

def status
    @properties['status']
end

#to_sObject

Provide a user friendly representation



454
455
456
457
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 454

def to_s
    values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Events.V1.SinkInstance #{values}>"
end

#update(description: nil) ⇒ SinkInstance

Update the SinkInstance

Parameters:

  • description (String) (defaults to: nil)

    A human readable description for the Sink **This value should not contain PII.**

Returns:



429
430
431
432
433
434
435
436
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 429

def update(
    description: nil
)

    context.update(
        description: description, 
    )
end

#urlString

Returns The URL of this resource.

Returns:

  • (String)

    The URL of this resource.



399
400
401
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 399

def url
    @properties['url']
end