twilio-ruby 5.0.0.rc26 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (328) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +21 -0
  3. data/.rubocop_todo.yml +187 -0
  4. data/.travis.yml +13 -0
  5. data/CHANGES.md +4 -0
  6. data/Gemfile +2 -2
  7. data/Makefile +8 -1
  8. data/Rakefile +3 -7
  9. data/examples/examples.rb +12 -10
  10. data/examples/{print-call-log.rb → print_call_log.rb} +4 -4
  11. data/lib/rack/twilio_webhook_authentication.rb +2 -3
  12. data/lib/twilio-ruby/framework/domain.rb +2 -6
  13. data/lib/twilio-ruby/framework/error.rb +0 -1
  14. data/lib/twilio-ruby/framework/helper.rb +1 -1
  15. data/lib/twilio-ruby/framework/page.rb +23 -25
  16. data/lib/twilio-ruby/framework/resource.rb +2 -2
  17. data/lib/twilio-ruby/framework/serialize.rb +5 -12
  18. data/lib/twilio-ruby/framework/twilio_response.rb +1 -1
  19. data/lib/twilio-ruby/framework/values.rb +2 -2
  20. data/lib/twilio-ruby/framework/version.rb +19 -37
  21. data/lib/twilio-ruby/http/http_client.rb +5 -6
  22. data/lib/twilio-ruby/jwt/access_token.rb +27 -41
  23. data/lib/twilio-ruby/jwt/client_capability.rb +11 -16
  24. data/lib/twilio-ruby/jwt/jwt.rb +7 -13
  25. data/lib/twilio-ruby/jwt/task_router.rb +40 -38
  26. data/lib/twilio-ruby/rest/accounts.rb +2 -0
  27. data/lib/twilio-ruby/rest/accounts/v1.rb +2 -0
  28. data/lib/twilio-ruby/rest/accounts/v1/credential.rb +2 -2
  29. data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +12 -7
  30. data/lib/twilio-ruby/rest/api.rb +96 -0
  31. data/lib/twilio-ruby/rest/api/v2010.rb +5 -0
  32. data/lib/twilio-ruby/rest/api/v2010/account.rb +66 -56
  33. data/lib/twilio-ruby/rest/api/v2010/account/address.rb +30 -13
  34. data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +22 -8
  35. data/lib/twilio-ruby/rest/api/v2010/account/application.rb +40 -11
  36. data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +20 -9
  37. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +16 -15
  38. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +26 -28
  39. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +26 -28
  40. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +26 -28
  41. data/lib/twilio-ruby/rest/api/v2010/account/call.rb +64 -34
  42. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +12 -4
  43. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +28 -3
  44. data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +37 -16
  45. data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +25 -15
  46. data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +28 -27
  47. data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +28 -19
  48. data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +22 -9
  49. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +62 -58
  50. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +52 -12
  51. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +52 -12
  52. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +52 -12
  53. data/lib/twilio-ruby/rest/api/v2010/account/key.rb +8 -9
  54. data/lib/twilio-ruby/rest/api/v2010/account/message.rb +47 -20
  55. data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +12 -2
  56. data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +17 -17
  57. data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +10 -2
  58. data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +10 -2
  59. data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +37 -16
  60. data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +14 -13
  61. data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +20 -10
  62. data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +10 -10
  63. data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +37 -21
  64. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +22 -13
  65. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +22 -13
  66. data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +26 -9
  67. data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +24 -13
  68. data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +8 -9
  69. data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +8 -10
  70. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +16 -11
  71. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +14 -9
  72. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +36 -13
  73. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +14 -10
  74. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +14 -10
  75. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +16 -11
  76. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +16 -9
  77. data/lib/twilio-ruby/rest/api/v2010/account/token.rb +14 -2
  78. data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +26 -9
  79. data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +4 -6
  80. data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +44 -33
  81. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +28 -11
  82. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +28 -11
  83. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +28 -11
  84. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +28 -11
  85. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +28 -11
  86. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +28 -11
  87. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +28 -11
  88. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +28 -11
  89. data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +32 -15
  90. data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +10 -1
  91. data/lib/twilio-ruby/rest/chat.rb +8 -0
  92. data/lib/twilio-ruby/rest/chat/v1.rb +8 -0
  93. data/lib/twilio-ruby/rest/chat/v1/credential.rb +16 -7
  94. data/lib/twilio-ruby/rest/chat/v1/service.rb +48 -13
  95. data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +34 -15
  96. data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +20 -10
  97. data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +22 -10
  98. data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +26 -10
  99. data/lib/twilio-ruby/rest/chat/v1/service/role.rb +18 -8
  100. data/lib/twilio-ruby/rest/chat/v1/service/user.rb +30 -10
  101. data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +16 -8
  102. data/lib/twilio-ruby/rest/chat/v2.rb +8 -0
  103. data/lib/twilio-ruby/rest/chat/v2/credential.rb +16 -7
  104. data/lib/twilio-ruby/rest/chat/v2/service.rb +46 -13
  105. data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +34 -15
  106. data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +20 -10
  107. data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +22 -10
  108. data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +26 -10
  109. data/lib/twilio-ruby/rest/chat/v2/service/role.rb +18 -8
  110. data/lib/twilio-ruby/rest/chat/v2/service/user.rb +30 -10
  111. data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +16 -8
  112. data/lib/twilio-ruby/rest/client.rb +94 -45
  113. data/lib/twilio-ruby/rest/ip_messaging.rb +8 -0
  114. data/lib/twilio-ruby/rest/ip_messaging/v1.rb +8 -0
  115. data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +16 -7
  116. data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +48 -13
  117. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +34 -15
  118. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +20 -10
  119. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +22 -10
  120. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +26 -10
  121. data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +18 -8
  122. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +30 -10
  123. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +16 -8
  124. data/lib/twilio-ruby/rest/ip_messaging/v2.rb +8 -0
  125. data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +16 -7
  126. data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +46 -13
  127. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +34 -15
  128. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +20 -10
  129. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +22 -10
  130. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +26 -10
  131. data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +18 -8
  132. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +30 -10
  133. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +16 -8
  134. data/lib/twilio-ruby/rest/lookups.rb +4 -0
  135. data/lib/twilio-ruby/rest/lookups/v1.rb +9 -5
  136. data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +14 -1
  137. data/lib/twilio-ruby/rest/monitor.rb +8 -0
  138. data/lib/twilio-ruby/rest/monitor/v1.rb +8 -0
  139. data/lib/twilio-ruby/rest/monitor/v1/alert.rb +34 -10
  140. data/lib/twilio-ruby/rest/monitor/v1/event.rb +28 -13
  141. data/lib/twilio-ruby/rest/pricing.rb +6 -0
  142. data/lib/twilio-ruby/rest/pricing/v1.rb +6 -0
  143. data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +8 -2
  144. data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +12 -7
  145. data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +8 -2
  146. data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +10 -7
  147. data/lib/twilio-ruby/rest/pricing/v1/voice.rb +10 -4
  148. data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +12 -7
  149. data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +14 -1
  150. data/lib/twilio-ruby/rest/taskrouter.rb +4 -0
  151. data/lib/twilio-ruby/rest/taskrouter/v1.rb +4 -0
  152. data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +46 -24
  153. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +16 -10
  154. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +30 -17
  155. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +42 -19
  156. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +22 -10
  157. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +16 -8
  158. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +34 -15
  159. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +12 -3
  160. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +10 -11
  161. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +34 -23
  162. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +22 -10
  163. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +28 -9
  164. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +10 -3
  165. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +10 -2
  166. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +28 -11
  167. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +12 -3
  168. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +10 -2
  169. data/lib/twilio-ruby/rest/trunking.rb +4 -0
  170. data/lib/twilio-ruby/rest/trunking/v1.rb +4 -0
  171. data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +36 -15
  172. data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +14 -8
  173. data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +14 -8
  174. data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +22 -8
  175. data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +52 -8
  176. data/lib/twilio-ruby/rest/video.rb +8 -0
  177. data/lib/twilio-ruby/rest/video/v1.rb +8 -0
  178. data/lib/twilio-ruby/rest/video/v1/recording.rb +26 -12
  179. data/lib/twilio-ruby/rest/video/v1/room.rb +34 -13
  180. data/lib/twilio-ruby/rest/video/v1/room/recording.rb +28 -12
  181. data/lib/twilio-ruby/security/request_validator.rb +1 -2
  182. data/lib/twilio-ruby/twiml/messaging_response.rb +7 -19
  183. data/lib/twilio-ruby/twiml/twiml.rb +8 -14
  184. data/lib/twilio-ruby/twiml/voice_response.rb +157 -169
  185. data/lib/twilio-ruby/util.rb +1 -1
  186. data/lib/twilio-ruby/version.rb +1 -1
  187. data/spec/framework/serialize_spec.rb +17 -30
  188. data/spec/holodeck/holodeck.rb +6 -6
  189. data/spec/jwt/access_token_spec.rb +0 -6
  190. data/spec/jwt/client_capability_spec.rb +3 -3
  191. data/spec/jwt/task_router_spec.rb +16 -21
  192. data/spec/rack/twilio_webhook_authentication_spec.rb +12 -16
  193. data/spec/spec_helper.rb +2 -2
  194. data/spec/support/fakeweb.rb +1 -1
  195. data/spec/twiml/voice_response_spec.rb +33 -20
  196. data/twilio-ruby.gemspec +7 -3
  197. metadata +21 -193
  198. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +0 -420
  199. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +0 -345
  200. data/lib/twilio-ruby/rest/fax.rb +0 -40
  201. data/lib/twilio-ruby/rest/fax/v1.rb +0 -37
  202. data/lib/twilio-ruby/rest/fax/v1/fax.rb +0 -520
  203. data/lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb +0 -321
  204. data/lib/twilio-ruby/rest/messaging.rb +0 -40
  205. data/lib/twilio-ruby/rest/messaging/v1.rb +0 -37
  206. data/lib/twilio-ruby/rest/messaging/v1/service.rb +0 -604
  207. data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +0 -344
  208. data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +0 -349
  209. data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +0 -349
  210. data/lib/twilio-ruby/rest/notify.rb +0 -44
  211. data/lib/twilio-ruby/rest/notify/v1.rb +0 -48
  212. data/lib/twilio-ruby/rest/notify/v1/credential.rb +0 -394
  213. data/lib/twilio-ruby/rest/notify/v1/service.rb +0 -611
  214. data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +0 -414
  215. data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +0 -249
  216. data/lib/twilio-ruby/rest/notify/v1/service/segment.rb +0 -219
  217. data/lib/twilio-ruby/rest/notify/v1/service/user.rb +0 -437
  218. data/lib/twilio-ruby/rest/notify/v1/service/user/segment_memberships.rb +0 -247
  219. data/lib/twilio-ruby/rest/notify/v1/service/user/user_binding.rb +0 -418
  220. data/lib/twilio-ruby/rest/preview.rb +0 -107
  221. data/lib/twilio-ruby/rest/preview/bulk_exports.rb +0 -48
  222. data/lib/twilio-ruby/rest/preview/bulk_exports/export.rb +0 -198
  223. data/lib/twilio-ruby/rest/preview/bulk_exports/export/day.rb +0 -209
  224. data/lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb +0 -232
  225. data/lib/twilio-ruby/rest/preview/hosted_numbers.rb +0 -37
  226. data/lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb +0 -539
  227. data/lib/twilio-ruby/rest/preview/marketplace.rb +0 -48
  228. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +0 -326
  229. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +0 -297
  230. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +0 -427
  231. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +0 -335
  232. data/lib/twilio-ruby/rest/preview/proxy.rb +0 -37
  233. data/lib/twilio-ruby/rest/preview/proxy/service.rb +0 -489
  234. data/lib/twilio-ruby/rest/preview/proxy/service/phone_number.rb +0 -349
  235. data/lib/twilio-ruby/rest/preview/proxy/service/session.rb +0 -525
  236. data/lib/twilio-ruby/rest/preview/proxy/service/session/interaction.rb +0 -406
  237. data/lib/twilio-ruby/rest/preview/proxy/service/session/participant.rb +0 -495
  238. data/lib/twilio-ruby/rest/preview/proxy/service/session/participant/message_interaction.rb +0 -422
  239. data/lib/twilio-ruby/rest/preview/proxy/service/short_code.rb +0 -349
  240. data/lib/twilio-ruby/rest/preview/sync.rb +0 -37
  241. data/lib/twilio-ruby/rest/preview/sync/service.rb +0 -491
  242. data/lib/twilio-ruby/rest/preview/sync/service/document.rb +0 -431
  243. data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +0 -390
  244. data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +0 -426
  245. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +0 -422
  246. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +0 -390
  247. data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +0 -426
  248. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +0 -424
  249. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +0 -390
  250. data/lib/twilio-ruby/rest/preview/wireless.rb +0 -59
  251. data/lib/twilio-ruby/rest/preview/wireless/command.rb +0 -371
  252. data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +0 -414
  253. data/lib/twilio-ruby/rest/preview/wireless/sim.rb +0 -512
  254. data/lib/twilio-ruby/rest/preview/wireless/sim/usage.rb +0 -220
  255. data/lib/twilio-ruby/rest/sync.rb +0 -40
  256. data/lib/twilio-ruby/rest/sync/v1.rb +0 -37
  257. data/lib/twilio-ruby/rest/sync/v1/service.rb +0 -491
  258. data/lib/twilio-ruby/rest/sync/v1/service/document.rb +0 -431
  259. data/lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb +0 -390
  260. data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +0 -426
  261. data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +0 -422
  262. data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb +0 -390
  263. data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +0 -426
  264. data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +0 -424
  265. data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb +0 -390
  266. data/lib/twilio-ruby/rest/wireless.rb +0 -48
  267. data/lib/twilio-ruby/rest/wireless/v1.rb +0 -59
  268. data/lib/twilio-ruby/rest/wireless/v1/command.rb +0 -357
  269. data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +0 -427
  270. data/lib/twilio-ruby/rest/wireless/v1/sim.rb +0 -516
  271. data/lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb +0 -235
  272. data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb +0 -135
  273. data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb +0 -223
  274. data/spec/integration/fax/v1/fax/fax_media_spec.rb +0 -126
  275. data/spec/integration/fax/v1/fax_spec.rb +0 -272
  276. data/spec/integration/messaging/v1/service/alpha_sender_spec.rb +0 -170
  277. data/spec/integration/messaging/v1/service/phone_number_spec.rb +0 -201
  278. data/spec/integration/messaging/v1/service/short_code_spec.rb +0 -173
  279. data/spec/integration/messaging/v1/service_spec.rb +0 -263
  280. data/spec/integration/notify/v1/credential_spec.rb +0 -223
  281. data/spec/integration/notify/v1/service/binding_spec.rb +0 -227
  282. data/spec/integration/notify/v1/service/notification_spec.rb +0 -97
  283. data/spec/integration/notify/v1/service/segment_spec.rb +0 -84
  284. data/spec/integration/notify/v1/service/user/segment_memberships_spec.rb +0 -118
  285. data/spec/integration/notify/v1/service/user/user_binding_spec.rb +0 -269
  286. data/spec/integration/notify/v1/service/user_spec.rb +0 -213
  287. data/spec/integration/notify/v1/service_spec.rb +0 -280
  288. data/spec/integration/preview/bulk_exports/export/day_spec.rb +0 -56
  289. data/spec/integration/preview/bulk_exports/export_configuration_spec.rb +0 -79
  290. data/spec/integration/preview/bulk_exports/export_spec.rb +0 -43
  291. data/spec/integration/preview/hosted_numbers/hosted_number_order_spec.rb +0 -276
  292. data/spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb +0 -121
  293. data/spec/integration/preview/marketplace/available_add_on_spec.rb +0 -142
  294. data/spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb +0 -164
  295. data/spec/integration/preview/marketplace/installed_add_on_spec.rb +0 -252
  296. data/spec/integration/preview/proxy/service/phone_number_spec.rb +0 -173
  297. data/spec/integration/preview/proxy/service/session/interaction_spec.rb +0 -104
  298. data/spec/integration/preview/proxy/service/session/participant/message_interaction_spec.rb +0 -164
  299. data/spec/integration/preview/proxy/service/session/participant_spec.rb +0 -226
  300. data/spec/integration/preview/proxy/service/session_spec.rb +0 -216
  301. data/spec/integration/preview/proxy/service/short_code_spec.rb +0 -173
  302. data/spec/integration/preview/proxy/service_spec.rb +0 -200
  303. data/spec/integration/preview/sync/service/document/document_permission_spec.rb +0 -206
  304. data/spec/integration/preview/sync/service/document_spec.rb +0 -254
  305. data/spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb +0 -256
  306. data/spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb +0 -206
  307. data/spec/integration/preview/sync/service/sync_list_spec.rb +0 -207
  308. data/spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb +0 -257
  309. data/spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb +0 -206
  310. data/spec/integration/preview/sync/service/sync_map_spec.rb +0 -207
  311. data/spec/integration/preview/sync/service_spec.rb +0 -244
  312. data/spec/integration/preview/wireless/command_spec.rb +0 -169
  313. data/spec/integration/preview/wireless/rate_plan_spec.rb +0 -260
  314. data/spec/integration/preview/wireless/sim/usage_spec.rb +0 -49
  315. data/spec/integration/preview/wireless/sim_spec.rb +0 -208
  316. data/spec/integration/sync/v1/service/document/document_permission_spec.rb +0 -206
  317. data/spec/integration/sync/v1/service/document_spec.rb +0 -254
  318. data/spec/integration/sync/v1/service/sync_list/sync_list_item_spec.rb +0 -256
  319. data/spec/integration/sync/v1/service/sync_list/sync_list_permission_spec.rb +0 -206
  320. data/spec/integration/sync/v1/service/sync_list_spec.rb +0 -207
  321. data/spec/integration/sync/v1/service/sync_map/sync_map_item_spec.rb +0 -257
  322. data/spec/integration/sync/v1/service/sync_map/sync_map_permission_spec.rb +0 -206
  323. data/spec/integration/sync/v1/service/sync_map_spec.rb +0 -207
  324. data/spec/integration/sync/v1/service_spec.rb +0 -244
  325. data/spec/integration/wireless/v1/command_spec.rb +0 -166
  326. data/spec/integration/wireless/v1/rate_plan_spec.rb +0 -268
  327. data/spec/integration/wireless/v1/sim/usage_record_spec.rb +0 -65
  328. data/spec/integration/wireless/v1/sim_spec.rb +0 -208
