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
Delete the IpAddressInstance.
-
#delete_with_metadata ⇒ Boolean
Delete the IpAddressInstanceMetadata.
-
#fetch ⇒ IpAddressInstance
Fetch the IpAddressInstance.
-
#fetch_with_metadata ⇒ IpAddressInstance
Fetch the IpAddressInstanceMetadata.
-
#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.
-
#update_with_metadata(ip_address: :unset, friendly_name: :unset, cidr_prefix_length: :unset) ⇒ IpAddressInstance
Update the IpAddressInstanceMetadata.
Constructor Details
#initialize(version, account_sid, ip_access_control_list_sid, sid) ⇒ IpAddressContext
Initialize the IpAddressContext
237 238 239 240 241 242 243 244 245 246 |
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb', line 237 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
Delete the IpAddressInstance
250 251 252 253 254 255 256 257 258 |
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb', line 250 def delete headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) @version.delete('DELETE', @uri, headers: headers) end |
#delete_with_metadata ⇒ Boolean
Delete the IpAddressInstanceMetadata
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 |
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb', line 263 def headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) response = @version.('DELETE', @uri, headers: headers) ipAddress_instance = IpAddressInstance.new( @version, response.body, account_sid: @solution[:account_sid], sid: @solution[:sid], ) IpAddressInstanceMetadata.new(@version, ipAddress_instance, response.headers, response.status_code) end |
#fetch ⇒ IpAddressInstance
Fetch the IpAddressInstance
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 |
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb', line 282 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) IpAddressInstance.new( @version, payload, account_sid: @solution[:account_sid], ip_access_control_list_sid: @solution[:ip_access_control_list_sid], sid: @solution[:sid], ) end |
#fetch_with_metadata ⇒ IpAddressInstance
Fetch the IpAddressInstanceMetadata
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 |
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb', line 303 def headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) response = @version.('GET', @uri, headers: headers) ip_address_instance = IpAddressInstance.new( @version, response.body, account_sid: @solution[:account_sid], ip_access_control_list_sid: @solution[:ip_access_control_list_sid], sid: @solution[:sid], ) IpAddressInstanceMetadata.new( @version, ip_address_instance, response.headers, response.status_code ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
411 412 413 414 |
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb', line 411 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Api.V2010.IpAddressContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
404 405 406 407 |
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb', line 404 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
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb', line 333 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, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.update('POST', @uri, data: data, headers: headers) IpAddressInstance.new( @version, payload, account_sid: @solution[:account_sid], ip_access_control_list_sid: @solution[:ip_access_control_list_sid], sid: @solution[:sid], ) end |
#update_with_metadata(ip_address: :unset, friendly_name: :unset, cidr_prefix_length: :unset) ⇒ IpAddressInstance
Update the IpAddressInstanceMetadata
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 |
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb', line 367 def ( ip_address: :unset, friendly_name: :unset, cidr_prefix_length: :unset ) data = Twilio::Values.of({ 'IpAddress' => ip_address, 'FriendlyName' => friendly_name, 'CidrPrefixLength' => cidr_prefix_length, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) response = @version.('POST', @uri, data: data, headers: headers) ip_address_instance = IpAddressInstance.new( @version, response.body, account_sid: @solution[:account_sid], ip_access_control_list_sid: @solution[:ip_access_control_list_sid], sid: @solution[:sid], ) IpAddressInstanceMetadata.new( @version, ip_address_instance, response.headers, response.status_code ) end |