Class: Twilio::REST::Trunking::V1::TrunkContext::IpAccessControlListContext

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

Instance Method Summary collapse

Constructor Details

#initialize(version, trunk_sid, sid) ⇒ IpAccessControlListContext

Initialize the IpAccessControlListContext

Parameters:

  • version (Version)

    Version that contains the resource

  • trunk_sid (String)

    The SID of the Trunk from which to fetch the IP Access Control List.

  • sid (String)

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


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

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

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

Instance Method Details

#deleteBoolean

Delete the IpAccessControlListInstance

Returns:

  • (Boolean)

    true if delete succeeds, false otherwise


192
193
194
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb', line 192

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

#fetchIpAccessControlListInstance

Fetch the IpAccessControlListInstance

Returns:


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

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

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

#inspectObject

Provide a detailed, user friendly representation


205
206
207
208
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb', line 205

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

#to_sObject

Provide a user friendly representation


198
199
200
201
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb', line 198

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