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,321 +0,0 @@
1
- ##
2
- # This code was generated by
3
- # \ / _ _ _| _ _
4
- # | (_)\/(_)(_|\/| |(/_ v1.0.0
5
- # / /
6
-
7
- module Twilio
8
- module REST
9
- class Fax < Domain
10
- class V1 < Version
11
- class FaxContext < InstanceContext
12
- class FaxMediaList < ListResource
13
- ##
14
- # Initialize the FaxMediaList
15
- # @param [Version] version Version that contains the resource
16
- # @param [String] fax_sid The unique SID identifier of the fax for which this
17
- # media is associated.
18
- # @return [FaxMediaList] FaxMediaList
19
- def initialize(version, fax_sid: nil)
20
- super(version)
21
-
22
- # Path Solution
23
- @solution = {
24
- fax_sid: fax_sid
25
- }
26
- @uri = "/Faxes/#{@solution[:fax_sid]}/Media"
27
- end
28
-
29
- ##
30
- # Lists FaxMediaInstance records from the API as a list.
31
- # Unlike stream(), this operation is eager and will load `limit` records into
32
- # memory before returning.
33
- # @param [Integer] limit Upper limit for the number of records to return. stream()
34
- # guarantees to never return more than limit. Default is no limit
35
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
36
- # the default value of 50 records. If no page_size is defined
37
- # but a limit is defined, stream() will attempt to read the
38
- # limit with the most efficient page size, i.e. min(limit, 1000)
39
- # @return [Array] Array of up to limit results
40
- def list(limit: nil, page_size: nil)
41
- self.stream(
42
- limit: limit,
43
- page_size: page_size
44
- ).entries
45
- end
46
-
47
- ##
48
- # Streams FaxMediaInstance records from the API as an Enumerable.
49
- # This operation lazily loads records as efficiently as possible until the limit
50
- # is reached.
51
- # @param [Integer] limit Upper limit for the number of records to return. stream()
52
- # guarantees to never return more than limit. Default is no limit
53
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
54
- # the default value of 50 records. If no page_size is defined
55
- # but a limit is defined, stream() will attempt to read the
56
- # limit with the most efficient page size, i.e. min(limit, 1000)
57
- # @return [Enumerable] Enumerable that will yield up to limit results
58
- def stream(limit: nil, page_size: nil)
59
- limits = @version.read_limits(limit, page_size)
60
-
61
- page = self.page(
62
- page_size: limits[:page_size],
63
- )
64
-
65
- @version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
66
- end
67
-
68
- ##
69
- # When passed a block, yields FaxMediaInstance records from the API.
70
- # This operation lazily loads records as efficiently as possible until the limit
71
- # is reached.
72
- # @param [Integer] limit Upper limit for the number of records to return. stream()
73
- # guarantees to never return more than limit. Default is no limit
74
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
75
- # the default value of 50 records. If no page_size is defined
76
- # but a limit is defined, stream() will attempt to read the
77
- # limit with the most efficient page size, i.e. min(limit, 1000)
78
- def each
79
- limits = @version.read_limits
80
-
81
- page = self.page(
82
- page_size: limits[:page_size],
83
- )
84
-
85
- @version.stream(page,
86
- limit: limits[:limit],
87
- page_limit: limits[:page_limit]).each {|x| yield x}
88
- end
89
-
90
- ##
91
- # Retrieve a single page of FaxMediaInstance records from the API.
92
- # Request is executed immediately.
93
- # @param [String] page_token PageToken provided by the API
94
- # @param [Integer] page_number Page Number, this value is simply for client state
95
- # @param [Integer] page_size Number of records to return, defaults to 50
96
- # @return [Page] Page of FaxMediaInstance
97
- def page(page_token: :unset, page_number: :unset, page_size: :unset)
98
- params = Twilio::Values.of({
99
- 'PageToken' => page_token,
100
- 'Page' => page_number,
101
- 'PageSize' => page_size,
102
- })
103
- response = @version.page(
104
- 'GET',
105
- @uri,
106
- params
107
- )
108
- FaxMediaPage.new(@version, response, @solution)
109
- end
110
-
111
- ##
112
- # Retrieve a single page of FaxMediaInstance records from the API.
113
- # Request is executed immediately.
114
- # @param [String] target_url API-generated URL for the requested results page
115
- # @return [Page] Page of FaxMediaInstance
116
- def get_page(target_url)
117
- response = @version.domain.request(
118
- 'GET',
119
- target_url
120
- )
121
- FaxMediaPage.new(@version, response, @solution)
122
- end
123
-
124
- ##
125
- # Provide a user friendly representation
126
- def to_s
127
- '#<Twilio.Fax.V1.FaxMediaList>'
128
- end
129
- end
130
-
131
- class FaxMediaPage < Page
132
- ##
133
- # Initialize the FaxMediaPage
134
- # @param [Version] version Version that contains the resource
135
- # @param [Response] response Response from the API
136
- # @param [Hash] solution Path solution for the resource
137
- # @param [String] fax_sid The unique SID identifier of the fax for which this
138
- # media is associated.
139
- # @return [FaxMediaPage] FaxMediaPage
140
- def initialize(version, response, solution)
141
- super(version, response)
142
-
143
- # Path Solution
144
- @solution = solution
145
- end
146
-
147
- ##
148
- # Build an instance of FaxMediaInstance
149
- # @param [Hash] payload Payload response from the API
150
- # @return [FaxMediaInstance] FaxMediaInstance
151
- def get_instance(payload)
152
- FaxMediaInstance.new(
153
- @version,
154
- payload,
155
- fax_sid: @solution[:fax_sid],
156
- )
157
- end
158
-
159
- ##
160
- # Provide a user friendly representation
161
- def to_s
162
- '<Twilio.Fax.V1.FaxMediaPage>'
163
- end
164
- end
165
-
166
- class FaxMediaContext < InstanceContext
167
- ##
168
- # Initialize the FaxMediaContext
169
- # @param [Version] version Version that contains the resource
170
- # @param [String] fax_sid The unique SID identifier of the fax.
171
- # @param [String] sid A 34 character string that uniquely identifies this fax
172
- # media.
173
- # @return [FaxMediaContext] FaxMediaContext
174
- def initialize(version, fax_sid, sid)
175
- super(version)
176
-
177
- # Path Solution
178
- @solution = {
179
- fax_sid: fax_sid,
180
- sid: sid,
181
- }
182
- @uri = "/Faxes/#{@solution[:fax_sid]}/Media/#{@solution[:sid]}"
183
- end
184
-
185
- ##
186
- # Fetch a FaxMediaInstance
187
- # @return [FaxMediaInstance] Fetched FaxMediaInstance
188
- def fetch
189
- params = Twilio::Values.of({})
190
-
191
- payload = @version.fetch(
192
- 'GET',
193
- @uri,
194
- params,
195
- )
196
-
197
- FaxMediaInstance.new(
198
- @version,
199
- payload,
200
- fax_sid: @solution[:fax_sid],
201
- sid: @solution[:sid],
202
- )
203
- end
204
-
205
- ##
206
- # Deletes the FaxMediaInstance
207
- # @return [Boolean] true if delete succeeds, true otherwise
208
- def delete
209
- @version.delete('delete', @uri)
210
- end
211
-
212
- ##
213
- # Provide a user friendly representation
214
- def to_s
215
- context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
216
- "#<Twilio.Fax.V1.FaxMediaContext #{context}>"
217
- end
218
- end
219
-
220
- class FaxMediaInstance < InstanceResource
221
- ##
222
- # Initialize the FaxMediaInstance
223
- # @param [Version] version Version that contains the resource
224
- # @param [Hash] payload payload that contains response from Twilio
225
- # @param [String] fax_sid The unique SID identifier of the fax for which this
226
- # media is associated.
227
- # @param [String] sid A 34 character string that uniquely identifies this fax
228
- # media.
229
- # @return [FaxMediaInstance] FaxMediaInstance
230
- def initialize(version, payload, fax_sid: nil, sid: nil)
231
- super(version)
232
-
233
- # Marshaled Properties
234
- @properties = {
235
- 'sid' => payload['sid'],
236
- 'account_sid' => payload['account_sid'],
237
- 'fax_sid' => payload['fax_sid'],
238
- 'content_type' => payload['content_type'],
239
- 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
240
- 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
241
- 'url' => payload['url'],
242
- }
243
-
244
- # Context
245
- @instance_context = nil
246
- @params = {
247
- 'fax_sid' => fax_sid,
248
- 'sid' => sid || @properties['sid'],
249
- }
250
- end
251
-
252
- ##
253
- # Generate an instance context for the instance, the context is capable of
254
- # performing various actions. All instance actions are proxied to the context
255
- # @param [Version] version Version that contains the resource
256
- # @return [FaxMediaContext] FaxMediaContext for this FaxMediaInstance
257
- def context
258
- unless @instance_context
259
- @instance_context = FaxMediaContext.new(
260
- @version,
261
- @params['fax_sid'],
262
- @params['sid'],
263
- )
264
- end
265
- @instance_context
266
- end
267
-
268
- def sid
269
- @properties['sid']
270
- end
271
-
272
- def account_sid
273
- @properties['account_sid']
274
- end
275
-
276
- def fax_sid
277
- @properties['fax_sid']
278
- end
279
-
280
- def content_type
281
- @properties['content_type']
282
- end
283
-
284
- def date_created
285
- @properties['date_created']
286
- end
287
-
288
- def date_updated
289
- @properties['date_updated']
290
- end
291
-
292
- def url
293
- @properties['url']
294
- end
295
-
296
- ##
297
- # Fetch a FaxMediaInstance
298
- # @return [FaxMediaInstance] Fetched FaxMediaInstance
299
- def fetch
300
- context.fetch
301
- end
302
-
303
- ##
304
- # Deletes the FaxMediaInstance
305
- # @return [Boolean] true if delete succeeds, true otherwise
306
- def delete
307
- context.delete
308
- end
309
-
310
- ##
311
- # Provide a user friendly representation
312
- def to_s
313
- values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
314
- "<Twilio.Fax.V1.FaxMediaInstance #{values}>"
315
- end
316
- end
317
- end
318
- end
319
- end
320
- end
321
- end
@@ -1,40 +0,0 @@
1
- ##
2
- # This code was generated by
3
- # \ / _ _ _| _ _
4
- # | (_)\/(_)(_|\/| |(/_ v1.0.0
5
- # / /
6
-
7
- module Twilio
8
- module REST
9
- class Messaging < Domain
10
- ##
11
- # Initialize the Messaging Domain
12
- def initialize(twilio)
13
- super
14
-
15
- @base_url = 'https://messaging.twilio.com'
16
- @host = 'messaging.twilio.com'
17
- @port = 443
18
-
19
- # Versions
20
- @v1 = nil
21
- end
22
-
23
- ##
24
- # Version v1 of messaging
25
- def v1
26
- @v1 ||= V1.new self
27
- end
28
-
29
- def services(sid=:unset)
30
- self.v1.services(sid)
31
- end
32
-
33
- ##
34
- # Provide a user friendly representation
35
- def to_s
36
- '#<Twilio::REST::Messaging>'
37
- end
38
- end
39
- end
40
- 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 Messaging
10
- class V1 < Version
11
- ##
12
- # Initialize the V1 version of Messaging
13
- def initialize(domain)
14
- super
15
- @version = 'v1'
16
- @services = nil
17
- end
18
-
19
- def services(sid=:unset)
20
- if sid.nil?
21
- raise ArgumentError, 'sid cannot be nil'
22
- elsif sid == :unset
23
- @services ||= ServiceList.new self
24
- else
25
- ServiceContext.new(self, sid)
26
- end
27
- end
28
-
29
- ##
30
- # Provide a user friendly representation
31
- def to_s
32
- '<Twilio::REST::Messaging::V1>'
33
- end
34
- end
35
- end
36
- end
37
- end
@@ -1,604 +0,0 @@
1
- ##
2
- # This code was generated by
3
- # \ / _ _ _| _ _
4
- # | (_)\/(_)(_|\/| |(/_ v1.0.0
5
- # / /
6
-
7
- module Twilio
8
- module REST
9
- class Messaging < Domain
10
- class V1 < Version
11
- class ServiceList < ListResource
12
- ##
13
- # Initialize the ServiceList
14
- # @param [Version] version Version that contains the resource
15
- # @return [ServiceList] ServiceList
16
- def initialize(version)
17
- super(version)
18
-
19
- # Path Solution
20
- @solution = {}
21
- @uri = "/Services"
22
- end
23
-
24
- ##
25
- # Retrieve a single page of ServiceInstance records from the API.
26
- # Request is executed immediately.
27
- # @param [String] friendly_name The friendly_name
28
- # @param [String] inbound_request_url The inbound_request_url
29
- # @param [String] inbound_method The inbound_method
30
- # @param [String] fallback_url The fallback_url
31
- # @param [String] fallback_method The fallback_method
32
- # @param [String] status_callback The status_callback
33
- # @param [Boolean] sticky_sender The sticky_sender
34
- # @param [Boolean] mms_converter The mms_converter
35
- # @param [Boolean] smart_encoding The smart_encoding
36
- # @param [service.ScanMessageContent] scan_message_content The
37
- # scan_message_content
38
- # @param [Boolean] fallback_to_long_code The fallback_to_long_code
39
- # @param [Boolean] area_code_geomatch The area_code_geomatch
40
- # @param [String] validity_period The validity_period
41
- # @param [Boolean] synchronous_validation The synchronous_validation
42
- # @return [ServiceInstance] Newly created ServiceInstance
43
- def create(friendly_name: nil, inbound_request_url: :unset, inbound_method: :unset, fallback_url: :unset, fallback_method: :unset, status_callback: :unset, sticky_sender: :unset, mms_converter: :unset, smart_encoding: :unset, scan_message_content: :unset, fallback_to_long_code: :unset, area_code_geomatch: :unset, validity_period: :unset, synchronous_validation: :unset)
44
- data = Twilio::Values.of({
45
- 'FriendlyName' => friendly_name,
46
- 'InboundRequestUrl' => inbound_request_url,
47
- 'InboundMethod' => inbound_method,
48
- 'FallbackUrl' => fallback_url,
49
- 'FallbackMethod' => fallback_method,
50
- 'StatusCallback' => status_callback,
51
- 'StickySender' => sticky_sender,
52
- 'MmsConverter' => mms_converter,
53
- 'SmartEncoding' => smart_encoding,
54
- 'ScanMessageContent' => scan_message_content,
55
- 'FallbackToLongCode' => fallback_to_long_code,
56
- 'AreaCodeGeomatch' => area_code_geomatch,
57
- 'ValidityPeriod' => validity_period,
58
- 'SynchronousValidation' => synchronous_validation,
59
- })
60
-
61
- payload = @version.create(
62
- 'POST',
63
- @uri,
64
- data: data
65
- )
66
-
67
- ServiceInstance.new(
68
- @version,
69
- payload,
70
- )
71
- end
72
-
73
- ##
74
- # Lists ServiceInstance records from the API as a list.
75
- # Unlike stream(), this operation is eager and will load `limit` records into
76
- # memory before returning.
77
- # @param [Integer] limit Upper limit for the number of records to return. stream()
78
- # guarantees to never return more than limit. Default is no limit
79
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
80
- # the default value of 50 records. If no page_size is defined
81
- # but a limit is defined, stream() will attempt to read the
82
- # limit with the most efficient page size, i.e. min(limit, 1000)
83
- # @return [Array] Array of up to limit results
84
- def list(limit: nil, page_size: nil)
85
- self.stream(
86
- limit: limit,
87
- page_size: page_size
88
- ).entries
89
- end
90
-
91
- ##
92
- # Streams ServiceInstance records from the API as an Enumerable.
93
- # This operation lazily loads records as efficiently as possible until the limit
94
- # is reached.
95
- # @param [Integer] limit Upper limit for the number of records to return. stream()
96
- # guarantees to never return more than limit. Default is no limit
97
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
98
- # the default value of 50 records. If no page_size is defined
99
- # but a limit is defined, stream() will attempt to read the
100
- # limit with the most efficient page size, i.e. min(limit, 1000)
101
- # @return [Enumerable] Enumerable that will yield up to limit results
102
- def stream(limit: nil, page_size: nil)
103
- limits = @version.read_limits(limit, page_size)
104
-
105
- page = self.page(
106
- page_size: limits[:page_size],
107
- )
108
-
109
- @version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
110
- end
111
-
112
- ##
113
- # When passed a block, yields ServiceInstance records from the API.
114
- # This operation lazily loads records as efficiently as possible until the limit
115
- # is reached.
116
- # @param [Integer] limit Upper limit for the number of records to return. stream()
117
- # guarantees to never return more than limit. Default is no limit
118
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
119
- # the default value of 50 records. If no page_size is defined
120
- # but a limit is defined, stream() will attempt to read the
121
- # limit with the most efficient page size, i.e. min(limit, 1000)
122
- def each
123
- limits = @version.read_limits
124
-
125
- page = self.page(
126
- page_size: limits[:page_size],
127
- )
128
-
129
- @version.stream(page,
130
- limit: limits[:limit],
131
- page_limit: limits[:page_limit]).each {|x| yield x}
132
- end
133
-
134
- ##
135
- # Retrieve a single page of ServiceInstance records from the API.
136
- # Request is executed immediately.
137
- # @param [String] page_token PageToken provided by the API
138
- # @param [Integer] page_number Page Number, this value is simply for client state
139
- # @param [Integer] page_size Number of records to return, defaults to 50
140
- # @return [Page] Page of ServiceInstance
141
- def page(page_token: :unset, page_number: :unset, page_size: :unset)
142
- params = Twilio::Values.of({
143
- 'PageToken' => page_token,
144
- 'Page' => page_number,
145
- 'PageSize' => page_size,
146
- })
147
- response = @version.page(
148
- 'GET',
149
- @uri,
150
- params
151
- )
152
- ServicePage.new(@version, response, @solution)
153
- end
154
-
155
- ##
156
- # Retrieve a single page of ServiceInstance records from the API.
157
- # Request is executed immediately.
158
- # @param [String] target_url API-generated URL for the requested results page
159
- # @return [Page] Page of ServiceInstance
160
- def get_page(target_url)
161
- response = @version.domain.request(
162
- 'GET',
163
- target_url
164
- )
165
- ServicePage.new(@version, response, @solution)
166
- end
167
-
168
- ##
169
- # Provide a user friendly representation
170
- def to_s
171
- '#<Twilio.Messaging.V1.ServiceList>'
172
- end
173
- end
174
-
175
- class ServicePage < Page
176
- ##
177
- # Initialize the ServicePage
178
- # @param [Version] version Version that contains the resource
179
- # @param [Response] response Response from the API
180
- # @param [Hash] solution Path solution for the resource
181
- # @return [ServicePage] ServicePage
182
- def initialize(version, response, solution)
183
- super(version, response)
184
-
185
- # Path Solution
186
- @solution = solution
187
- end
188
-
189
- ##
190
- # Build an instance of ServiceInstance
191
- # @param [Hash] payload Payload response from the API
192
- # @return [ServiceInstance] ServiceInstance
193
- def get_instance(payload)
194
- ServiceInstance.new(
195
- @version,
196
- payload,
197
- )
198
- end
199
-
200
- ##
201
- # Provide a user friendly representation
202
- def to_s
203
- '<Twilio.Messaging.V1.ServicePage>'
204
- end
205
- end
206
-
207
- class ServiceContext < InstanceContext
208
- ##
209
- # Initialize the ServiceContext
210
- # @param [Version] version Version that contains the resource
211
- # @param [String] sid The sid
212
- # @return [ServiceContext] ServiceContext
213
- def initialize(version, sid)
214
- super(version)
215
-
216
- # Path Solution
217
- @solution = {
218
- sid: sid,
219
- }
220
- @uri = "/Services/#{@solution[:sid]}"
221
-
222
- # Dependents
223
- @phone_numbers = nil
224
- @short_codes = nil
225
- @alpha_senders = nil
226
- end
227
-
228
- ##
229
- # Update the ServiceInstance
230
- # @param [String] friendly_name The friendly_name
231
- # @param [String] inbound_request_url The inbound_request_url
232
- # @param [String] inbound_method The inbound_method
233
- # @param [String] fallback_url The fallback_url
234
- # @param [String] fallback_method The fallback_method
235
- # @param [String] status_callback The status_callback
236
- # @param [Boolean] sticky_sender The sticky_sender
237
- # @param [Boolean] mms_converter The mms_converter
238
- # @param [Boolean] smart_encoding The smart_encoding
239
- # @param [service.ScanMessageContent] scan_message_content The
240
- # scan_message_content
241
- # @param [Boolean] fallback_to_long_code The fallback_to_long_code
242
- # @param [Boolean] area_code_geomatch The area_code_geomatch
243
- # @param [String] validity_period The validity_period
244
- # @param [Boolean] synchronous_validation The synchronous_validation
245
- # @return [ServiceInstance] Updated ServiceInstance
246
- def update(friendly_name: :unset, inbound_request_url: :unset, inbound_method: :unset, fallback_url: :unset, fallback_method: :unset, status_callback: :unset, sticky_sender: :unset, mms_converter: :unset, smart_encoding: :unset, scan_message_content: :unset, fallback_to_long_code: :unset, area_code_geomatch: :unset, validity_period: :unset, synchronous_validation: :unset)
247
- data = Twilio::Values.of({
248
- 'FriendlyName' => friendly_name,
249
- 'InboundRequestUrl' => inbound_request_url,
250
- 'InboundMethod' => inbound_method,
251
- 'FallbackUrl' => fallback_url,
252
- 'FallbackMethod' => fallback_method,
253
- 'StatusCallback' => status_callback,
254
- 'StickySender' => sticky_sender,
255
- 'MmsConverter' => mms_converter,
256
- 'SmartEncoding' => smart_encoding,
257
- 'ScanMessageContent' => scan_message_content,
258
- 'FallbackToLongCode' => fallback_to_long_code,
259
- 'AreaCodeGeomatch' => area_code_geomatch,
260
- 'ValidityPeriod' => validity_period,
261
- 'SynchronousValidation' => synchronous_validation,
262
- })
263
-
264
- payload = @version.update(
265
- 'POST',
266
- @uri,
267
- data: data,
268
- )
269
-
270
- ServiceInstance.new(
271
- @version,
272
- payload,
273
- sid: @solution[:sid],
274
- )
275
- end
276
-
277
- ##
278
- # Fetch a ServiceInstance
279
- # @return [ServiceInstance] Fetched ServiceInstance
280
- def fetch
281
- params = Twilio::Values.of({})
282
-
283
- payload = @version.fetch(
284
- 'GET',
285
- @uri,
286
- params,
287
- )
288
-
289
- ServiceInstance.new(
290
- @version,
291
- payload,
292
- sid: @solution[:sid],
293
- )
294
- end
295
-
296
- ##
297
- # Deletes the ServiceInstance
298
- # @return [Boolean] true if delete succeeds, true otherwise
299
- def delete
300
- @version.delete('delete', @uri)
301
- end
302
-
303
- ##
304
- # Access the phone_numbers
305
- # @return [PhoneNumberList] if a(n) PhoneNumberList object was created.
306
- # @return [PhoneNumberContext] if a(n) PhoneNumberContext object was created.
307
- def phone_numbers(sid=:unset)
308
- raise ArgumentError, 'sid cannot be nil' if sid.nil?
309
-
310
- if sid != :unset
311
- return PhoneNumberContext.new(
312
- @version,
313
- @solution[:sid],
314
- sid,
315
- )
316
- end
317
-
318
- unless @phone_numbers
319
- @phone_numbers = PhoneNumberList.new(
320
- @version,
321
- service_sid: @solution[:sid],
322
- )
323
- end
324
-
325
- @phone_numbers
326
- end
327
-
328
- ##
329
- # Access the short_codes
330
- # @return [ShortCodeList] if a(n) ShortCodeList object was created.
331
- # @return [ShortCodeContext] if a(n) ShortCodeContext object was created.
332
- def short_codes(sid=:unset)
333
- raise ArgumentError, 'sid cannot be nil' if sid.nil?
334
-
335
- if sid != :unset
336
- return ShortCodeContext.new(
337
- @version,
338
- @solution[:sid],
339
- sid,
340
- )
341
- end
342
-
343
- unless @short_codes
344
- @short_codes = ShortCodeList.new(
345
- @version,
346
- service_sid: @solution[:sid],
347
- )
348
- end
349
-
350
- @short_codes
351
- end
352
-
353
- ##
354
- # Access the alpha_senders
355
- # @return [AlphaSenderList] if a(n) AlphaSenderList object was created.
356
- # @return [AlphaSenderContext] if a(n) AlphaSenderContext object was created.
357
- def alpha_senders(sid=:unset)
358
- raise ArgumentError, 'sid cannot be nil' if sid.nil?
359
-
360
- if sid != :unset
361
- return AlphaSenderContext.new(
362
- @version,
363
- @solution[:sid],
364
- sid,
365
- )
366
- end
367
-
368
- unless @alpha_senders
369
- @alpha_senders = AlphaSenderList.new(
370
- @version,
371
- service_sid: @solution[:sid],
372
- )
373
- end
374
-
375
- @alpha_senders
376
- end
377
-
378
- ##
379
- # Provide a user friendly representation
380
- def to_s
381
- context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
382
- "#<Twilio.Messaging.V1.ServiceContext #{context}>"
383
- end
384
- end
385
-
386
- class ServiceInstance < InstanceResource
387
- ##
388
- # Initialize the ServiceInstance
389
- # @param [Version] version Version that contains the resource
390
- # @param [Hash] payload payload that contains response from Twilio
391
- # @param [String] sid The sid
392
- # @return [ServiceInstance] ServiceInstance
393
- def initialize(version, payload, sid: nil)
394
- super(version)
395
-
396
- # Marshaled Properties
397
- @properties = {
398
- 'sid' => payload['sid'],
399
- 'account_sid' => payload['account_sid'],
400
- 'friendly_name' => payload['friendly_name'],
401
- 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
402
- 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
403
- 'inbound_request_url' => payload['inbound_request_url'],
404
- 'inbound_method' => payload['inbound_method'],
405
- 'fallback_url' => payload['fallback_url'],
406
- 'fallback_method' => payload['fallback_method'],
407
- 'status_callback' => payload['status_callback'],
408
- 'sticky_sender' => payload['sticky_sender'],
409
- 'mms_converter' => payload['mms_converter'],
410
- 'smart_encoding' => payload['smart_encoding'],
411
- 'scan_message_content' => payload['scan_message_content'],
412
- 'fallback_to_long_code' => payload['fallback_to_long_code'],
413
- 'area_code_geomatch' => payload['area_code_geomatch'],
414
- 'synchronous_validation' => payload['synchronous_validation'],
415
- 'validity_period' => payload['validity_period'].to_i,
416
- 'url' => payload['url'],
417
- 'links' => payload['links'],
418
- }
419
-
420
- # Context
421
- @instance_context = nil
422
- @params = {
423
- 'sid' => sid || @properties['sid'],
424
- }
425
- end
426
-
427
- ##
428
- # Generate an instance context for the instance, the context is capable of
429
- # performing various actions. All instance actions are proxied to the context
430
- # @param [Version] version Version that contains the resource
431
- # @return [ServiceContext] ServiceContext for this ServiceInstance
432
- def context
433
- unless @instance_context
434
- @instance_context = ServiceContext.new(
435
- @version,
436
- @params['sid'],
437
- )
438
- end
439
- @instance_context
440
- end
441
-
442
- def sid
443
- @properties['sid']
444
- end
445
-
446
- def account_sid
447
- @properties['account_sid']
448
- end
449
-
450
- def friendly_name
451
- @properties['friendly_name']
452
- end
453
-
454
- def date_created
455
- @properties['date_created']
456
- end
457
-
458
- def date_updated
459
- @properties['date_updated']
460
- end
461
-
462
- def inbound_request_url
463
- @properties['inbound_request_url']
464
- end
465
-
466
- def inbound_method
467
- @properties['inbound_method']
468
- end
469
-
470
- def fallback_url
471
- @properties['fallback_url']
472
- end
473
-
474
- def fallback_method
475
- @properties['fallback_method']
476
- end
477
-
478
- def status_callback
479
- @properties['status_callback']
480
- end
481
-
482
- def sticky_sender
483
- @properties['sticky_sender']
484
- end
485
-
486
- def mms_converter
487
- @properties['mms_converter']
488
- end
489
-
490
- def smart_encoding
491
- @properties['smart_encoding']
492
- end
493
-
494
- def scan_message_content
495
- @properties['scan_message_content']
496
- end
497
-
498
- def fallback_to_long_code
499
- @properties['fallback_to_long_code']
500
- end
501
-
502
- def area_code_geomatch
503
- @properties['area_code_geomatch']
504
- end
505
-
506
- def synchronous_validation
507
- @properties['synchronous_validation']
508
- end
509
-
510
- def validity_period
511
- @properties['validity_period']
512
- end
513
-
514
- def url
515
- @properties['url']
516
- end
517
-
518
- def links
519
- @properties['links']
520
- end
521
-
522
- ##
523
- # Update the ServiceInstance
524
- # @param [String] friendly_name The friendly_name
525
- # @param [String] inbound_request_url The inbound_request_url
526
- # @param [String] inbound_method The inbound_method
527
- # @param [String] fallback_url The fallback_url
528
- # @param [String] fallback_method The fallback_method
529
- # @param [String] status_callback The status_callback
530
- # @param [Boolean] sticky_sender The sticky_sender
531
- # @param [Boolean] mms_converter The mms_converter
532
- # @param [Boolean] smart_encoding The smart_encoding
533
- # @param [service.ScanMessageContent] scan_message_content The
534
- # scan_message_content
535
- # @param [Boolean] fallback_to_long_code The fallback_to_long_code
536
- # @param [Boolean] area_code_geomatch The area_code_geomatch
537
- # @param [String] validity_period The validity_period
538
- # @param [Boolean] synchronous_validation The synchronous_validation
539
- # @return [ServiceInstance] Updated ServiceInstance
540
- def update(friendly_name: :unset, inbound_request_url: :unset, inbound_method: :unset, fallback_url: :unset, fallback_method: :unset, status_callback: :unset, sticky_sender: :unset, mms_converter: :unset, smart_encoding: :unset, scan_message_content: :unset, fallback_to_long_code: :unset, area_code_geomatch: :unset, validity_period: :unset, synchronous_validation: :unset)
541
- context.update(
542
- friendly_name: friendly_name,
543
- inbound_request_url: inbound_request_url,
544
- inbound_method: inbound_method,
545
- fallback_url: fallback_url,
546
- fallback_method: fallback_method,
547
- status_callback: status_callback,
548
- sticky_sender: sticky_sender,
549
- mms_converter: mms_converter,
550
- smart_encoding: smart_encoding,
551
- scan_message_content: scan_message_content,
552
- fallback_to_long_code: fallback_to_long_code,
553
- area_code_geomatch: area_code_geomatch,
554
- validity_period: validity_period,
555
- synchronous_validation: synchronous_validation,
556
- )
557
- end
558
-
559
- ##
560
- # Fetch a ServiceInstance
561
- # @return [ServiceInstance] Fetched ServiceInstance
562
- def fetch
563
- context.fetch
564
- end
565
-
566
- ##
567
- # Deletes the ServiceInstance
568
- # @return [Boolean] true if delete succeeds, true otherwise
569
- def delete
570
- context.delete
571
- end
572
-
573
- ##
574
- # Access the phone_numbers
575
- # @return [phone_numbers] phone_numbers
576
- def phone_numbers
577
- context.phone_numbers
578
- end
579
-
580
- ##
581
- # Access the short_codes
582
- # @return [short_codes] short_codes
583
- def short_codes
584
- context.short_codes
585
- end
586
-
587
- ##
588
- # Access the alpha_senders
589
- # @return [alpha_senders] alpha_senders
590
- def alpha_senders
591
- context.alpha_senders
592
- end
593
-
594
- ##
595
- # Provide a user friendly representation
596
- def to_s
597
- values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
598
- "<Twilio.Messaging.V1.ServiceInstance #{values}>"
599
- end
600
- end
601
- end
602
- end
603
- end
604
- end