@@ -71,12 +71,6 @@ module Twilio
71
71
  # When passed a block, yields DependentPhoneNumberInstance records from the API.
72
72
  # This operation lazily loads records as efficiently as possible until the limit
73
73
  # is reached.
74
- # @param [Integer] limit Upper limit for the number of records to return. stream()
75
- # guarantees to never return more than limit. Default is no limit
76
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
77
- # the default value of 50 records. If no page_size is defined
78
- # but a limit is defined, stream() will attempt to read the
79
- # limit with the most efficient page size, i.e. min(limit, 1000)
80
74
  def each
81
75
  limits = @version.read_limits
82
76
 
@@ -136,8 +130,6 @@ module Twilio
136
130
  # @param [Version] version Version that contains the resource
137
131
  # @param [Response] response Response from the API
138
132
  # @param [Hash] solution Path solution for the resource
139
- # @param [String] account_sid The account_sid
140
- # @param [String] address_sid The sid
141
133
  # @return [DependentPhoneNumberPage] DependentPhoneNumberPage
142
134
  def initialize(version, response, solution)
143
135
  super(version, response)
@@ -193,46 +185,68 @@ module Twilio
193
185
  }
194
186
  end
195
187
 
188
+ ##
189
+ # @return [String] The friendly_name
196
190
  def friendly_name
