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
@@ -95,12 +95,6 @@ module Twilio
95
95
  # When passed a block, yields RoleInstance records from the API.
96
96
  # This operation lazily loads records as efficiently as possible until the limit
97
97
  # is reached.
98
- # @param [Integer] limit Upper limit for the number of records to return. stream()
99
- # guarantees to never return more than limit. Default is no limit
100
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
101
- # the default value of 50 records. If no page_size is defined
102
- # but a limit is defined, stream() will attempt to read the
103
- # limit with the most efficient page size, i.e. min(limit, 1000)
104
98
  def each
105
99
  limits = @version.read_limits
106
100
 
@@ -160,7 +154,6 @@ module Twilio
160
154
  # @param [Version] version Version that contains the resource
161
155
  # @param [Response] response Response from the API
162
156
  # @param [Hash] solution Path solution for the resource
163
- # @param [String] service_sid The service_sid
164
157
  # @return [RolePage] RolePage
165
158
  def initialize(version, response, solution)
166
159
  super(version, response)
@@ -299,7 +292,6 @@ module Twilio
299
292
  ##
300
293
  # Generate an instance context for the instance, the context is capable of
301
294
  # performing various actions. All instance actions are proxied to the context
302
- # @param [Version] version Version that contains the resource
303
295
  # @return [RoleContext] RoleContext for this RoleInstance
304
296
  def context
305
297
  unless @instance_context
@@ -312,38 +304,56 @@ module Twilio
312
304
  @instance_context
313
305
  end
314
306
 
307
+ ##
308
+ # @return [String] The sid
315
309
  def sid
316
310
  @properties['sid']
317
311
  end
318
312
 
313
+ ##
314
+ # @return [String] The account_sid
319
315
  def account_sid
320
316
  @properties['account_sid']
321
317
  end
322
318
 
319
+ ##
320
+ # @return [String] The service_sid
323
321
  def service_sid
324
322
  @properties['service_sid']
325
323
  end
326
324
 
325
+ ##
326
+ # @return [String] The friendly_name
327
327
  def friendly_name
328
328
  @properties['friendly_name']
329
329
  end
330
330
 
331
+ ##
332
+ # @return [role.RoleType] The type
331
333
  def type
332
334
  @properties['type']
333
335
  end
334
336
 
337
+ ##
338
+ # @return [String] The permissions
335
339
  def permissions
336
340
  @properties['permissions']
337
341
  end
338
342
 
343
+ ##
344
+ # @return [Time] The date_created
339
345
  def date_created
340
346
  @properties['date_created']
341
347
  end
342
348
 
349
+ ##
350
+ # @return [Time] The date_updated
343
351
  def date_updated
344
352
  @properties['date_updated']
345
353
  end
346
354
 
355
+ ##
356
+ # @return [String] The url
347
357
  def url
348
358
  @properties['url']
349
359
  end
@@ -97,12 +97,6 @@ module Twilio
97
97
  # When passed a block, yields UserInstance records from the API.
98
98
  # This operation lazily loads records as efficiently as possible until the limit
99
99
  # is reached.
100
- # @param [Integer] limit Upper limit for the number of records to return. stream()
101
- # guarantees to never return more than limit. Default is no limit
102
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
103
- # the default value of 50 records. If no page_size is defined
104
- # but a limit is defined, stream() will attempt to read the
105
- # limit with the most efficient page size, i.e. min(limit, 1000)
106
100
  def each
107
101
  limits = @version.read_limits
108
102
 
@@ -162,7 +156,6 @@ module Twilio
162
156
  # @param [Version] version Version that contains the resource
163
157
  # @param [Response] response Response from the API
164
158
  # @param [Hash] solution Path solution for the resource
165
- # @param [String] service_sid The service_sid
166
159
  # @return [UserPage] UserPage
167
160
  def initialize(version, response, solution)
168
161
  super(version, response)
@@ -267,8 +260,8 @@ module Twilio
267
260
 
268
261
  ##
269
262
  # Access the user_channels
270
- # @return [UserChannelList] if a(n) UserChannelList object was created.
271
- # @return [UserChannelContext] if a(n) UserChannelContext object was created.
263
+ # @return [UserChannelList]
264
+ # @return [UserChannelContext]
272
265
  def user_channels
273
266
  unless @user_channels
