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
@@ -1,232 +0,0 @@
1
- ##
2
- # This code was generated by
3
- # \ / _ _ _| _ _
4
- # | (_)\/(_)(_|\/| |(/_ v1.0.0
5
- # / /
6
-
7
- module Twilio
8
- module REST
9
- class Preview < Domain
10
- class BulkExports < Version
11
- class ExportConfigurationList < ListResource
12
- ##
13
- # Initialize the ExportConfigurationList
14
- # @param [Version] version Version that contains the resource
15
- # @return [ExportConfigurationList] ExportConfigurationList
16
- def initialize(version)
17
- super(version)
18
-
19
- # Path Solution
20
- @solution = {}
21
- end
22
-
23
- ##
24
- # Provide a user friendly representation
25
- def to_s
26
- '#<Twilio.Preview.BulkExports.ExportConfigurationList>'
27
- end
28
- end
29
-
30
- class ExportConfigurationPage < Page
31
- ##
32
- # Initialize the ExportConfigurationPage
33
- # @param [Version] version Version that contains the resource
34
- # @param [Response] response Response from the API
35
- # @param [Hash] solution Path solution for the resource
36
- # @return [ExportConfigurationPage] ExportConfigurationPage
37
- def initialize(version, response, solution)
38
- super(version, response)
39
-
40
- # Path Solution
41
- @solution = solution
42
- end
43
-
44
- ##
45
- # Build an instance of ExportConfigurationInstance
46
- # @param [Hash] payload Payload response from the API
47
- # @return [ExportConfigurationInstance] ExportConfigurationInstance
48
- def get_instance(payload)
49
- ExportConfigurationInstance.new(
50
- @version,
51
- payload,
52
- )
53
- end
54
-
55
- ##
56
- # Provide a user friendly representation
57
- def to_s
58
- '<Twilio.Preview.BulkExports.ExportConfigurationPage>'
59
- end
60
- end
61
-
62
- class ExportConfigurationContext < InstanceContext
63
- ##
64
- # Initialize the ExportConfigurationContext
65
- # @param [Version] version Version that contains the resource
66
- # @param [String] resource_type The resource_type
67
- # @return [ExportConfigurationContext] ExportConfigurationContext
68
- def initialize(version, resource_type)
69
- super(version)
70
-
71
- # Path Solution
72
- @solution = {
73
- resource_type: resource_type,
74
- }
75
- @uri = "/Exports/#{@solution[:resource_type]}/Configuration"
76
- end
77
-
78
- ##
79
- # Fetch a ExportConfigurationInstance
80
- # @return [ExportConfigurationInstance] Fetched ExportConfigurationInstance
81
- def fetch
82
- params = Twilio::Values.of({})
83
-
84
- payload = @version.fetch(
85
- 'GET',
86
- @uri,
87
- params,
88
- )
89
-
90
- ExportConfigurationInstance.new(
91
- @version,
92
- payload,
93
- resource_type: @solution[:resource_type],
94
- )
95
- end
96
-
97
- ##
98
- # Update the ExportConfigurationInstance
99
- # @param [Boolean] enabled The enabled
100
- # @param [String] webhook_url The webhook_url
101
- # @param [String] webhook_method The webhook_method
102
- # @param [String] email The email
103
- # @return [ExportConfigurationInstance] Updated ExportConfigurationInstance
104
- def update(enabled: :unset, webhook_url: :unset, webhook_method: :unset, email: :unset)
105
- data = Twilio::Values.of({
106
- 'Enabled' => enabled,
107
- 'WebhookUrl' => webhook_url,
108
- 'WebhookMethod' => webhook_method,
109
- 'Email' => email,
110
- })
111
-
112
- payload = @version.update(
113
- 'POST',
114
- @uri,
115
- data: data,
116
- )
117
-
118
- ExportConfigurationInstance.new(
119
- @version,
120
- payload,
121
- resource_type: @solution[:resource_type],
122
- )
123
- end
124
-
125
- ##
126
- # Provide a user friendly representation
127
- def to_s
128
- context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
129
- "#<Twilio.Preview.BulkExports.ExportConfigurationContext #{context}>"
130
- end
131
- end
132
-
133
- class ExportConfigurationInstance < InstanceResource
134
- ##
135
- # Initialize the ExportConfigurationInstance
136
- # @param [Version] version Version that contains the resource
137
- # @param [Hash] payload payload that contains response from Twilio
138
- # @param [String] resource_type The resource_type
139
- # @return [ExportConfigurationInstance] ExportConfigurationInstance
140
- def initialize(version, payload, resource_type: nil)
141
- super(version)
142
-
143
- # Marshaled Properties
144
- @properties = {
145
- 'enabled' => payload['enabled'],
146
- 'webhook_url' => payload['webhook_url'],
147
- 'webhook_method' => payload['webhook_method'],
148
- 'email' => payload['email'],
149
- 'resource_type' => payload['resource_type'],
150
- 'url' => payload['url'],
151
- }
152
-
153
- # Context
154
- @instance_context = nil
155
- @params = {
156
- 'resource_type' => resource_type || @properties['resource_type'],
157
- }
158
- end
159
-
160
- ##
161
- # Generate an instance context for the instance, the context is capable of
162
- # performing various actions. All instance actions are proxied to the context
163
- # @param [Version] version Version that contains the resource
164
- # @return [ExportConfigurationContext] ExportConfigurationContext for this ExportConfigurationInstance
165
- def context
166
- unless @instance_context
167
- @instance_context = ExportConfigurationContext.new(
168
- @version,
169
- @params['resource_type'],
170
- )
171
- end
172
- @instance_context
173
- end
174
-
175
- def enabled
176
- @properties['enabled']
177
- end
178
-
179
- def webhook_url
180
- @properties['webhook_url']
181
- end
182
-
183
- def webhook_method
184
- @properties['webhook_method']
185
- end
186
-
187
- def email
188
- @properties['email']
189
- end
190
-
191
- def resource_type
192
- @properties['resource_type']
193
- end
194
-
195
- def url
196
- @properties['url']
197
- end
198
-
199
- ##
200
- # Fetch a ExportConfigurationInstance
201
- # @return [ExportConfigurationInstance] Fetched ExportConfigurationInstance
202
- def fetch
203
- context.fetch
204
- end
205
-
206
- ##
207
- # Update the ExportConfigurationInstance
208
- # @param [Boolean] enabled The enabled
209
- # @param [String] webhook_url The webhook_url
210
- # @param [String] webhook_method The webhook_method
211
- # @param [String] email The email
212
- # @return [ExportConfigurationInstance] Updated ExportConfigurationInstance
213
- def update(enabled: :unset, webhook_url: :unset, webhook_method: :unset, email: :unset)
214
- context.update(
215
- enabled: enabled,
216
- webhook_url: webhook_url,
217
- webhook_method: webhook_method,
218
- email: email,
219
- )
220
- end
221
-
222
- ##
223
- # Provide a user friendly representation
224
- def to_s
225
- values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
226
- "<Twilio.Preview.BulkExports.ExportConfigurationInstance #{values}>"
227
- end
228
- end
229
- end
230
- end
231
- end
232
- end
@@ -1,37 +0,0 @@
1
- ##
2
- # This code was generated by
3
- # \ / _ _ _| _ _
4
- # | (_)\/(_)(_|\/| |(/_ v1.0.0
5
- # / /
6
-
7
- module Twilio
8
- module REST
9
- class Preview
10
- class HostedNumbers < Version
11
- ##
12
- # Initialize the HostedNumbers version of Preview
13
- def initialize(domain)
14
- super
15
- @version = 'HostedNumbers'
16
- @hosted_number_orders = nil
17
- end
18
-
19
- def hosted_number_orders(sid=:unset)
20
- if sid.nil?
21
- raise ArgumentError, 'sid cannot be nil'
22
- elsif sid == :unset
23
- @hosted_number_orders ||= HostedNumberOrderList.new self
24
- else
25
- HostedNumberOrderContext.new(self, sid)
26
- end
27
- end
28
-
29
- ##
30
- # Provide a user friendly representation
31
- def to_s
32
- '<Twilio::REST::Preview::HostedNumbers>'
33
- end
34
- end
35
- end
36
- end
37
- end
@@ -1,539 +0,0 @@
1
- ##
2
- # This code was generated by
3
- # \ / _ _ _| _ _
4
- # | (_)\/(_)(_|\/| |(/_ v1.0.0
5
- # / /
6
-
7
- module Twilio
8
- module REST
9
- class Preview < Domain
10
- class HostedNumbers < Version
11
- class HostedNumberOrderList < ListResource
12
- ##
13
- # Initialize the HostedNumberOrderList
14
- # @param [Version] version Version that contains the resource
15
- # @return [HostedNumberOrderList] HostedNumberOrderList
16
- def initialize(version)
17
- super(version)
18
-
19
- # Path Solution
20
- @solution = {}
21
- @uri = "/HostedNumberOrders"
22
- end
23
-
24
- ##
25
- # Lists HostedNumberOrderInstance records from the API as a list.
26
- # Unlike stream(), this operation is eager and will load `limit` records into
27
- # memory before returning.
28
- # @param [hosted_number_order.Status] status The Status of this HostedNumberOrder.
29
- # One of `received`, `pending-verification`, `verified`, `pending-loa`,
30
- # `carrier-processing`, `testing`, `completed`, `failed`, or `action-required`.
31
- # @param [String] phone_number An E164 formatted phone number hosted by this
32
- # HostedNumberOrder.
33
- # @param [String] incoming_phone_number_sid A 34 character string that uniquely
34
- # identifies the IncomingPhoneNumber resource created by this HostedNumberOrder.
35
- # @param [String] friendly_name A human readable description of this resource, up
36
- # to 64 characters.
37
- # @param [String] unique_name Provides a unique and addressable name to be
38
- # assigned to this HostedNumberOrder, assigned by the developer, to be optionally
39
- # used in addition to SID.
40
- # @param [Integer] limit Upper limit for the number of records to return. stream()
41
- # guarantees to never return more than limit. Default is no limit
42
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
43
- # the default value of 50 records. If no page_size is defined
44
- # but a limit is defined, stream() will attempt to read the
45
- # limit with the most efficient page size, i.e. min(limit, 1000)
46
- # @return [Array] Array of up to limit results
47
- def list(status: :unset, phone_number: :unset, incoming_phone_number_sid: :unset, friendly_name: :unset, unique_name: :unset, limit: nil, page_size: nil)
48
- self.stream(
49
- status: status,
50
- phone_number: phone_number,
51
- incoming_phone_number_sid: incoming_phone_number_sid,
52
- friendly_name: friendly_name,
53
- unique_name: unique_name,
54
- limit: limit,
55
- page_size: page_size
56
- ).entries
57
- end
58
-
59
- ##
60
- # Streams HostedNumberOrderInstance records from the API as an Enumerable.
61
- # This operation lazily loads records as efficiently as possible until the limit
62
- # is reached.
63
- # @param [hosted_number_order.Status] status The Status of this HostedNumberOrder.
64
- # One of `received`, `pending-verification`, `verified`, `pending-loa`,
65
- # `carrier-processing`, `testing`, `completed`, `failed`, or `action-required`.
66
- # @param [String] phone_number An E164 formatted phone number hosted by this
67
- # HostedNumberOrder.
68
- # @param [String] incoming_phone_number_sid A 34 character string that uniquely
69
- # identifies the IncomingPhoneNumber resource created by this HostedNumberOrder.
70
- # @param [String] friendly_name A human readable description of this resource, up
71
- # to 64 characters.
72
- # @param [String] unique_name Provides a unique and addressable name to be
73
- # assigned to this HostedNumberOrder, assigned by the developer, to be optionally
74
- # used in addition to SID.
75
- # @param [Integer] limit Upper limit for the number of records to return. stream()
76
- # guarantees to never return more than limit. Default is no limit
77
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
78
- # the default value of 50 records. If no page_size is defined
79
- # but a limit is defined, stream() will attempt to read the
80
- # limit with the most efficient page size, i.e. min(limit, 1000)
81
- # @return [Enumerable] Enumerable that will yield up to limit results
82
- def stream(status: :unset, phone_number: :unset, incoming_phone_number_sid: :unset, friendly_name: :unset, unique_name: :unset, limit: nil, page_size: nil)
83
- limits = @version.read_limits(limit, page_size)
84
-
85
- page = self.page(
86
- status: status,
87
- phone_number: phone_number,
88
- incoming_phone_number_sid: incoming_phone_number_sid,
89
- friendly_name: friendly_name,
90
- unique_name: unique_name,
91
- page_size: limits[:page_size],
92
- )
93
-
94
- @version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
95
- end
96
-
97
- ##
98
- # When passed a block, yields HostedNumberOrderInstance records from the API.
99
- # This operation lazily loads records as efficiently as possible until the limit
100
- # is reached.
101
- # @param [hosted_number_order.Status] status The Status of this HostedNumberOrder.
102
- # One of `received`, `pending-verification`, `verified`, `pending-loa`,
103
- # `carrier-processing`, `testing`, `completed`, `failed`, or `action-required`.
104
- # @param [String] phone_number An E164 formatted phone number hosted by this
105
- # HostedNumberOrder.
106
- # @param [String] incoming_phone_number_sid A 34 character string that uniquely
107
- # identifies the IncomingPhoneNumber resource created by this HostedNumberOrder.
108
- # @param [String] friendly_name A human readable description of this resource, up
109
- # to 64 characters.
110
- # @param [String] unique_name Provides a unique and addressable name to be
111
- # assigned to this HostedNumberOrder, assigned by the developer, to be optionally
112
- # used in addition to SID.
113
- # @param [Integer] limit Upper limit for the number of records to return. stream()
114
- # guarantees to never return more than limit. Default is no limit
115
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
116
- # the default value of 50 records. If no page_size is defined
117
- # but a limit is defined, stream() will attempt to read the
118
- # limit with the most efficient page size, i.e. min(limit, 1000)
119
- def each
120
- limits = @version.read_limits
121
-
122
- page = self.page(
123
- page_size: limits[:page_size],
124
- )
125
-
126
- @version.stream(page,
127
- limit: limits[:limit],
128
- page_limit: limits[:page_limit]).each {|x| yield x}
129
- end
130
-
131
- ##
132
- # Retrieve a single page of HostedNumberOrderInstance records from the API.
133
- # Request is executed immediately.
134
- # @param [hosted_number_order.Status] status The Status of this HostedNumberOrder.
135
- # One of `received`, `pending-verification`, `verified`, `pending-loa`,
136
- # `carrier-processing`, `testing`, `completed`, `failed`, or `action-required`.
137
- # @param [String] phone_number An E164 formatted phone number hosted by this
138
- # HostedNumberOrder.
139
- # @param [String] incoming_phone_number_sid A 34 character string that uniquely
140
- # identifies the IncomingPhoneNumber resource created by this HostedNumberOrder.
141
- # @param [String] friendly_name A human readable description of this resource, up
142
- # to 64 characters.
143
- # @param [String] unique_name Provides a unique and addressable name to be
144
- # assigned to this HostedNumberOrder, assigned by the developer, to be optionally
145
- # used in addition to SID.
146
- # @param [String] page_token PageToken provided by the API
147
- # @param [Integer] page_number Page Number, this value is simply for client state
148
- # @param [Integer] page_size Number of records to return, defaults to 50
149
- # @return [Page] Page of HostedNumberOrderInstance
150
- def page(status: :unset, phone_number: :unset, incoming_phone_number_sid: :unset, friendly_name: :unset, unique_name: :unset, page_token: :unset, page_number: :unset, page_size: :unset)
151
- params = Twilio::Values.of({
152
- 'Status' => status,
153
- 'PhoneNumber' => phone_number,
154
- 'IncomingPhoneNumberSid' => incoming_phone_number_sid,
155
- 'FriendlyName' => friendly_name,
156
- 'UniqueName' => unique_name,
157
- 'PageToken' => page_token,
158
- 'Page' => page_number,
159
- 'PageSize' => page_size,
160
- })
161
- response = @version.page(
162
- 'GET',
163
- @uri,
164
- params
165
- )
166
- HostedNumberOrderPage.new(@version, response, @solution)
167
- end
168
-
169
- ##
170
- # Retrieve a single page of HostedNumberOrderInstance records from the API.
171
- # Request is executed immediately.
172
- # @param [String] target_url API-generated URL for the requested results page
173
- # @return [Page] Page of HostedNumberOrderInstance
174
- def get_page(target_url)
175
- response = @version.domain.request(
176
- 'GET',
177
- target_url
178
- )
179
- HostedNumberOrderPage.new(@version, response, @solution)
180
- end
181
-
182
- ##
183
- # Retrieve a single page of HostedNumberOrderInstance records from the API.
184
- # Request is executed immediately.
185
- # @param [String] address_sid A 34 character string that uniquely identifies the
186
- # Address resource that represents the address of the owner of this phone number.
187
- # @param [String] phone_number An E164 formatted phone number hosted by this
188
- # HostedNumberOrder.
189
- # @param [String] iso_country The ISO country code of the phone_number.
190
- # @param [Boolean] sms_capability Used to specify that the SMS capability will be
191
- # hosted on Twilio's platform.
192
- # @param [String] email Email of the owner of this phone number that is being
193
- # hosted.
194
- # @param [String] account_sid Optional. The unique SID identifier of the Account
195
- # or Sub-Account to create this HostedNumberOrder on.
196
- # @param [String] friendly_name Optional. A human readable description of this
197
- # resource, up to 64 characters.
198
- # @param [String] unique_name Optional. Provides a unique and addressable name to
199
- # be assigned to this HostedNumberOrder, assigned by the developer, to be
200
- # optionally used in addition to SID.
201
- # @param [String] cc_emails Optional. A list of emails that LOA document for this
202
- # HostedNumberOrder will be carbon copied to.
203
- # @param [String] sms_url Optional. The SMS URL attached to the
204
- # IncomingPhoneNumber resource.
205
- # @param [String] sms_method Optional. The SMS Method attached to the
206
- # IncomingPhoneNumber resource.
207
- # @param [String] sms_fallback_url Optional. The SMS Fallback URL attached to the
208
- # IncomingPhoneNumber resource.
209
- # @param [String] sms_fallback_method Optional. The SMS Fallback Method attached
210
- # to the IncomingPhoneNumber resource.
211
- # @param [String] status_callback_url Optional. The Status Callback URL attached
212
- # to the IncomingPhoneNumber resource.
213
- # @param [String] status_callback_method Optional. The Status Callback Method
214
- # attached to the IncomingPhoneNumber resource.
215
- # @return [HostedNumberOrderInstance] Newly created HostedNumberOrderInstance
216
- def create(address_sid: nil, phone_number: nil, iso_country: nil, sms_capability: nil, email: nil, account_sid: :unset, friendly_name: :unset, unique_name: :unset, cc_emails: :unset, sms_url: :unset, sms_method: :unset, sms_fallback_url: :unset, sms_fallback_method: :unset, status_callback_url: :unset, status_callback_method: :unset)
217
- data = Twilio::Values.of({
218
- 'AddressSid' => address_sid,
219
- 'PhoneNumber' => phone_number,
220
- 'IsoCountry' => iso_country,
221
- 'SmsCapability' => sms_capability,
222
- 'Email' => email,
223
- 'AccountSid' => account_sid,
224
- 'FriendlyName' => friendly_name,
225
- 'UniqueName' => unique_name,
226
- 'CcEmails' => cc_emails,
227
- 'SmsUrl' => sms_url,
228
- 'SmsMethod' => sms_method,
229
- 'SmsFallbackUrl' => sms_fallback_url,
230
- 'SmsFallbackMethod' => sms_fallback_method,
231
- 'StatusCallbackUrl' => status_callback_url,
232
- 'StatusCallbackMethod' => status_callback_method,
233
- })
234
-
235
- payload = @version.create(
236
- 'POST',
237
- @uri,
238
- data: data
239
- )
240
-
241
- HostedNumberOrderInstance.new(
242
- @version,
243
- payload,
244
- )
245
- end
246
-
247
- ##
248
- # Provide a user friendly representation
249
- def to_s
250
- '#<Twilio.Preview.HostedNumbers.HostedNumberOrderList>'
251
- end
252
- end
253
-
254
- class HostedNumberOrderPage < Page
255
- ##
256
- # Initialize the HostedNumberOrderPage
257
- # @param [Version] version Version that contains the resource
258
- # @param [Response] response Response from the API
259
- # @param [Hash] solution Path solution for the resource
260
- # @return [HostedNumberOrderPage] HostedNumberOrderPage
261
- def initialize(version, response, solution)
262
- super(version, response)
263
-
264
- # Path Solution
265
- @solution = solution
266
- end
267
-
268
- ##
269
- # Build an instance of HostedNumberOrderInstance
270
- # @param [Hash] payload Payload response from the API
271
- # @return [HostedNumberOrderInstance] HostedNumberOrderInstance
272
- def get_instance(payload)
273
- HostedNumberOrderInstance.new(
274
- @version,
275
- payload,
276
- )
277
- end
278
-
279
- ##
280
- # Provide a user friendly representation
281
- def to_s
282
- '<Twilio.Preview.HostedNumbers.HostedNumberOrderPage>'
283
- end
284
- end
285
-
286
- class HostedNumberOrderContext < InstanceContext
287
- ##
288
- # Initialize the HostedNumberOrderContext
289
- # @param [Version] version Version that contains the resource
290
- # @param [String] sid A 34 character string that uniquely identifies this
291
- # HostedNumberOrder.
292
- # @return [HostedNumberOrderContext] HostedNumberOrderContext
293
- def initialize(version, sid)
294
- super(version)
295
-
296
- # Path Solution
297
- @solution = {
298
- sid: sid,
299
- }
300
- @uri = "/HostedNumberOrders/#{@solution[:sid]}"
301
- end
302
-
303
- ##
304
- # Fetch a HostedNumberOrderInstance
305
- # @return [HostedNumberOrderInstance] Fetched HostedNumberOrderInstance
306
- def fetch
307
- params = Twilio::Values.of({})
308
-
309
- payload = @version.fetch(
310
- 'GET',
311
- @uri,
312
- params,
313
- )
314
-
315
- HostedNumberOrderInstance.new(
316
- @version,
317
- payload,
318
- sid: @solution[:sid],
319
- )
320
- end
321
-
322
- ##
323
- # Deletes the HostedNumberOrderInstance
324
- # @return [Boolean] true if delete succeeds, true otherwise
325
- def delete
326
- @version.delete('delete', @uri)
327
- end
328
-
329
- ##
330
- # Update the HostedNumberOrderInstance
331
- # @param [String] friendly_name A human readable description of this resource, up
332
- # to 64 characters.
333
- # @param [String] unique_name Provides a unique and addressable name to be
334
- # assigned to this HostedNumberOrder, assigned by the developer, to be optionally
335
- # used in addition to SID.
336
- # @param [String] email Email of the owner of this phone number that is being
337
- # hosted.
338
- # @param [String] cc_emails Optional. A list of emails that LOA document for this
339
- # HostedNumberOrder will be carbon copied to.
340
- # @param [hosted_number_order.Status] status The Status of this HostedNumberOrder.
341
- # User can only update this to `pending-loa` or `pending-verification`.
342
- # @param [String] verification_code A verification code that is given to the user
343
- # via a phone call to the phone number that is being hosted.
344
- # @return [HostedNumberOrderInstance] Updated HostedNumberOrderInstance
345
- def update(friendly_name: :unset, unique_name: :unset, email: :unset, cc_emails: :unset, status: :unset, verification_code: :unset)
346
- data = Twilio::Values.of({
347
- 'FriendlyName' => friendly_name,
348
- 'UniqueName' => unique_name,
349
- 'Email' => email,
350
- 'CcEmails' => cc_emails,
351
- 'Status' => status,
352
- 'VerificationCode' => verification_code,
353
- })
354
-
355
- payload = @version.update(
356
- 'POST',
357
- @uri,
358
- data: data,
359
- )
360
-
361
- HostedNumberOrderInstance.new(
362
- @version,
363
- payload,
364
- sid: @solution[:sid],
365
- )
366
- end
367
-
368
- ##
369
- # Provide a user friendly representation
370
- def to_s
371
- context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
372
- "#<Twilio.Preview.HostedNumbers.HostedNumberOrderContext #{context}>"
373
- end
374
- end
375
-
376
- class HostedNumberOrderInstance < InstanceResource
377
- ##
378
- # Initialize the HostedNumberOrderInstance
379
- # @param [Version] version Version that contains the resource
380
- # @param [Hash] payload payload that contains response from Twilio
381
- # @param [String] sid A 34 character string that uniquely identifies this
382
- # HostedNumberOrder.
383
- # @return [HostedNumberOrderInstance] HostedNumberOrderInstance
384
- def initialize(version, payload, sid: nil)
385
- super(version)
386
-
387
- # Marshaled Properties
388
- @properties = {
389
- 'sid' => payload['sid'],
390
- 'account_sid' => payload['account_sid'],
391
- 'incoming_phone_number_sid' => payload['incoming_phone_number_sid'],
392
- 'address_sid' => payload['address_sid'],
393
- 'signing_document_sid' => payload['signing_document_sid'],
394
- 'phone_number' => payload['phone_number'],
395
- 'capabilities' => payload['capabilities'],
396
- 'friendly_name' => payload['friendly_name'],
397
- 'unique_name' => payload['unique_name'],
398
- 'status' => payload['status'],
399
- 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
400
- 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
401
- 'email' => payload['email'],
402
- 'cc_emails' => payload['cc_emails'],
403
- 'url' => payload['url'],
404
- }
405
-
406
- # Context
407
- @instance_context = nil
408
- @params = {
409
- 'sid' => sid || @properties['sid'],
410
- }
411
- end
412
-
413
- ##
414
- # Generate an instance context for the instance, the context is capable of
415
- # performing various actions. All instance actions are proxied to the context
416
- # @param [Version] version Version that contains the resource
417
- # @return [HostedNumberOrderContext] HostedNumberOrderContext for this HostedNumberOrderInstance
418
- def context
419
- unless @instance_context
420
- @instance_context = HostedNumberOrderContext.new(
421
- @version,
422
- @params['sid'],
423
- )
424
- end
425
- @instance_context
426
- end
427
-
428
- def sid
429
- @properties['sid']
430
- end
431
-
432
- def account_sid
433
- @properties['account_sid']
434
- end
435
-
436
- def incoming_phone_number_sid
437
- @properties['incoming_phone_number_sid']
438
- end
439
-
440
- def address_sid
441
- @properties['address_sid']
442
- end
443
-
444
- def signing_document_sid
445
- @properties['signing_document_sid']
446
- end
447
-
448
- def phone_number
449
- @properties['phone_number']
450
- end
451
-
452
- def capabilities
453
- @properties['capabilities']
454
- end
455
-
456
- def friendly_name
457
- @properties['friendly_name']
458
- end
459
-
460
- def unique_name
461
- @properties['unique_name']
462
- end
463
-
464
- def status
465
- @properties['status']
466
- end
467
-
468
- def date_created
469
- @properties['date_created']
470
- end
471
-
472
- def date_updated
473
- @properties['date_updated']
474
- end
475
-
476
- def email
477
- @properties['email']
478
- end
479
-
480
- def cc_emails
481
- @properties['cc_emails']
482
- end
483
-
484
- def url
485
- @properties['url']
486
- end
487
-
488
- ##
489
- # Fetch a HostedNumberOrderInstance
490
- # @return [HostedNumberOrderInstance] Fetched HostedNumberOrderInstance
491
- def fetch
492
- context.fetch
493
- end
494
-
495
- ##
496
- # Deletes the HostedNumberOrderInstance
497
- # @return [Boolean] true if delete succeeds, true otherwise
498
- def delete
499
- context.delete
500
- end
501
-
502
- ##
503
- # Update the HostedNumberOrderInstance
504
- # @param [String] friendly_name A human readable description of this resource, up
505
- # to 64 characters.
506
- # @param [String] unique_name Provides a unique and addressable name to be
507
- # assigned to this HostedNumberOrder, assigned by the developer, to be optionally
508
- # used in addition to SID.
509
- # @param [String] email Email of the owner of this phone number that is being
510
- # hosted.
511
- # @param [String] cc_emails Optional. A list of emails that LOA document for this
512
- # HostedNumberOrder will be carbon copied to.
513
- # @param [hosted_number_order.Status] status The Status of this HostedNumberOrder.
514
- # User can only update this to `pending-loa` or `pending-verification`.
515
- # @param [String] verification_code A verification code that is given to the user
516
- # via a phone call to the phone number that is being hosted.
517
- # @return [HostedNumberOrderInstance] Updated HostedNumberOrderInstance
518
- def update(friendly_name: :unset, unique_name: :unset, email: :unset, cc_emails: :unset, status: :unset, verification_code: :unset)
519
- context.update(
520
- friendly_name: friendly_name,
521
- unique_name: unique_name,
522
- email: email,
523
- cc_emails: cc_emails,
524
- status: status,
525
- verification_code: verification_code,
526
- )
527
- end
528
-
529
- ##
530
- # Provide a user friendly representation
531
- def to_s
532
- values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
533
- "<Twilio.Preview.HostedNumbers.HostedNumberOrderInstance #{values}>"
534
- end
535
- end
536
- end
537
- end
538
- end
539
- end