197
191
  @properties['friendly_name']
198
192
  end
199
193
 
194
+ ##
195
+ # @return [String] The phone_number
200
196
  def phone_number
201
197
  @properties['phone_number']
202
198
  end
203
199
 
200
+ ##
201
+ # @return [String] The lata
204
202
  def lata
205
203
  @properties['lata']
206
204
  end
207
205
 
206
+ ##
207
+ # @return [String] The rate_center
208
208
  def rate_center
209
209
  @properties['rate_center']
210
210
  end
211
211
 
212
+ ##
213
+ # @return [String] The latitude
212
214
  def latitude
213
215
  @properties['latitude']
214
216
  end
215
217
 
218
+ ##
219
+ # @return [String] The longitude
216
220
  def longitude
217
221
  @properties['longitude']
218
222
  end
219
223
 
224
+ ##
225
+ # @return [String] The region
220
226
  def region
221
227
  @properties['region']
222
228
  end
223
229
 
230
+ ##
231
+ # @return [String] The postal_code
224
232
  def postal_code
225
233
  @properties['postal_code']
226
234
  end
227
235
 
236
+ ##
237
+ # @return [String] The iso_country
228
238
  def iso_country
229
239
  @properties['iso_country']
230
240
  end
231
241
 
242
+ ##
243
+ # @return [String] The address_requirements
232
244
  def address_requirements
