Class: Twilio::REST::Voice::V1::SourceIpMappingInstance

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

Instance Method Summary collapse

Constructor Details

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

Initialize the SourceIpMappingInstance

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 SourceIpMapping resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
# File 'lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb', line 258

def initialize(version, payload , sid: nil)
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'sid' => payload['sid'],
        'ip_record_sid' => payload['ip_record_sid'],
        'sip_domain_sid' => payload['sip_domain_sid'],
        '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 = { 'sid' => sid  || @properties['sid']  , }
end

Instance Method Details

#contextSourceIpMappingContext

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

Returns:



280
281
282
283
284
285
# File 'lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb', line 280

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

#date_createdTime

Returns The date and time in GMT that the resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.

Returns:



307
308
309
# File 'lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb', line 307

def date_created
    @properties['date_created']
end

#date_updatedTime

Returns The date and time in GMT that the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.

Returns:



313
314
315
# File 'lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb', line 313

def date_updated
    @properties['date_updated']
end

#deleteBoolean

Delete the SourceIpMappingInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



326
327
328
329
# File 'lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb', line 326

def delete

    context.delete
end

#fetchSourceIpMappingInstance

Fetch the SourceIpMappingInstance

Returns:



334
335
336
337
# File 'lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb', line 334

def fetch

    context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



361
362
363
364
# File 'lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb', line 361

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

#ip_record_sidString

Returns The Twilio-provided string that uniquely identifies the IP Record resource to map from.

Returns:

  • (String)

    The Twilio-provided string that uniquely identifies the IP Record resource to map from.



295
296
297
# File 'lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb', line 295

def ip_record_sid
    @properties['ip_record_sid']
end

#sidString

Returns The unique string that we created to identify the IP Record resource.

Returns:

  • (String)

    The unique string that we created to identify the IP Record resource.



289
290
291
# File 'lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb', line 289

def sid
    @properties['sid']
end

#sip_domain_sidString

Returns The SID of the SIP Domain that the IP Record is mapped to.

Returns:

  • (String)

    The SID of the SIP Domain that the IP Record is mapped to.



301
302
303
# File 'lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb', line 301

def sip_domain_sid
    @properties['sip_domain_sid']
end

#to_sObject

Provide a user friendly representation



354
355
356
357
# File 'lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb', line 354

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

#update(sip_domain_sid: nil) ⇒ SourceIpMappingInstance

Update the SourceIpMappingInstance

Parameters:

  • sip_domain_sid (String) (defaults to: nil)

    The SID of the SIP Domain that the IP Record should be mapped to.

Returns:



343
344
345
346
347
348
349
350
# File 'lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb', line 343

def update(
    sip_domain_sid: nil
)

    context.update(
        sip_domain_sid: sip_domain_sid, 
    )
end

#urlString

Returns The absolute URL of the resource.

Returns:

  • (String)

    The absolute URL of the resource.



319
320
321
# File 'lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb', line 319

def url
    @properties['url']
end