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

Inherits:
InstanceResource show all
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

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

  • sid (String) (defaults to: nil)

    A 34 character string that uniquely identifies this Sink.



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

#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:



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_createdTime

Returns The date this Sink was created.

Returns:

  • (Time)

    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_updatedTime

Returns The date this Sink was updated.

Returns:

  • (Time)

    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

#deleteBoolean

Delete the SinkInstance

Returns:

  • (Boolean)

    true if delete succeeds, false otherwise



347
348
349
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 347

def delete
  context.delete
end

#descriptionString

Returns Sink Description.

Returns:

  • (String)

    Sink Description



297
298
299
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 297

def description
  @properties['description']
end

#fetchSinkInstance

Fetch the SinkInstance

Returns:



340
341
342
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 340

def fetch
  context.fetch
end

#inspectObject

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

Returns Nested resource URLs.

Returns:

  • (String)

    Nested resource URLs.



333
334
335
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 333

def links
  @properties['links']
end

#sidString

Returns A string that uniquely identifies this Sink.

Returns:

  • (String)

    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_configurationHash

Returns JSON Sink configuration.

Returns:

  • (Hash)

    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_testsink_test

Access the sink_test

Returns:



354
355
356
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 354

def sink_test
  context.sink_test
end

#sink_typesink.SinkType

Returns Sink type.

Returns:

  • (sink.SinkType)

    Sink type.



315
316
317
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 315

def sink_type
  @properties['sink_type']
end

#sink_validatesink_validate

Access the sink_validate

Returns:



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

def sink_validate
  context.sink_validate
end

#statussink.Status

Returns The Status of this Sink.

Returns:

  • (sink.Status)

    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_sObject

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

#urlString

Returns The URL of this resource.

Returns:

  • (String)

    The URL of this resource.



327
328
329
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 327

def url
  @properties['url']
end