233
245
  @properties['address_requirements']
234
246
  end
235
247
 
248
+ ##
249
+ # @return [String] The capabilities
236
250
  def capabilities
237
251
  @properties['capabilities']
238
252
  end
@@ -144,14 +144,6 @@ module Twilio
144
144
  # When passed a block, yields ApplicationInstance records from the API.
145
145
  # This operation lazily loads records as efficiently as possible until the limit
146
146
  # is reached.
147
- # @param [String] friendly_name Only return application resources with friendly
148
- # names that match exactly with this name
149
- # @param [Integer] limit Upper limit for the number of records to return. stream()
150
- # guarantees to never return more than limit. Default is no limit
151
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
152
- # the default value of 50 records. If no page_size is defined
153
- # but a limit is defined, stream() will attempt to read the
154
- # limit with the most efficient page size, i.e. min(limit, 1000)
155
147
  def each
156
148
  limits = @version.read_limits
157
149
 
@@ -214,8 +206,6 @@ module Twilio
214
206
  # @param [Version] version Version that contains the resource
215
207
  # @param [Response] response Response from the API
216
208
  # @param [Hash] solution Path solution for the resource
217
- # @param [String] account_sid The unique id of the Account that created this
218
- # application.
219
209
  # @return [ApplicationPage] ApplicationPage
