Class: Twilio::REST::Trunking::V1::TrunkContext::CredentialListContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, trunk_sid, sid) ⇒ CredentialListContext

Initialize the CredentialListContext

Parameters:

  • version (Version)

    Version that contains the resource

  • trunk_sid (String)

    The trunk_sid

  • sid (String)

    The sid



168
169
170
171
172
173
174
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb', line 168

def initialize(version, trunk_sid, sid)
  super(version)

  # Path Solution
  @solution = {trunk_sid: trunk_sid, sid: sid, }
  @uri = "/Trunks/#{@solution[:trunk_sid]}/CredentialLists/#{@solution[:sid]}"
end

Instance Method Details

#deleteBoolean

Deletes the CredentialListInstance

Returns:

  • (Boolean)

    true if delete succeeds, true otherwise



194
195
196
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb', line 194

def delete
  @version.delete('delete', @uri)
end

#fetchCredentialListInstance

Fetch a CredentialListInstance

Returns:



179
180
181
182
183
184
185
186
187
188
189
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb', line 179

def fetch
  params = Twilio::Values.of({})

  payload = @version.fetch(
      'GET',
      @uri,
      params,
  )

  CredentialListInstance.new(@version, payload, trunk_sid: @solution[:trunk_sid], sid: @solution[:sid], )
end

#to_sObject

Provide a user friendly representation



200
201
202
203
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb', line 200

def to_s
  context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
  "#<Twilio.Trunking.V1.CredentialListContext #{context}>"
end