Class: Twilio::REST::Api::V2010::AccountContext::SipList::IpAccessControlListContext::IpAddressContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Api::V2010::AccountContext::SipList::IpAccessControlListContext::IpAddressContext
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb
Instance Method Summary collapse
-
#delete ⇒ Boolean
Deletes the IpAddressInstance.
-
#fetch ⇒ IpAddressInstance
Fetch a IpAddressInstance.
-
#initialize(version, account_sid, ip_access_control_list_sid, sid) ⇒ IpAddressContext
constructor
Initialize the IpAddressContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(ip_address: :unset, friendly_name: :unset, cidr_prefix_length: :unset) ⇒ IpAddressInstance
Update the IpAddressInstance.
Constructor Details
#initialize(version, account_sid, ip_access_control_list_sid, sid) ⇒ IpAddressContext
Initialize the IpAddressContext
201 202 203 204 205 206 207 208 209 210 211 |
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb', line 201 def initialize(version, account_sid, ip_access_control_list_sid, sid) super(version) # Path Solution @solution = { account_sid: account_sid, ip_access_control_list_sid: ip_access_control_list_sid, sid: sid, } @uri = "/Accounts/#{@solution[:account_sid]}/SIP/IpAccessControlLists/#{@solution[:ip_access_control_list_sid]}/IpAddresses/#{@solution[:sid]}.json" end |
Instance Method Details
#delete ⇒ Boolean
Deletes the IpAddressInstance
270 271 272 |
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb', line 270 def delete @version.delete('delete', @uri) end |
#fetch ⇒ IpAddressInstance
Fetch a IpAddressInstance
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb', line 216 def fetch params = Twilio::Values.of({}) payload = @version.fetch( 'GET', @uri, params, ) IpAddressInstance.new( @version, payload, account_sid: @solution[:account_sid], ip_access_control_list_sid: @solution[:ip_access_control_list_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
283 284 285 286 |
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb', line 283 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Api.V2010.IpAddressContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
276 277 278 279 |
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb', line 276 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Api.V2010.IpAddressContext #{context}>" end |
#update(ip_address: :unset, friendly_name: :unset, cidr_prefix_length: :unset) ⇒ IpAddressInstance
Update the IpAddressInstance
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 |
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb', line 245 def update(ip_address: :unset, friendly_name: :unset, cidr_prefix_length: :unset) data = Twilio::Values.of({ 'IpAddress' => ip_address, 'FriendlyName' => friendly_name, 'CidrPrefixLength' => cidr_prefix_length, }) payload = @version.update( 'POST', @uri, data: data, ) IpAddressInstance.new( @version, payload, account_sid: @solution[:account_sid], ip_access_control_list_sid: @solution[:ip_access_control_list_sid], sid: @solution[:sid], ) end |