220
210
  def initialize(version, response, solution)
221
211
  super(version, response)
@@ -414,7 +404,6 @@ module Twilio
414
404
  ##
415
405
  # Generate an instance context for the instance, the context is capable of
416
406
  # performing various actions. All instance actions are proxied to the context
417
- # @param [Version] version Version that contains the resource
418
407
  # @return [ApplicationContext] ApplicationContext for this ApplicationInstance
419
408
  def context
420
409
  unless @instance_context
@@ -427,82 +416,122 @@ module Twilio
427
416
  @instance_context
428
417
  end
429
418
 
419
+ ##
420
+ # @return [String] A string that uniquely identifies this resource
430
421
  def account_sid
431
422
  @properties['account_sid']
432
423
  end
433
424
 
425
+ ##
426
+ # @return [String] The API version to use
434
427
  def api_version
435
428
  @properties['api_version']
436
429
  end
437
430
 
431
+ ##
432
+ # @return [Time] Date this resource was created
438
433
  def date_created
439
434
  @properties['date_created']
440
435
  end
441
436
 
437
+ ##
438
+ # @return [Time] Date this resource was last updated
442
439
  def date_updated
443
440
  @properties['date_updated']
444
441
  end
445
442
 
443
+ ##
444
+ # @return [String] Human readable description of this resource
446
445
  def friendly_name