274
267
  @user_channels = UserChannelList.new(
@@ -329,7 +322,6 @@ module Twilio
329
322
  ##
330
323
  # Generate an instance context for the instance, the context is capable of
331
324
  # performing various actions. All instance actions are proxied to the context
332
- # @param [Version] version Version that contains the resource
333
325
  # @return [UserContext] UserContext for this UserInstance
334
326
  def context
335
327
  unless @instance_context
@@ -342,58 +334,86 @@ module Twilio
342
334
  @instance_context
343
335
  end
344
336
 
337
+ ##
338
+ # @return [String] The sid
345
339
  def sid
346
340
  @properties['sid']
347
341
  end
348
342
 
343
+ ##
344
+ # @return [String] The account_sid
349
345
  def account_sid
350
346
  @properties['account_sid']
351
347
  end
352
348
 
349
+ ##
350
+ # @return [String] The service_sid
353
351
  def service_sid
354
352
  @properties['service_sid']
355
353
  end
356
354
 
355
+ ##
356
+ # @return [String] The attributes
357
357
  def attributes
358
358
  @properties['attributes']
359
359
  end
360
360
 
361
+ ##
362
+ # @return [String] The friendly_name
361
363
  def friendly_name
362
364
  @properties['friendly_name']
363
365
  end
364
366
 
367
+ ##
368
+ # @return [String] The role_sid
365
369
  def role_sid
366
370
  @properties['role_sid']
367
371
  end
368
372
 
373
+ ##
374
+ # @return [String] The identity
369
375
  def identity
370
376
  @properties['identity']
371
377
  end
372
378
 
379
+ ##
380
+ # @return [Boolean] The is_online
373
381
  def is_online
374
382
  @properties['is_online']
375
383
  end
376
384
 
385
+ ##
386
+ # @return [Boolean] The is_notifiable
377
387
  def is_notifiable
378
388
  @properties['is_notifiable']
379
389
  end
380
390
 
391
+ ##
392
+ # @return [Time] The date_created
381
393
  def date_created
382
394
  @properties['date_created']
383
395
  end
384
396
 
397
+ ##
398
+ # @return [Time] The date_updated
385
399
  def date_updated
386
400
  @properties['date_updated']
387
401
  end
388
402
 
403
+ ##
404
+ # @return [String] The joined_channels_count
389
405
  def joined_channels_count
390
406
  @properties['joined_channels_count']
391
407
  end
392
408
 
409
+ ##
410
+ # @return [String] The links
393
411
  def links
394
412
  @properties['links']
395
413
  end
396
414
 
415
+ ##
416
+ # @return [String] The url
397
417
  def url
398
418
  @properties['url']
399
419
  end
@@ -71,12 +71,6 @@ module Twilio
71
71
  # When passed a block, yields UserChannelInstance 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] service_sid The service_sid
140
- # @param [String] user_sid The sid
141
133
  # @return [UserChannelPage] UserChannelPage
142
134
  def initialize(version, response, solution)
143
135
  super(version, response)
@@ -190,34 +182,50 @@ module Twilio
190
182
  }
191
183
  end
192
184
 
185
+ ##
186
+ # @return [String] The account_sid
193
187
  def account_sid
194
188
  @properties['account_sid']
195
189
  end
196
190
 
191
+ ##
192
+ # @return [String] The service_sid
197
193
  def service_sid
198
194
  @properties['service_sid']
199
195
  end
200
196
 
197
+ ##
198
+ # @return [String] The channel_sid
201
199
  def channel_sid
202
200
  @properties['channel_sid']
203
201
  end
204
202
 
203
+ ##
204
+ # @return [String] The member_sid
205
205
  def member_sid
206
206
  @properties['member_sid']
207
207
  end
208
208
 
209
+ ##
210
+ # @return [user_channel.ChannelStatus] The status
209
211
  def status
210
212
  @properties['status']
211
213
  end
212
214
 
215
+ ##
216
+ # @return [String] The last_consumed_message_index
213
217
  def last_consumed_message_index
214
218
  @properties['last_consumed_message_index']
215
219
  end
216
220
 
221
+ ##
222
+ # @return [String] The unread_messages_count
217
223
  def unread_messages_count
218
224
  @properties['unread_messages_count']
219
225
  end
220
226
 
227
+ ##
228
+ # @return [String] The links
221
229
  def links
222
230
  @properties['links']
223
231
  end
@@ -17,6 +17,10 @@ module Twilio
17
17
  @services = nil
18
18
  end
19
19
 
20
+ ##
21
+ # @param [String] sid The sid
22
+ # @return [Twilio::REST::Chat::V2::CredentialInstance] if sid was passed.
23
+ # @return [Twilio::REST::Chat::V2::CredentialList]
20
24
  def credentials(sid=:unset)
