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,427 +0,0 @@
1
- ##
2
- # This code was generated by
3
- # \ / _ _ _| _ _
4
- # | (_)\/(_)(_|\/| |(/_ v1.0.0
5
- # / /
6
-
7
- module Twilio
8
- module REST
9
- class Wireless < Domain
10
- class V1 < Version
11
- class RatePlanList < ListResource
12
- ##
13
- # Initialize the RatePlanList
14
- # @param [Version] version Version that contains the resource
15
- # @return [RatePlanList] RatePlanList
16
- def initialize(version)
17
- super(version)
18
-
19
- # Path Solution
20
- @solution = {}
21
- @uri = "/RatePlans"
22
- end
23
-
24
- ##
25
- # Lists RatePlanInstance 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 [Integer] limit Upper limit for the number of records to return. stream()
29
- # guarantees to never return more than limit. Default is no limit
30
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
31
- # the default value of 50 records. If no page_size is defined
32
- # but a limit is defined, stream() will attempt to read the
33
- # limit with the most efficient page size, i.e. min(limit, 1000)
34
- # @return [Array] Array of up to limit results
35
- def list(limit: nil, page_size: nil)
36
- self.stream(
37
- limit: limit,
38
- page_size: page_size
39
- ).entries
40
- end
41
-
42
- ##
43
- # Streams RatePlanInstance records from the API as an Enumerable.
44
- # This operation lazily loads records as efficiently as possible until the limit
45
- # is reached.
46
- # @param [Integer] limit Upper limit for the number of records to return. stream()
47
- # guarantees to never return more than limit. Default is no limit
48
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
49
- # the default value of 50 records. If no page_size is defined
50
- # but a limit is defined, stream() will attempt to read the
51
- # limit with the most efficient page size, i.e. min(limit, 1000)
52
- # @return [Enumerable] Enumerable that will yield up to limit results
53
- def stream(limit: nil, page_size: nil)
54
- limits = @version.read_limits(limit, page_size)
55
-
56
- page = self.page(
57
- page_size: limits[:page_size],
58
- )
59
-
60
- @version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
61
- end
62
-
63
- ##
64
- # When passed a block, yields RatePlanInstance records from the API.
65
- # This operation lazily loads records as efficiently as possible until the limit
66
- # is reached.
67
- # @param [Integer] limit Upper limit for the number of records to return. stream()
68
- # guarantees to never return more than limit. Default is no limit
69
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
70
- # the default value of 50 records. If no page_size is defined
71
- # but a limit is defined, stream() will attempt to read the
72
- # limit with the most efficient page size, i.e. min(limit, 1000)
73
- def each
74
- limits = @version.read_limits
75
-
76
- page = self.page(
77
- page_size: limits[:page_size],
78
- )
79
-
80
- @version.stream(page,
81
- limit: limits[:limit],
82
- page_limit: limits[:page_limit]).each {|x| yield x}
83
- end
84
-
85
- ##
86
- # Retrieve a single page of RatePlanInstance records from the API.
87
- # Request is executed immediately.
88
- # @param [String] page_token PageToken provided by the API
89
- # @param [Integer] page_number Page Number, this value is simply for client state
90
- # @param [Integer] page_size Number of records to return, defaults to 50
91
- # @return [Page] Page of RatePlanInstance
92
- def page(page_token: :unset, page_number: :unset, page_size: :unset)
93
- params = Twilio::Values.of({
94
- 'PageToken' => page_token,
95
- 'Page' => page_number,
96
- 'PageSize' => page_size,
97
- })
98
- response = @version.page(
99
- 'GET',
100
- @uri,
101
- params
102
- )
103
- RatePlanPage.new(@version, response, @solution)
104
- end
105
-
106
- ##
107
- # Retrieve a single page of RatePlanInstance records from the API.
108
- # Request is executed immediately.
109
- # @param [String] target_url API-generated URL for the requested results page
110
- # @return [Page] Page of RatePlanInstance
111
- def get_page(target_url)
112
- response = @version.domain.request(
113
- 'GET',
114
- target_url
115
- )
116
- RatePlanPage.new(@version, response, @solution)
117
- end
118
-
119
- ##
120
- # Retrieve a single page of RatePlanInstance records from the API.
121
- # Request is executed immediately.
122
- # @param [String] unique_name The unique_name
123
- # @param [String] friendly_name The friendly_name
124
- # @param [Boolean] data_enabled The data_enabled
125
- # @param [String] data_limit The data_limit
126
- # @param [String] data_metering The data_metering
127
- # @param [Boolean] messaging_enabled The messaging_enabled
128
- # @param [Boolean] voice_enabled The voice_enabled
129
- # @param [Boolean] national_roaming_enabled The national_roaming_enabled
130
- # @param [String] international_roaming The international_roaming
131
- # @param [String] national_roaming_data_limit The national_roaming_data_limit
132
- # @param [String] international_roaming_data_limit The
133
- # international_roaming_data_limit
134
- # @return [RatePlanInstance] Newly created RatePlanInstance
135
- def create(unique_name: :unset, friendly_name: :unset, data_enabled: :unset, data_limit: :unset, data_metering: :unset, messaging_enabled: :unset, voice_enabled: :unset, national_roaming_enabled: :unset, international_roaming: :unset, national_roaming_data_limit: :unset, international_roaming_data_limit: :unset)
136
- data = Twilio::Values.of({
137
- 'UniqueName' => unique_name,
138
- 'FriendlyName' => friendly_name,
139
- 'DataEnabled' => data_enabled,
140
- 'DataLimit' => data_limit,
141
- 'DataMetering' => data_metering,
142
- 'MessagingEnabled' => messaging_enabled,
143
- 'VoiceEnabled' => voice_enabled,
144
- 'NationalRoamingEnabled' => national_roaming_enabled,
145
- 'InternationalRoaming' => international_roaming,
146
- 'NationalRoamingDataLimit' => national_roaming_data_limit,
147
- 'InternationalRoamingDataLimit' => international_roaming_data_limit,
148
- })
149
-
150
- payload = @version.create(
151
- 'POST',
152
- @uri,
153
- data: data
154
- )
155
-
156
- RatePlanInstance.new(
157
- @version,
158
- payload,
159
- )
160
- end
161
-
162
- ##
163
- # Provide a user friendly representation
164
- def to_s
165
- '#<Twilio.Wireless.V1.RatePlanList>'
166
- end
167
- end
168
-
169
- class RatePlanPage < Page
170
- ##
171
- # Initialize the RatePlanPage
172
- # @param [Version] version Version that contains the resource
173
- # @param [Response] response Response from the API
174
- # @param [Hash] solution Path solution for the resource
175
- # @return [RatePlanPage] RatePlanPage
176
- def initialize(version, response, solution)
177
- super(version, response)
178
-
179
- # Path Solution
180
- @solution = solution
181
- end
182
-
183
- ##
184
- # Build an instance of RatePlanInstance
185
- # @param [Hash] payload Payload response from the API
186
- # @return [RatePlanInstance] RatePlanInstance
187
- def get_instance(payload)
188
- RatePlanInstance.new(
189
- @version,
190
- payload,
191
- )
192
- end
193
-
194
- ##
195
- # Provide a user friendly representation
196
- def to_s
197
- '<Twilio.Wireless.V1.RatePlanPage>'
198
- end
199
- end
200
-
201
- class RatePlanContext < InstanceContext
202
- ##
203
- # Initialize the RatePlanContext
204
- # @param [Version] version Version that contains the resource
205
- # @param [String] sid The sid
206
- # @return [RatePlanContext] RatePlanContext
207
- def initialize(version, sid)
208
- super(version)
209
-
210
- # Path Solution
211
- @solution = {
212
- sid: sid,
213
- }
214
- @uri = "/RatePlans/#{@solution[:sid]}"
215
- end
216
-
217
- ##
218
- # Fetch a RatePlanInstance
219
- # @return [RatePlanInstance] Fetched RatePlanInstance
220
- def fetch
221
- params = Twilio::Values.of({})
222
-
223
- payload = @version.fetch(
224
- 'GET',
225
- @uri,
226
- params,
227
- )
228
-
229
- RatePlanInstance.new(
230
- @version,
231
- payload,
232
- sid: @solution[:sid],
233
- )
234
- end
235
-
236
- ##
237
- # Update the RatePlanInstance
238
- # @param [String] unique_name The unique_name
239
- # @param [String] friendly_name The friendly_name
240
- # @return [RatePlanInstance] Updated RatePlanInstance
241
- def update(unique_name: :unset, friendly_name: :unset)
242
- data = Twilio::Values.of({
243
- 'UniqueName' => unique_name,
244
- 'FriendlyName' => friendly_name,
245
- })
246
-
247
- payload = @version.update(
248
- 'POST',
249
- @uri,
250
- data: data,
251
- )
252
-
253
- RatePlanInstance.new(
254
- @version,
255
- payload,
256
- sid: @solution[:sid],
257
- )
258
- end
259
-
260
- ##
261
- # Deletes the RatePlanInstance
262
- # @return [Boolean] true if delete succeeds, true otherwise
263
- def delete
264
- @version.delete('delete', @uri)
265
- end
266
-
267
- ##
268
- # Provide a user friendly representation
269
- def to_s
270
- context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
271
- "#<Twilio.Wireless.V1.RatePlanContext #{context}>"
272
- end
273
- end
274
-
275
- class RatePlanInstance < InstanceResource
276
- ##
277
- # Initialize the RatePlanInstance
278
- # @param [Version] version Version that contains the resource
279
- # @param [Hash] payload payload that contains response from Twilio
280
- # @param [String] sid The sid
281
- # @return [RatePlanInstance] RatePlanInstance
282
- def initialize(version, payload, sid: nil)
283
- super(version)
284
-
285
- # Marshaled Properties
286
- @properties = {
287
- 'sid' => payload['sid'],
288
- 'unique_name' => payload['unique_name'],
289
- 'account_sid' => payload['account_sid'],
290
- 'friendly_name' => payload['friendly_name'],
291
- 'data_enabled' => payload['data_enabled'],
292
- 'data_metering' => payload['data_metering'],
293
- 'data_limit' => payload['data_limit'].to_i,
294
- 'messaging_enabled' => payload['messaging_enabled'],
295
- 'voice_enabled' => payload['voice_enabled'],
296
- 'national_roaming_enabled' => payload['national_roaming_enabled'],
297
- 'national_roaming_data_limit' => payload['national_roaming_data_limit'].to_i,
298
- 'international_roaming' => payload['international_roaming'],
299
- 'international_roaming_data_limit' => payload['international_roaming_data_limit'].to_i,
300
- 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
301
- 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
302
- 'url' => payload['url'],
303
- }
304
-
305
- # Context
306
- @instance_context = nil
307
- @params = {
308
- 'sid' => sid || @properties['sid'],
309
- }
310
- end
311
-
312
- ##
313
- # Generate an instance context for the instance, the context is capable of
314
- # performing various actions. All instance actions are proxied to the context
315
- # @param [Version] version Version that contains the resource
316
- # @return [RatePlanContext] RatePlanContext for this RatePlanInstance
317
- def context
318
- unless @instance_context
319
- @instance_context = RatePlanContext.new(
320
- @version,
321
- @params['sid'],
322
- )
323
- end
324
- @instance_context
325
- end
326
-
327
- def sid
328
- @properties['sid']
329
- end
330
-
331
- def unique_name
332
- @properties['unique_name']
333
- end
334
-
335
- def account_sid
336
- @properties['account_sid']
337
- end
338
-
339
- def friendly_name
340
- @properties['friendly_name']
341
- end
342
-
343
- def data_enabled
344
- @properties['data_enabled']
345
- end
346
-
347
- def data_metering
348
- @properties['data_metering']
349
- end
350
-
351
- def data_limit
352
- @properties['data_limit']
353
- end
354
-
355
- def messaging_enabled
356
- @properties['messaging_enabled']
357
- end
358
-
359
- def voice_enabled
360
- @properties['voice_enabled']
361
- end
362
-
363
- def national_roaming_enabled
364
- @properties['national_roaming_enabled']
365
- end
366
-
367
- def national_roaming_data_limit
368
- @properties['national_roaming_data_limit']
369
- end
370
-
371
- def international_roaming
372
- @properties['international_roaming']
373
- end
374
-
375
- def international_roaming_data_limit
376
- @properties['international_roaming_data_limit']
377
- end
378
-
379
- def date_created
380
- @properties['date_created']
381
- end
382
-
383
- def date_updated
384
- @properties['date_updated']
385
- end
386
-
387
- def url
388
- @properties['url']
389
- end
390
-
391
- ##
392
- # Fetch a RatePlanInstance
393
- # @return [RatePlanInstance] Fetched RatePlanInstance
394
- def fetch
395
- context.fetch
396
- end
397
-
398
- ##
399
- # Update the RatePlanInstance
400
- # @param [String] unique_name The unique_name
401
- # @param [String] friendly_name The friendly_name
402
- # @return [RatePlanInstance] Updated RatePlanInstance
403
- def update(unique_name: :unset, friendly_name: :unset)
404
- context.update(
405
- unique_name: unique_name,
406
- friendly_name: friendly_name,
407
- )
408
- end
409
-
410
- ##
411
- # Deletes the RatePlanInstance
412
- # @return [Boolean] true if delete succeeds, true otherwise
413
- def delete
414
- context.delete
415
- end
416
-
417
- ##
418
- # Provide a user friendly representation
419
- def to_s
420
- values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
421
- "<Twilio.Wireless.V1.RatePlanInstance #{values}>"
422
- end
423
- end
424
- end
425
- end
426
- end
427
- end
@@ -1,516 +0,0 @@
1
- ##
2
- # This code was generated by
3
- # \ / _ _ _| _ _
4
- # | (_)\/(_)(_|\/| |(/_ v1.0.0
5
- # / /
6
-
7
- module Twilio
8
- module REST
9
- class Wireless < Domain
10
- class V1 < Version
11
- class SimList < ListResource
12
- ##
13
- # Initialize the SimList
14
- # @param [Version] version Version that contains the resource
15
- # @return [SimList] SimList
16
- def initialize(version)
17
- super(version)
18
-
19
- # Path Solution
20
- @solution = {}
21
- @uri = "/Sims"
22
- end
23
-
24
- ##
25
- # Lists SimInstance 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 [sim.Status] status The status
29
- # @param [String] iccid The iccid
30
- # @param [String] rate_plan The rate_plan
31
- # @param [String] e_id The e_id
32
- # @param [String] sim_registration_code The sim_registration_code
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(status: :unset, iccid: :unset, rate_plan: :unset, e_id: :unset, sim_registration_code: :unset, limit: nil, page_size: nil)
41
- self.stream(
42
- status: status,
43
- iccid: iccid,
44
- rate_plan: rate_plan,
45
- e_id: e_id,
46
- sim_registration_code: sim_registration_code,
47
- limit: limit,
48
- page_size: page_size
49
- ).entries
50
- end
51
-
52
- ##
53
- # Streams SimInstance records from the API as an Enumerable.
54
- # This operation lazily loads records as efficiently as possible until the limit
55
- # is reached.
56
- # @param [sim.Status] status The status
57
- # @param [String] iccid The iccid
58
- # @param [String] rate_plan The rate_plan
59
- # @param [String] e_id The e_id
60
- # @param [String] sim_registration_code The sim_registration_code
61
- # @param [Integer] limit Upper limit for the number of records to return. stream()
62
- # guarantees to never return more than limit. Default is no limit
63
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
64
- # the default value of 50 records. If no page_size is defined
65
- # but a limit is defined, stream() will attempt to read the
66
- # limit with the most efficient page size, i.e. min(limit, 1000)
67
- # @return [Enumerable] Enumerable that will yield up to limit results
68
- def stream(status: :unset, iccid: :unset, rate_plan: :unset, e_id: :unset, sim_registration_code: :unset, limit: nil, page_size: nil)
69
- limits = @version.read_limits(limit, page_size)
70
-
71
- page = self.page(
72
- status: status,
73
- iccid: iccid,
74
- rate_plan: rate_plan,
75
- e_id: e_id,
76
- sim_registration_code: sim_registration_code,
77
- page_size: limits[:page_size],
78
- )
79
-
80
- @version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
81
- end
82
-
83
- ##
84
- # When passed a block, yields SimInstance records from the API.
85
- # This operation lazily loads records as efficiently as possible until the limit
86
- # is reached.
87
- # @param [sim.Status] status The status
88
- # @param [String] iccid The iccid
89
- # @param [String] rate_plan The rate_plan
90
- # @param [String] e_id The e_id
91
- # @param [String] sim_registration_code The sim_registration_code
92
- # @param [Integer] limit Upper limit for the number of records to return. stream()
93
- # guarantees to never return more than limit. Default is no limit
94
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
95
- # the default value of 50 records. If no page_size is defined
96
- # but a limit is defined, stream() will attempt to read the
97
- # limit with the most efficient page size, i.e. min(limit, 1000)
98
- def each
99
- limits = @version.read_limits
100
-
101
- page = self.page(
102
- page_size: limits[:page_size],
103
- )
104
-
105
- @version.stream(page,
106
- limit: limits[:limit],
107
- page_limit: limits[:page_limit]).each {|x| yield x}
108
- end
109
-
110
- ##
111
- # Retrieve a single page of SimInstance records from the API.
112
- # Request is executed immediately.
113
- # @param [sim.Status] status The status
114
- # @param [String] iccid The iccid
115
- # @param [String] rate_plan The rate_plan
116
- # @param [String] e_id The e_id
117
- # @param [String] sim_registration_code The sim_registration_code
118
- # @param [String] page_token PageToken provided by the API
119
- # @param [Integer] page_number Page Number, this value is simply for client state
120
- # @param [Integer] page_size Number of records to return, defaults to 50
121
- # @return [Page] Page of SimInstance
122
- def page(status: :unset, iccid: :unset, rate_plan: :unset, e_id: :unset, sim_registration_code: :unset, page_token: :unset, page_number: :unset, page_size: :unset)
123
- params = Twilio::Values.of({
124
- 'Status' => status,
125
- 'Iccid' => iccid,
126
- 'RatePlan' => rate_plan,
127
- 'EId' => e_id,
128
- 'SimRegistrationCode' => sim_registration_code,
129
- 'PageToken' => page_token,
130
- 'Page' => page_number,
131
- 'PageSize' => page_size,
132
- })
133
- response = @version.page(
134
- 'GET',
135
- @uri,
136
- params
137
- )
138
- SimPage.new(@version, response, @solution)
139
- end
140
-
141
- ##
142
- # Retrieve a single page of SimInstance records from the API.
143
- # Request is executed immediately.
144
- # @param [String] target_url API-generated URL for the requested results page
145
- # @return [Page] Page of SimInstance
146
- def get_page(target_url)
147
- response = @version.domain.request(
148
- 'GET',
149
- target_url
150
- )
151
- SimPage.new(@version, response, @solution)
152
- end
153
-
154
- ##
155
- # Provide a user friendly representation
156
- def to_s
157
- '#<Twilio.Wireless.V1.SimList>'
158
- end
159
- end
160
-
161
- class SimPage < Page
162
- ##
163
- # Initialize the SimPage
164
- # @param [Version] version Version that contains the resource
165
- # @param [Response] response Response from the API
166
- # @param [Hash] solution Path solution for the resource
167
- # @return [SimPage] SimPage
168
- def initialize(version, response, solution)
169
- super(version, response)
170
-
171
- # Path Solution
172
- @solution = solution
173
- end
174
-
175
- ##
176
- # Build an instance of SimInstance
177
- # @param [Hash] payload Payload response from the API
178
- # @return [SimInstance] SimInstance
179
- def get_instance(payload)
180
- SimInstance.new(
181
- @version,
182
- payload,
183
- )
184
- end
185
-
186
- ##
187
- # Provide a user friendly representation
188
- def to_s
189
- '<Twilio.Wireless.V1.SimPage>'
190
- end
191
- end
192
-
193
- class SimContext < InstanceContext
194
- ##
195
- # Initialize the SimContext
196
- # @param [Version] version Version that contains the resource
197
- # @param [String] sid The sid
198
- # @return [SimContext] SimContext
199
- def initialize(version, sid)
200
- super(version)
201
-
202
- # Path Solution
203
- @solution = {
204
- sid: sid,
205
- }
206
- @uri = "/Sims/#{@solution[:sid]}"
207
-
208
- # Dependents
209
- @usage_records = nil
210
- end
211
-
212
- ##
213
- # Fetch a SimInstance
214
- # @return [SimInstance] Fetched SimInstance
215
- def fetch
216
- params = Twilio::Values.of({})
217
-
218
- payload = @version.fetch(
219
- 'GET',
220
- @uri,
221
- params,
222
- )
223
-
224
- SimInstance.new(
225
- @version,
226
- payload,
227
- sid: @solution[:sid],
228
- )
229
- end
230
-
231
- ##
232
- # Update the SimInstance
233
- # @param [String] unique_name The unique_name
234
- # @param [String] callback_method The callback_method
235
- # @param [String] callback_url The callback_url
236
- # @param [String] friendly_name The friendly_name
237
- # @param [String] rate_plan The rate_plan
238
- # @param [sim.Status] status The status
239
- # @param [String] commands_callback_method The commands_callback_method
240
- # @param [String] commands_callback_url The commands_callback_url
241
- # @param [String] sms_fallback_method The sms_fallback_method
242
- # @param [String] sms_fallback_url The sms_fallback_url
243
- # @param [String] sms_method The sms_method
244
- # @param [String] sms_url The sms_url
245
- # @param [String] voice_fallback_method The voice_fallback_method
246
- # @param [String] voice_fallback_url The voice_fallback_url
247
- # @param [String] voice_method The voice_method
248
- # @param [String] voice_url The voice_url
249
- # @return [SimInstance] Updated SimInstance
250
- def update(unique_name: :unset, callback_method: :unset, callback_url: :unset, friendly_name: :unset, rate_plan: :unset, status: :unset, commands_callback_method: :unset, commands_callback_url: :unset, sms_fallback_method: :unset, sms_fallback_url: :unset, sms_method: :unset, sms_url: :unset, voice_fallback_method: :unset, voice_fallback_url: :unset, voice_method: :unset, voice_url: :unset)
251
- data = Twilio::Values.of({
252
- 'UniqueName' => unique_name,
253
- 'CallbackMethod' => callback_method,
254
- 'CallbackUrl' => callback_url,
255
- 'FriendlyName' => friendly_name,
256
- 'RatePlan' => rate_plan,
257
- 'Status' => status,
258
- 'CommandsCallbackMethod' => commands_callback_method,
259
- 'CommandsCallbackUrl' => commands_callback_url,
260
- 'SmsFallbackMethod' => sms_fallback_method,
261
- 'SmsFallbackUrl' => sms_fallback_url,
262
- 'SmsMethod' => sms_method,
263
- 'SmsUrl' => sms_url,
264
- 'VoiceFallbackMethod' => voice_fallback_method,
265
- 'VoiceFallbackUrl' => voice_fallback_url,
266
- 'VoiceMethod' => voice_method,
267
- 'VoiceUrl' => voice_url,
268
- })
269
-
270
- payload = @version.update(
271
- 'POST',
272
- @uri,
273
- data: data,
274
- )
275
-
276
- SimInstance.new(
277
- @version,
278
- payload,
279
- sid: @solution[:sid],
280
- )
281
- end
282
-
283
- ##
284
- # Access the usage_records
285
- # @return [UsageRecordList] if a(n) UsageRecordList object was created.
286
- # @return [UsageRecordContext] if a(n) UsageRecordContext object was created.
287
- def usage_records
288
- unless @usage_records
289
- @usage_records = UsageRecordList.new(
290
- @version,
291
- sim_sid: @solution[:sid],
292
- )
293
- end
294
-
295
- @usage_records
296
- end
297
-
298
- ##
299
- # Provide a user friendly representation
300
- def to_s
301
- context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
302
- "#<Twilio.Wireless.V1.SimContext #{context}>"
303
- end
304
- end
305
-
306
- class SimInstance < InstanceResource
307
- ##
308
- # Initialize the SimInstance
309
- # @param [Version] version Version that contains the resource
310
- # @param [Hash] payload payload that contains response from Twilio
311
- # @param [String] sid The sid
312
- # @return [SimInstance] SimInstance
313
- def initialize(version, payload, sid: nil)
314
- super(version)
315
-
316
- # Marshaled Properties
317
- @properties = {
318
- 'sid' => payload['sid'],
319
- 'unique_name' => payload['unique_name'],
320
- 'account_sid' => payload['account_sid'],
321
- 'rate_plan_sid' => payload['rate_plan_sid'],
322
- 'friendly_name' => payload['friendly_name'],
323
- 'iccid' => payload['iccid'],
324
- 'e_id' => payload['e_id'],
325
- 'status' => payload['status'],
326
- 'commands_callback_url' => payload['commands_callback_url'],
327
- 'commands_callback_method' => payload['commands_callback_method'],
328
- 'sms_fallback_method' => payload['sms_fallback_method'],
329
- 'sms_fallback_url' => payload['sms_fallback_url'],
330
- 'sms_method' => payload['sms_method'],
331
- 'sms_url' => payload['sms_url'],
332
- 'voice_fallback_method' => payload['voice_fallback_method'],
333
- 'voice_fallback_url' => payload['voice_fallback_url'],
334
- 'voice_method' => payload['voice_method'],
335
- 'voice_url' => payload['voice_url'],
336
- 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
337
- 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
338
- 'url' => payload['url'],
339
- 'links' => payload['links'],
340
- }
341
-
342
- # Context
343
- @instance_context = nil
344
- @params = {
345
- 'sid' => sid || @properties['sid'],
346
- }
347
- end
348
-
349
- ##
350
- # Generate an instance context for the instance, the context is capable of
351
- # performing various actions. All instance actions are proxied to the context
352
- # @param [Version] version Version that contains the resource
353
- # @return [SimContext] SimContext for this SimInstance
354
- def context
355
- unless @instance_context
356
- @instance_context = SimContext.new(
357
- @version,
358
- @params['sid'],
359
- )
360
- end
361
- @instance_context
362
- end
363
-
364
- def sid
365
- @properties['sid']
366
- end
367
-
368
- def unique_name
369
- @properties['unique_name']
370
- end
371
-
372
- def account_sid
373
- @properties['account_sid']
374
- end
375
-
376
- def rate_plan_sid
377
- @properties['rate_plan_sid']
378
- end
379
-
380
- def friendly_name
381
- @properties['friendly_name']
382
- end
383
-
384
- def iccid
385
- @properties['iccid']
386
- end
387
-
388
- def e_id
389
- @properties['e_id']
390
- end
391
-
392
- def status
393
- @properties['status']
394
- end
395
-
396
- def commands_callback_url
397
- @properties['commands_callback_url']
398
- end
399
-
400
- def commands_callback_method
401
- @properties['commands_callback_method']
402
- end
403
-
404
- def sms_fallback_method
405
- @properties['sms_fallback_method']
406
- end
407
-
408
- def sms_fallback_url
409
- @properties['sms_fallback_url']
410
- end
411
-
412
- def sms_method
413
- @properties['sms_method']
414
- end
415
-
416
- def sms_url
417
- @properties['sms_url']
418
- end
419
-
420
- def voice_fallback_method
421
- @properties['voice_fallback_method']
422
- end
423
-
424
- def voice_fallback_url
425
- @properties['voice_fallback_url']
426
- end
427
-
428
- def voice_method
429
- @properties['voice_method']
430
- end
431
-
432
- def voice_url
433
- @properties['voice_url']
434
- end
435
-
436
- def date_created
437
- @properties['date_created']
438
- end
439
-
440
- def date_updated
441
- @properties['date_updated']
442
- end
443
-
444
- def url
445
- @properties['url']
446
- end
447
-
448
- def links
449
- @properties['links']
450
- end
451
-
452
- ##
453
- # Fetch a SimInstance
454
- # @return [SimInstance] Fetched SimInstance
455
- def fetch
456
- context.fetch
457
- end
458
-
459
- ##
460
- # Update the SimInstance
461
- # @param [String] unique_name The unique_name
462
- # @param [String] callback_method The callback_method
463
- # @param [String] callback_url The callback_url
464
- # @param [String] friendly_name The friendly_name
465
- # @param [String] rate_plan The rate_plan
466
- # @param [sim.Status] status The status
467
- # @param [String] commands_callback_method The commands_callback_method
468
- # @param [String] commands_callback_url The commands_callback_url
469
- # @param [String] sms_fallback_method The sms_fallback_method
470
- # @param [String] sms_fallback_url The sms_fallback_url
471
- # @param [String] sms_method The sms_method
472
- # @param [String] sms_url The sms_url
473
- # @param [String] voice_fallback_method The voice_fallback_method
474
- # @param [String] voice_fallback_url The voice_fallback_url
475
- # @param [String] voice_method The voice_method
476
- # @param [String] voice_url The voice_url
477
- # @return [SimInstance] Updated SimInstance
478
- def update(unique_name: :unset, callback_method: :unset, callback_url: :unset, friendly_name: :unset, rate_plan: :unset, status: :unset, commands_callback_method: :unset, commands_callback_url: :unset, sms_fallback_method: :unset, sms_fallback_url: :unset, sms_method: :unset, sms_url: :unset, voice_fallback_method: :unset, voice_fallback_url: :unset, voice_method: :unset, voice_url: :unset)
479
- context.update(
480
- unique_name: unique_name,
481
- callback_method: callback_method,
482
- callback_url: callback_url,
483
- friendly_name: friendly_name,
484
- rate_plan: rate_plan,
485
- status: status,
486
- commands_callback_method: commands_callback_method,
487
- commands_callback_url: commands_callback_url,
488
- sms_fallback_method: sms_fallback_method,
489
- sms_fallback_url: sms_fallback_url,
490
- sms_method: sms_method,
491
- sms_url: sms_url,
492
- voice_fallback_method: voice_fallback_method,
493
- voice_fallback_url: voice_fallback_url,
494
- voice_method: voice_method,
495
- voice_url: voice_url,
496
- )
497
- end
498
-
499
- ##
500
- # Access the usage_records
501
- # @return [usage_records] usage_records
502
- def usage_records
503
- context.usage_records
504
- end
505
-
506
- ##
507
- # Provide a user friendly representation
508
- def to_s
509
- values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
510
- "<Twilio.Wireless.V1.SimInstance #{values}>"
511
- end
512
- end
513
- end
514
- end
515
- end
516
- end