447
446
  @properties['friendly_name']
448
447
  end
449
448
 
449
+ ##
450
+ # @return [String] URL to make requests to with status updates
450
451
  def message_status_callback
451
452
  @properties['message_status_callback']
452
453
  end
453
454
 
455
+ ##
456
+ # @return [String] A string that uniquely identifies this resource
454
457
  def sid
455
458
  @properties['sid']
456
459
  end
457
460
 
461
+ ##
462
+ # @return [String] HTTP method to use with sms_fallback_method
458
463
  def sms_fallback_method
459
464
  @properties['sms_fallback_method']
460
465
  end
461
466
 
467
+ ##
468
+ # @return [String] Fallback URL if there's an error parsing TwiML
462
469
  def sms_fallback_url
463
470
  @properties['sms_fallback_url']
464
471
  end
465
472
 
473
+ ##
474
+ # @return [String] HTTP method to use with sms_url
466
475
  def sms_method
467
476
  @properties['sms_method']
468
477
  end
469
478
 
479
+ ##
480
+ # @return [String] URL Twilio with request with status updates
470
481
  def sms_status_callback
471
482
  @properties['sms_status_callback']
472
483
  end
473
484
 
485
+ ##
486
+ # @return [String] URL Twilio will request when receiving an SMS
474
487
  def sms_url
475
488
  @properties['sms_url']
476
489
  end
477
490
 
491
+ ##
492
+ # @return [String] URL to hit with status updates
478
493
  def status_callback
479
494
  @properties['status_callback']
480
495
  end
481
496
 
497
+ ##
498
+ # @return [String] HTTP method to use with the status callback
482
499
  def status_callback_method
483
500
  @properties['status_callback_method']
484
501
  end
485
502
 
503
+ ##
504
+ # @return [String] URI for this resource
486
505
  def uri
487
506
  @properties['uri']
488
507
  end
489
508
 
509
+ ##
510
+ # @return [Boolean] True or False
490
511
  def voice_caller_id_lookup
491
512
  @properties['voice_caller_id_lookup']
492
513
  end
493
514
 
515
+ ##
516
+ # @return [String] HTTP method to use with the fallback url
494
517
  def voice_fallback_method
495
518
  @properties['voice_fallback_method']
496
519
  end
497
520
 
521
+ ##
522
+ # @return [String] Fallback URL
498
523
  def voice_fallback_url
499
524
  @properties['voice_fallback_url']
500
525
  end
501
526
 
527
+ ##
528
+ # @return [String] HTTP method to use with the URL
502
529
  def voice_method
503
530
  @properties['voice_method']
504
531
  end
505
532
 
533
+ ##
534
+ # @return [String] URL Twilio will make requests to when relieving a call
506
535
  def voice_url
507
536
  @properties['voice_url']
508
537
  end
@@ -69,12 +69,6 @@ module Twilio
69
69
  # When passed a block, yields AuthorizedConnectAppInstance records from the API.
70
70
  # This operation lazily loads records as efficiently as possible until the limit
71
71
  # is reached.
72
- # @param [Integer] limit Upper limit for the number of records to return. stream()
73
- # guarantees to never return more than limit. Default is no limit
74
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
75
- # the default value of 50 records. If no page_size is defined
76
- # but a limit is defined, stream() will attempt to read the
77
- # limit with the most efficient page size, i.e. min(limit, 1000)
78
72
  def each
79
73
  limits = @version.read_limits
80
74
 
@@ -134,8 +128,6 @@ module Twilio
134
128
  # @param [Version] version Version that contains the resource
135
129
  # @param [Response] response Response from the API
136
130
  # @param [Hash] solution Path solution for the resource
137
- # @param [String] account_sid The unique id of the SubAccount this Connect App has
138
- # access to.
139
131
  # @return [AuthorizedConnectAppPage] AuthorizedConnectAppPage
140
132
  def initialize(version, response, solution)
141
133
  super(version, response)
@@ -246,7 +238,6 @@ module Twilio
246
238
  ##
247
239
  # Generate an instance context for the instance, the context is capable of
248
240
  # performing various actions. All instance actions are proxied to the context
249
- # @param [Version] version Version that contains the resource
250
241
  # @return [AuthorizedConnectAppContext] AuthorizedConnectAppContext for this AuthorizedConnectAppInstance
251
242
  def context
252
243
  unless @instance_context
@@ -259,42 +250,62 @@ module Twilio
259
250
  @instance_context
260
251
  end
261
252
 
253
+ ##
254
+ # @return [String] The unique sid that identifies this account
262
255
  def account_sid
263
256
  @properties['account_sid']
