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
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 that this Sink was created, given in ISO 8601 format.
-
#date_updated ⇒ Time
The date that this Sink was updated, given in ISO 8601 format.
-
#delete ⇒ Boolean
Delete the SinkInstance.
-
#description ⇒ String
A human readable description for the Sink.
-
#fetch ⇒ SinkInstance
Fetch the SinkInstance.
-
#initialize(version, payload, sid: nil) ⇒ SinkInstance
constructor
Initialize the SinkInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#links ⇒ Hash
Contains a dictionary of URL links to nested resources of this Sink.
-
#sid ⇒ String
A 34 character string that uniquely identifies this Sink.
-
#sink_configuration ⇒ Hash
The information required for Twilio to connect to the provided Sink encoded as JSON.
-
#sink_test ⇒ sink_test
Access the sink_test.
- #sink_type ⇒ SinkType
-
#sink_validate ⇒ sink_validate
Access the sink_validate.
- #status ⇒ Status
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(description: nil) ⇒ SinkInstance
Update the SinkInstance.
-
#url ⇒ String
The URL of this resource.
Constructor Details
#initialize(version, payload, sid: nil) ⇒ SinkInstance
Initialize the SinkInstance
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
#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
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_created ⇒ Time
Returns 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_updated ⇒ Time
Returns 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 |
#delete ⇒ Boolean
Delete the SinkInstance
412 413 414 415 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 412 def delete context.delete end |
#description ⇒ String
Returns 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 |
#fetch ⇒ SinkInstance
Fetch the SinkInstance
420 421 422 423 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 420 def fetch context.fetch end |
#inspect ⇒ Object
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 |
#links ⇒ Hash
Returns 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 |
#sid ⇒ String
Returns 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_configuration ⇒ Hash
Returns 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_test ⇒ sink_test
Access the sink_test
441 442 443 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 441 def sink_test context.sink_test end |
#sink_type ⇒ SinkType
387 388 389 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 387 def sink_type @properties['sink_type'] end |
#sink_validate ⇒ sink_validate
Access the sink_validate
448 449 450 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 448 def sink_validate context.sink_validate end |
#status ⇒ Status
393 394 395 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 393 def status @properties['status'] end |
#to_s ⇒ Object
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
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 |
#url ⇒ String
Returns The URL of this resource.
399 400 401 |
# File 'lib/twilio-ruby/rest/events/v1/sink.rb', line 399 def url @properties['url'] end |