Class: Twilio::REST::Api::V2010::AccountContext::SipList::CredentialListInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, account_sid: nil, sid: nil) ⇒ CredentialListInstance

Initialize the CredentialListInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String) (defaults to: nil)

    A 34 character string that uniquely identifies this resource.

  • sid (String) (defaults to: nil)

    The credential list Sid that uniquely identifies this resource


265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb', line 265

def initialize(version, payload, account_sid: nil, sid: nil)
  super(version)

  # Marshaled Properties
  @properties = {
      'account_sid' => payload['account_sid'],
      'date_created' => Twilio.deserialize_rfc2822(payload['date_created']),
      'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']),
      'friendly_name' => payload['friendly_name'],
      'sid' => payload['sid'],
      'subresource_uris' => payload['subresource_uris'],
      'uri' => payload['uri'],
  }

  # Context
  @instance_context = nil
  @params = {'account_sid' => , 'sid' => sid || @properties['sid'], }
end

Instance Method Details

#account_sidString

Returns The unique sid that identifies this account.

Returns:

  • (String)

    The unique sid that identifies this account


297
298
299
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb', line 297

def 
  @properties['account_sid']
end

#contextCredentialListContext

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

Returns:


288
289
290
291
292
293
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb', line 288

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

#credentialscredentials

Access the credentials

Returns:


363
364
365
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb', line 363

def credentials
  context.credentials
end

#date_createdTime

Returns The date this resource was created.

Returns:

  • (Time)

    The date this resource was created


303
304
305
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb', line 303

def date_created
  @properties['date_created']
end

#date_updatedTime

Returns The date this resource was last updated.

Returns:

  • (Time)

    The date this resource was last updated


309
310
311
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb', line 309

def date_updated
  @properties['date_updated']
end

#deleteBoolean

Delete the CredentialListInstance

Returns:

  • (Boolean)

    true if delete succeeds, false otherwise


356
357
358
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb', line 356

def delete
  context.delete
end

#fetchCredentialListInstance

Fetch the CredentialListInstance

Returns:


340
341
342
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb', line 340

def fetch
  context.fetch
end

#friendly_nameString

Returns Human readable descriptive text.

Returns:

  • (String)

    Human readable descriptive text


315
316
317
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb', line 315

def friendly_name
  @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation


376
377
378
379
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb', line 376

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

#sidString

Returns A string that uniquely identifies this credential.

Returns:

  • (String)

    A string that uniquely identifies this credential


321
322
323
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb', line 321

def sid
  @properties['sid']
end

#subresource_urisString

Returns The list of credentials associated with this credential list.

Returns:

  • (String)

    The list of credentials associated with this credential list.


327
328
329
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb', line 327

def subresource_uris
  @properties['subresource_uris']
end

#to_sObject

Provide a user friendly representation


369
370
371
372
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb', line 369

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

#update(friendly_name: nil) ⇒ CredentialListInstance

Update the CredentialListInstance

Parameters:

  • friendly_name (String) (defaults to: nil)

    A human readable descriptive text for a CredentialList, up to 64 characters long.

Returns:


349
350
351
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb', line 349

def update(friendly_name: nil)
  context.update(friendly_name: friendly_name, )
end

#uriString

Returns The URI for this resource.

Returns:

  • (String)

    The URI for this resource


333
334
335
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb', line 333

def uri
  @properties['uri']
end