264
257
  end
265
258
 
259
+ ##
260
+ # @return [String] The company name set for this Connect App.
266
261
  def connect_app_company_name
267
262
  @properties['connect_app_company_name']
268
263
  end
269
264
 
265
+ ##
266
+ # @return [String] Human readable description of the app
270
267
  def connect_app_description
271
268
  @properties['connect_app_description']
272
269
  end
273
270
 
271
+ ##
272
+ # @return [String] A human readable name for the Connect App.
274
273
  def connect_app_friendly_name
275
274
  @properties['connect_app_friendly_name']
276
275
  end
277
276
 
277
+ ##
278
+ # @return [String] The public URL for this Connect App.
278
279
  def connect_app_homepage_url
279
280
  @properties['connect_app_homepage_url']
280
281
  end
281
282
 
283
+ ##
284
+ # @return [String] A string that uniquely identifies this app
282
285
  def connect_app_sid
283
286
  @properties['connect_app_sid']
284
287
  end
285
288
 
289
+ ##
290
+ # @return [Time] The date this resource was created
286
291
  def date_created
287
292
  @properties['date_created']
288
293
  end
289
294
 
295
+ ##
296
+ # @return [Time] The date this resource was last updated
290
297
  def date_updated
291
298
  @properties['date_updated']
292
299
  end
293
300
 
301
+ ##
302
+ # @return [authorized_connect_app.Permission] Permissions authorized to this app
294
303
  def permissions
295
304
  @properties['permissions']
296
305
  end
297
306
 
307
+ ##
308
+ # @return [String] The URI for this resource
298
309
  def uri
299
310
  @properties['uri']
300
311
  end
@@ -69,12 +69,6 @@ module Twilio
69
69
  # When passed a block, yields AvailablePhoneNumberCountryInstance records from the API.
70
70
  # This operation lazily loads records as efficiently as possible until the limit
71
71
  # is reached.
72
- # @param [Integer] limit Upper limit for the number of records to return. stream()
73
- # guarantees to never return more than limit. Default is no limit
74
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
75
- # the default value of 50 records. If no page_size is defined
76
- # but a limit is defined, stream() will attempt to read the
77
- # limit with the most efficient page size, i.e. min(limit, 1000)
78
72
  def each
79
73
  limits = @version.read_limits
80
74
 
@@ -134,8 +128,6 @@ module Twilio
134
128
  # @param [Version] version Version that contains the resource
135
129
  # @param [Response] response Response from the API
136
130
  # @param [Hash] solution Path solution for the resource
137
- # @param [String] account_sid A 34 character string that uniquely identifies this
138
- # resource.
139
131
  # @return [AvailablePhoneNumberCountryPage] AvailablePhoneNumberCountryPage
140
132
  def initialize(version, response, solution)
141
133
  super(version, response)
@@ -208,8 +200,8 @@ module Twilio
208
200
 
209
201
  ##
210
202
  # Access the local
211
- # @return [LocalList] if a(n) LocalList object was created.
212
- # @return [LocalContext] if a(n) LocalContext object was created.
203
+ # @return [LocalList]
204
+ # @return [LocalContext]
213
205
  def local
214
206
  unless @local
