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
Delete the IpAccessControlListInstance.
-
#fetch ⇒ IpAccessControlListInstance
Fetch the 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
157 158 159 160 161 162 163 164 165 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb', line 157 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
Delete the IpAccessControlListInstance
169 170 171 172 173 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb', line 169 def delete @version.delete('DELETE', @uri) end |
#fetch ⇒ IpAccessControlListInstance
Fetch the IpAccessControlListInstance
178 179 180 181 182 183 184 185 186 187 188 |
# 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 |
#inspect ⇒ Object
Provide a detailed, user friendly representation
200 201 202 203 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb', line 200 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trunking.V1.IpAccessControlListContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
193 194 195 196 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb', line 193 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trunking.V1.IpAccessControlListContext #{context}>" end |