Class: Twilio::REST::Trunking::V1::TrunkContext::IpAccessControlListContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Trunking::V1::TrunkContext::IpAccessControlListContext
- Defined in:
- lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb
Instance Method Summary collapse
-
#delete ⇒ Boolean
Deletes the IpAccessControlListInstance.
-
#fetch ⇒ IpAccessControlListInstance
Fetch a IpAccessControlListInstance.
-
#initialize(version, trunk_sid, sid) ⇒ IpAccessControlListContext
constructor
Initialize the IpAccessControlListContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, trunk_sid, sid) ⇒ IpAccessControlListContext
Initialize the IpAccessControlListContext
174 175 176 177 178 179 180 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb', line 174 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
#delete ⇒ Boolean
Deletes the IpAccessControlListInstance
205 206 207 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb', line 205 def delete @version.delete('delete', @uri) end |
#fetch ⇒ IpAccessControlListInstance
Fetch a IpAccessControlListInstance
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb', line 185 def fetch params = Twilio::Values.of({}) payload = @version.fetch( 'GET', @uri, params, ) IpAccessControlListInstance.new( @version, payload, trunk_sid: @solution[:trunk_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
218 219 220 221 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb', line 218 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trunking.V1.IpAccessControlListContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
211 212 213 214 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb', line 211 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trunking.V1.IpAccessControlListContext #{context}>" end |