215
207
  @local = LocalList.new(
@@ -224,8 +216,8 @@ module Twilio
224
216
 
225
217
  ##
226
218
  # Access the toll_free
227
- # @return [TollFreeList] if a(n) TollFreeList object was created.
228
- # @return [TollFreeContext] if a(n) TollFreeContext object was created.
219
+ # @return [TollFreeList]
220
+ # @return [TollFreeContext]
229
221
  def toll_free
230
222
  unless @toll_free
231
223
  @toll_free = TollFreeList.new(
@@ -240,8 +232,8 @@ module Twilio
240
232
 
241
233
  ##
242
234
  # Access the mobile
243
- # @return [MobileList] if a(n) MobileList object was created.
244
- # @return [MobileContext] if a(n) MobileContext object was created.
235
+ # @return [MobileList]
236
+ # @return [MobileContext]
245
237
  def mobile
246
238
  unless @mobile
247
239
  @mobile = MobileList.new(
@@ -294,7 +286,6 @@ module Twilio
294
286
  ##
295
287
  # Generate an instance context for the instance, the context is capable of
296
288
  # performing various actions. All instance actions are proxied to the context
297
- # @param [Version] version Version that contains the resource
298
289
  # @return [AvailablePhoneNumberCountryContext] AvailablePhoneNumberCountryContext for this AvailablePhoneNumberCountryInstance
299
290
  def context
300
291
  unless @instance_context
@@ -307,22 +298,32 @@ module Twilio
307
298
  @instance_context
308
299
  end
309
300
 
301
+ ##
302
+ # @return [String] The ISO Country code to lookup phone numbers for.
310
303
  def country_code
311
304
  @properties['country_code']
312
305
  end
313
306
 
307
+ ##
308
+ # @return [String] The country
314
309
  def country
315
310
  @properties['country']
316
311
  end
317
312
 
313
+ ##
314
+ # @return [String] The uri
318
315
  def uri
319
316
  @properties['uri']
320
317
  end
321
318
 
319
+ ##
320
+ # @return [Boolean] The beta
322
321
  def beta
323
322
  @properties['beta']
324
323
  end
325
324
 
325
+ ##
326
+ # @return [String] The subresource_uris
326
327
  def subresource_uris
327
328
  @properties['subresource_uris']
328
329
  end
@@ -144,31 +144,6 @@ module Twilio
144
144
  # When passed a block, yields LocalInstance records from the API.
145
145
  # This operation lazily loads records as efficiently as possible until the limit
146
146
  # is reached.
147
- # @param [String] area_code The area_code
148
- # @param [String] contains The contains
149
- # @param [Boolean] sms_enabled The sms_enabled
150
- # @param [Boolean] mms_enabled The mms_enabled
151
- # @param [Boolean] voice_enabled The voice_enabled
152
- # @param [Boolean] exclude_all_address_required The exclude_all_address_required
153
- # @param [Boolean] exclude_local_address_required The
154
- # exclude_local_address_required
155
- # @param [Boolean] exclude_foreign_address_required The
156
- # exclude_foreign_address_required
157
- # @param [Boolean] beta The beta
158
- # @param [String] near_number The near_number
159
- # @param [String] near_lat_long The near_lat_long
160
- # @param [String] distance The distance
161
- # @param [String] in_postal_code The in_postal_code
162
- # @param [String] in_region The in_region
163
- # @param [String] in_rate_center The in_rate_center
164
- # @param [String] in_lata The in_lata
165
- # @param [String] in_locality The in_locality
166
- # @param [Integer] limit Upper limit for the number of records to return. stream()
167
- # guarantees to never return more than limit. Default is no limit
168
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
169
- # the default value of 50 records. If no page_size is defined
170
- # but a limit is defined, stream() will attempt to read the
171
- # limit with the most efficient page size, i.e. min(limit, 1000)
172
147
  def each
173
148
  limits = @version.read_limits
174
149
 
@@ -264,9 +239,6 @@ module Twilio
264
239
  # @param [Version] version Version that contains the resource
265
240
  # @param [Response] response Response from the API
266
241
  # @param [Hash] solution Path solution for the resource
267
- # @param [String] account_sid The 34 character string that uniquely identifies
268
- # your account.
269
- # @param [String] country_code The ISO Country code to lookup phone numbers for.
270
242
  # @return [LocalPage] LocalPage
271
243
  def initialize(version, response, solution)
272
244
  super(version, response)
@@ -325,54 +297,80 @@ module Twilio
325
297
  }
326
298
  end
327
299
 
300
+ ##
301
+ # @return [String] The friendly_name
328
302
  def friendly_name
329
303
  @properties['friendly_name']
330
304
  end
331
305
 
306
+ ##
307
+ # @return [String] The phone_number
332
308
  def phone_number
333
309
  @properties['phone_number']
334
310
  end
335
311
 
312
+ ##
313
+ # @return [String] The lata
336
314
  def lata
337
315
  @properties['lata']
338
316
  end
339
317
 
318
+ ##
319
+ # @return [String] The locality
340
320
  def locality
341
321
  @properties['locality']
342
322
  end
343
323
 
324
+ ##
325
+ # @return [String] The rate_center
344
326
  def rate_center
345
327
  @properties['rate_center']
346
328
  end
347
329
 
330
+ ##
331
+ # @return [String] The latitude
348
332
  def latitude
349
333
  @properties['latitude']
350
334
  end
351
335
 
336
+ ##
337
+ # @return [String] The longitude
352
338
  def longitude
353
339
  @properties['longitude']
354
340
  end
355
341
 
342
+ ##
343
+ # @return [String] The region
356
344
  def region
357
345
  @properties['region']
358
346
  end
359
347
 
348
+ ##
349
+ # @return [String] The postal_code
360
350
  def postal_code
361
351
  @properties['postal_code']
362
352
  end
363
353
 
354
+ ##
355
+ # @return [String] The iso_country
364
356
  def iso_country
365
357
  @properties['iso_country']
366
358
  end
367
359
 
360
+ ##
361
+ # @return [String] The address_requirements
368
362
  def address_requirements
369
363
  @properties['address_requirements']
370
364
  end
371
365
 
366
+ ##
367
+ # @return [Boolean] The beta
372
368
  def beta
373
369
  @properties['beta']
374
370
  end
375
371
 
372
+ ##
373
+ # @return [String] The capabilities
376
374
  def capabilities
377
375
  @properties['capabilities']
378
376
  end