21
25
  if sid.nil?
22
26
  raise ArgumentError, 'sid cannot be nil'
@@ -27,6 +31,10 @@ module Twilio
27
31
  end
28
32
  end
29
33
 
34
+ ##
35
+ # @param [String] sid The sid
36
+ # @return [Twilio::REST::Chat::V2::ServiceInstance] if sid was passed.
37
+ # @return [Twilio::REST::Chat::V2::ServiceList]
30
38
  def services(sid=:unset)
31
39
  if sid.nil?
32
40
  raise ArgumentError, 'sid cannot be nil'
@@ -64,12 +64,6 @@ module Twilio
64
64
  # When passed a block, yields CredentialInstance records from the API.
65
65
  # This operation lazily loads records as efficiently as possible until the limit
66
66
  # is reached.
67
- # @param [Integer] limit Upper limit for the number of records to return. stream()
68
- # guarantees to never return more than limit. Default is no limit
69
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
70
- # the default value of 50 records. If no page_size is defined
71
- # but a limit is defined, stream() will attempt to read the
72
- # limit with the most efficient page size, i.e. min(limit, 1000)
73
67
  def each
74
68
  limits = @version.read_limits
75
69
 
@@ -303,7 +297,6 @@ module Twilio
303
297
  ##
304
298
  # Generate an instance context for the instance, the context is capable of
305
299
  # performing various actions. All instance actions are proxied to the context
306
- # @param [Version] version Version that contains the resource
307
300
  # @return [CredentialContext] CredentialContext for this CredentialInstance
308
301
  def context
309
302
  unless @instance_context
@@ -315,34 +308,50 @@ module Twilio
315
308
  @instance_context
316
309
  end
317
310
 
311
+ ##
312
+ # @return [String] The sid
318
313
  def sid
319
314
  @properties['sid']
320
315
  end
321
316
 
317
+ ##
318
+ # @return [String] The account_sid
322
319
  def account_sid
323
320
  @properties['account_sid']
324
321
  end
325
322
 
323
+ ##
324
+ # @return [String] The friendly_name
326
325
  def friendly_name
327
326
  @properties['friendly_name']
328
327
  end
329
328
 
329
+ ##
330
+ # @return [credential.PushService] The type
330
331
  def type
331
332
  @properties['type']
332
333
  end
333
334
 
335
+ ##
336
+ # @return [String] The sandbox
334
337
  def sandbox
335
338
  @properties['sandbox']
336
339
  end
337
340
 
341
+ ##
342
+ # @return [Time] The date_created
338
343
  def date_created
339
344
  @properties['date_created']
340
345
  end
341
346
 
347
+ ##
348
+ # @return [Time] The date_updated
342
349
  def date_updated
343
350
  @properties['date_updated']
344
351
  end
345
352
 
353
+ ##
354
+ # @return [String] The url
346
355
  def url
347
356
  @properties['url']
348
357
  end
@@ -86,12 +86,6 @@ module Twilio
86
86
  # When passed a block, yields ServiceInstance records from the API.
87
87
  # This operation lazily loads records as efficiently as possible until the limit
88
88
  # is reached.
89
- # @param [Integer] limit Upper limit for the number of records to return. stream()
90
- # guarantees to never return more than limit. Default is no limit
91
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
92
- # the default value of 50 records. If no page_size is defined
93
- # but a limit is defined, stream() will attempt to read the
94
- # limit with the most efficient page size, i.e. min(limit, 1000)
95
89
  def each
96
90
  limits = @version.read_limits
97
91
 
@@ -314,8 +308,8 @@ module Twilio
314
308
 
315
309
  ##
316
310
  # Access the channels
317
- # @return [ChannelList] if a(n) ChannelList object was created.
318
- # @return [ChannelContext] if a(n) ChannelContext object was created.
311
+ # @return [ChannelList]
312
+ # @return [ChannelContext] if sid was passed.
319
313
  def channels(sid=:unset)
320
314
  raise ArgumentError, 'sid cannot be nil' if sid.nil?
321
315
 
@@ -339,8 +333,8 @@ module Twilio
339
333
 
340
334
  ##
341
335
  # Access the roles
342
- # @return [RoleList] if a(n) RoleList object was created.
343
- # @return [RoleContext] if a(n) RoleContext object was created.
336
+ # @return [RoleList]
337
+ # @return [RoleContext] if sid was passed.
344
338
  def roles(sid=:unset)
