Class: Twilio::REST::Voice::V1::ConnectionPolicyContext::ConnectionPolicyTargetInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Voice::V1::ConnectionPolicyContext::ConnectionPolicyTargetInstance
- Defined in:
- lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the Account that created the resource.
-
#connection_policy_sid ⇒ String
The SID of the Connection Policy that owns the Target.
-
#context ⇒ ConnectionPolicyTargetContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The RFC 2822 date and time in GMT when the resource was created.
-
#date_updated ⇒ Time
The RFC 2822 date and time in GMT when the resource was last updated.
-
#delete ⇒ Boolean
Delete the ConnectionPolicyTargetInstance.
-
#enabled ⇒ Boolean
Whether the target is enabled.
-
#fetch ⇒ ConnectionPolicyTargetInstance
Fetch the ConnectionPolicyTargetInstance.
-
#friendly_name ⇒ String
The string that you assigned to describe the resource.
-
#initialize(version, payload, connection_policy_sid: nil, sid: nil) ⇒ ConnectionPolicyTargetInstance
constructor
Initialize the ConnectionPolicyTargetInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#priority ⇒ String
The relative importance of the target.
-
#sid ⇒ String
The unique string that identifies the resource.
-
#target ⇒ String
The SIP address you want Twilio to route your calls to.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(friendly_name: :unset, target: :unset, priority: :unset, weight: :unset, enabled: :unset) ⇒ ConnectionPolicyTargetInstance
Update the ConnectionPolicyTargetInstance.
-
#url ⇒ String
The absolute URL of the resource.
-
#weight ⇒ String
The value that determines the relative load the Target should receive compared to others with the same priority.
Constructor Details
#initialize(version, payload, connection_policy_sid: nil, sid: nil) ⇒ ConnectionPolicyTargetInstance
Initialize the ConnectionPolicyTargetInstance
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 280 def initialize(version, payload, connection_policy_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'account_sid' => payload['account_sid'], 'connection_policy_sid' => payload['connection_policy_sid'], 'sid' => payload['sid'], 'friendly_name' => payload['friendly_name'], 'target' => payload['target'], 'priority' => payload['priority'].to_i, 'weight' => payload['weight'].to_i, 'enabled' => payload['enabled'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'url' => payload['url'], } # Context @instance_context = nil @params = {'connection_policy_sid' => connection_policy_sid, 'sid' => sid || @properties['sid'], } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the Account that created the resource.
320 321 322 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 320 def account_sid @properties['account_sid'] end |
#connection_policy_sid ⇒ String
Returns The SID of the Connection Policy that owns the Target.
326 327 328 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 326 def connection_policy_sid @properties['connection_policy_sid'] end |
#context ⇒ ConnectionPolicyTargetContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
307 308 309 310 311 312 313 314 315 316 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 307 def context unless @instance_context @instance_context = ConnectionPolicyTargetContext.new( @version, @params['connection_policy_sid'], @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The RFC 2822 date and time in GMT when the resource was created.
368 369 370 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 368 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The RFC 2822 date and time in GMT when the resource was last updated.
374 375 376 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 374 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the ConnectionPolicyTargetInstance
419 420 421 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 419 def delete context.delete end |
#enabled ⇒ Boolean
Returns Whether the target is enabled.
362 363 364 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 362 def enabled @properties['enabled'] end |
#fetch ⇒ ConnectionPolicyTargetInstance
Fetch the ConnectionPolicyTargetInstance
387 388 389 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 387 def fetch context.fetch end |
#friendly_name ⇒ String
Returns The string that you assigned to describe the resource.
338 339 340 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 338 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
432 433 434 435 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 432 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Voice.V1.ConnectionPolicyTargetInstance #{values}>" end |
#priority ⇒ String
Returns The relative importance of the target.
350 351 352 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 350 def priority @properties['priority'] end |
#sid ⇒ String
Returns The unique string that identifies the resource.
332 333 334 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 332 def sid @properties['sid'] end |
#target ⇒ String
Returns The SIP address you want Twilio to route your calls to.
344 345 346 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 344 def target @properties['target'] end |
#to_s ⇒ Object
Provide a user friendly representation
425 426 427 428 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 425 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Voice.V1.ConnectionPolicyTargetInstance #{values}>" end |
#update(friendly_name: :unset, target: :unset, priority: :unset, weight: :unset, enabled: :unset) ⇒ ConnectionPolicyTargetInstance
Update the ConnectionPolicyTargetInstance
406 407 408 409 410 411 412 413 414 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 406 def update(friendly_name: :unset, target: :unset, priority: :unset, weight: :unset, enabled: :unset) context.update( friendly_name: friendly_name, target: target, priority: priority, weight: weight, enabled: enabled, ) end |
#url ⇒ String
Returns The absolute URL of the resource.
380 381 382 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 380 def url @properties['url'] end |
#weight ⇒ String
Returns The value that determines the relative load the Target should receive compared to others with the same priority.
356 357 358 |
# File 'lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb', line 356 def weight @properties['weight'] end |