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 SID of the Trunk from which to fetch the credential list.

  • sid (String)

    The unique string that we created to identify the CredentialList resource to fetch.



158
159
160
161
162
163
164
165
166
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb', line 158

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

Delete the CredentialListInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



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

def delete

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    @version.delete('DELETE', @uri, headers: headers)
end

#fetchCredentialListInstance

Fetch the CredentialListInstance

Returns:



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

def fetch

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    payload = @version.fetch('GET', @uri, headers: headers)
    CredentialListInstance.new(
        @version,
        payload,
        trunk_sid: @solution[:trunk_sid],
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



203
204
205
206
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb', line 203

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

#to_sObject

Provide a user friendly representation



196
197
198
199
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb', line 196

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