345
339
  raise ArgumentError, 'sid cannot be nil' if sid.nil?
346
340
 
@@ -364,8 +358,8 @@ module Twilio
364
358
 
365
359
  ##
366
360
  # Access the users
367
- # @return [UserList] if a(n) UserList object was created.
368
- # @return [UserContext] if a(n) UserContext object was created.
361
+ # @return [UserList]
362
+ # @return [UserContext] if sid was passed.
369
363
  def users(sid=:unset)
370
364
  raise ArgumentError, 'sid cannot be nil' if sid.nil?
371
365
 
@@ -439,7 +433,6 @@ module Twilio
439
433
  ##
440
434
  # Generate an instance context for the instance, the context is capable of
441
435
  # performing various actions. All instance actions are proxied to the context
442
- # @param [Version] version Version that contains the resource
443
436
  # @return [ServiceContext] ServiceContext for this ServiceInstance
444
437
  def context
445
438
  unless @instance_context
@@ -451,82 +444,122 @@ module Twilio
451
444
  @instance_context
452
445
  end
453
446
 
447
+ ##
448
+ # @return [String] The sid
454
449
  def sid
455
450
  @properties['sid']
456
451
  end
457
452
 
453
+ ##
454
+ # @return [String] The account_sid
458
455
  def account_sid
459
456
  @properties['account_sid']
460
457
  end
461
458
 
459
+ ##
460
+ # @return [String] The friendly_name
462
461
  def friendly_name
463
462
  @properties['friendly_name']
464
463
  end
465
464
 
465
+ ##
466
+ # @return [Time] The date_created
466
467
  def date_created
467
468
  @properties['date_created']
468
469
  end
469
470
 
471
+ ##
472
+ # @return [Time] The date_updated
470
473
  def date_updated
471
474
  @properties['date_updated']
472
475
  end
473
476
 
477
+ ##
478
+ # @return [String] The default_service_role_sid
474
479
  def default_service_role_sid
475
480
  @properties['default_service_role_sid']
476
481
  end
477
482
 
483
+ ##
484
+ # @return [String] The default_channel_role_sid
478
485
  def default_channel_role_sid
479
486
  @properties['default_channel_role_sid']
480
487
  end
481
488
 
489
+ ##
490
+ # @return [String] The default_channel_creator_role_sid
482
491
  def default_channel_creator_role_sid
483
492
  @properties['default_channel_creator_role_sid']
484
493
  end
485
494
 
495
+ ##
496
+ # @return [Boolean] The read_status_enabled
486
497
  def read_status_enabled
487
498
  @properties['read_status_enabled']
488
499
  end
489
500
 
501
+ ##
502
+ # @return [Boolean] The reachability_enabled
490
503
  def reachability_enabled
491
504
  @properties['reachability_enabled']
492
505
  end
493
506
 
507
+ ##
508
+ # @return [String] The typing_indicator_timeout
494
509
  def typing_indicator_timeout
495
510
  @properties['typing_indicator_timeout']
496
511
  end
497
512
 
513
+ ##
514
+ # @return [String] The consumption_report_interval
498
515
  def consumption_report_interval
499
516
  @properties['consumption_report_interval']
500
517
  end
501
518
 
519
+ ##
520
+ # @return [Hash] The limits
502
521
  def limits
503
522
  @properties['limits']
504
523
  end
505
524
 
525
+ ##
526
+ # @return [String] The pre_webhook_url
506
527
  def pre_webhook_url
507
528
  @properties['pre_webhook_url']
508
529
  end
509
530
 
531
+ ##
532
+ # @return [String] The post_webhook_url
510
533
  def post_webhook_url
511
534
  @properties['post_webhook_url']
512
535
  end
513
536
 
537
+ ##
538
+ # @return [String] The webhook_method
514
539
  def webhook_method
515
540
  @properties['webhook_method']
516
541
  end
517
542
 
543
+ ##
544
+ # @return [String] The webhook_filters
518
545
  def webhook_filters
519
546
  @properties['webhook_filters']
520
547
  end
521
548
 
549
+ ##
550
+ # @return [Hash] The notifications
522
551
  def notifications
523
552
  @properties['notifications']
524
553
  end
525
554
 
555
+ ##
556
+ # @return [String] The url
526
557
  def url
527
558
  @properties['url']
528
559
  end
529
560
 
561
+ ##
562
+ # @return [String] The links
530
563
  def links
531
564
  @properties['links']
532
565
  end