twilio-ruby 5.0.0.rc18 → 5.0.0.rc19
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +9 -0
- data/lib/twilio-ruby/jwt/access_token.rb +25 -0
- data/lib/twilio-ruby/rest/accounts.rb +40 -0
- data/lib/twilio-ruby/rest/accounts/v1.rb +35 -0
- data/lib/twilio-ruby/rest/accounts/v1/credential.rb +102 -0
- data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +352 -0
- data/lib/twilio-ruby/rest/api.rb +30 -34
- data/lib/twilio-ruby/rest/api/v2010.rb +28 -32
- data/lib/twilio-ruby/rest/api/v2010/account.rb +132 -150
- data/lib/twilio-ruby/rest/api/v2010/account/address.rb +71 -55
- data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +29 -29
- data/lib/twilio-ruby/rest/api/v2010/account/application.rb +58 -58
- data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +37 -37
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +45 -45
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +39 -39
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +39 -39
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +39 -39
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +102 -123
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +33 -33
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +38 -38
- data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +52 -52
- data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +42 -37
- data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +83 -40
- data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +131 -43
- data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +42 -42
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +172 -96
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +404 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +332 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +62 -57
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +62 -57
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +62 -57
- data/lib/twilio-ruby/rest/api/v2010/account/key.rb +37 -37
- data/lib/twilio-ruby/rest/api/v2010/account/message.rb +78 -85
- data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +19 -19
- data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +47 -57
- data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +18 -18
- data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +18 -18
- data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +46 -46
- data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +40 -40
- data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +50 -50
- data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +36 -36
- data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +101 -68
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +372 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +356 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +42 -42
- data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +43 -43
- data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +37 -37
- data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +27 -16
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +48 -48
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +43 -43
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +65 -60
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +43 -38
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +43 -38
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +48 -48
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +44 -44
- data/lib/twilio-ruby/rest/api/v2010/account/token.rb +20 -20
- data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +42 -42
- data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +13 -13
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +78 -82
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +45 -73
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +45 -73
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +45 -73
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +45 -73
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +45 -73
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +45 -73
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +45 -73
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +45 -73
- data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +52 -52
- data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +18 -18
- data/lib/twilio-ruby/rest/chat.rb +16 -9
- data/lib/twilio-ruby/rest/chat/v1.rb +4 -4
- data/lib/twilio-ruby/rest/chat/v1/credential.rb +53 -47
- data/lib/twilio-ruby/rest/chat/v1/service.rb +446 -69
- data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +114 -69
- data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +363 -0
- data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +99 -44
- data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +76 -54
- data/lib/twilio-ruby/rest/chat/v1/service/role.rb +45 -45
- data/lib/twilio-ruby/rest/chat/v1/service/user.rb +101 -46
- data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +223 -0
- data/lib/twilio-ruby/rest/chat/v2.rb +44 -0
- data/lib/twilio-ruby/rest/chat/v2/credential.rb +381 -0
- data/lib/twilio-ruby/rest/chat/v2/service.rb +633 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +513 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +363 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +406 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +418 -0
- data/lib/twilio-ruby/rest/chat/v2/service/role.rb +373 -0
- data/lib/twilio-ruby/rest/chat/v2/service/user.rb +433 -0
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +223 -0
- data/lib/twilio-ruby/rest/client.rb +91 -75
- data/lib/twilio-ruby/rest/fax.rb +40 -0
- data/lib/twilio-ruby/rest/fax/v1.rb +35 -0
- data/lib/twilio-ruby/rest/fax/v1/fax.rb +397 -0
- data/lib/twilio-ruby/rest/ip_messaging.rb +16 -9
- data/lib/twilio-ruby/rest/ip_messaging/v1.rb +4 -4
- data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +53 -47
- data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +446 -69
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +114 -69
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +363 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +99 -44
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +76 -54
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +45 -45
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +101 -46
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +223 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2.rb +44 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +381 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +633 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +513 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +363 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +406 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +418 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +373 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +433 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +223 -0
- data/lib/twilio-ruby/rest/lookups.rb +6 -6
- data/lib/twilio-ruby/rest/lookups/v1.rb +3 -3
- data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +30 -25
- data/lib/twilio-ruby/rest/messaging.rb +40 -0
- data/lib/twilio-ruby/rest/messaging/v1.rb +35 -0
- data/lib/twilio-ruby/rest/messaging/v1/service.rb +524 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +331 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +336 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +336 -0
- data/lib/twilio-ruby/rest/monitor.rb +7 -7
- data/lib/twilio-ruby/rest/monitor/v1.rb +4 -4
- data/lib/twilio-ruby/rest/monitor/v1/alert.rb +57 -85
- data/lib/twilio-ruby/rest/monitor/v1/event.rb +63 -81
- data/lib/twilio-ruby/rest/notify.rb +7 -7
- data/lib/twilio-ruby/rest/notify/v1.rb +4 -4
- data/lib/twilio-ruby/rest/notify/v1/credential.rb +53 -47
- data/lib/twilio-ruby/rest/notify/v1/service.rb +148 -60
- data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +70 -86
- data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +47 -33
- data/lib/twilio-ruby/rest/notify/v1/service/segment.rb +206 -0
- data/lib/twilio-ruby/rest/notify/v1/service/user.rb +418 -0
- data/lib/twilio-ruby/rest/notify/v1/service/user/segment_memberships.rb +247 -0
- data/lib/twilio-ruby/rest/notify/v1/service/user/user_binding.rb +405 -0
- data/lib/twilio-ruby/rest/preview.rb +34 -19
- data/lib/twilio-ruby/rest/preview/marketplace.rb +44 -0
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +310 -0
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +284 -0
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +411 -0
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +322 -0
- data/lib/twilio-ruby/rest/preview/sync.rb +3 -3
- data/lib/twilio-ruby/rest/preview/sync/service.rb +72 -61
- data/lib/twilio-ruby/rest/preview/sync/service/document.rb +85 -46
- data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +377 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +79 -47
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +46 -46
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +377 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +79 -47
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +46 -46
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +377 -0
- data/lib/twilio-ruby/rest/preview/wireless.rb +12 -12
- data/lib/twilio-ruby/rest/preview/wireless/command.rb +68 -45
- data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +137 -73
- data/lib/twilio-ruby/rest/preview/wireless/{device.rb → sim.rb} +127 -150
- data/lib/twilio-ruby/rest/preview/wireless/{device → sim}/usage.rb +49 -49
- data/lib/twilio-ruby/rest/pricing.rb +8 -8
- data/lib/twilio-ruby/rest/pricing/v1.rb +5 -5
- data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +16 -16
- data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +33 -33
- data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +16 -16
- data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +33 -38
- data/lib/twilio-ruby/rest/pricing/v1/voice.rb +18 -18
- data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +33 -33
- data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +26 -26
- data/lib/twilio-ruby/rest/taskrouter.rb +6 -6
- data/lib/twilio-ruby/rest/taskrouter/v1.rb +3 -3
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +103 -82
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +48 -43
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +42 -42
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +114 -75
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +50 -40
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +35 -35
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +110 -78
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +31 -30
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +24 -24
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +71 -61
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +50 -40
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +45 -45
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +28 -23
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +28 -23
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +60 -50
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +29 -24
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +34 -29
- data/lib/twilio-ruby/rest/trunking.rb +6 -6
- data/lib/twilio-ruby/rest/trunking/v1.rb +3 -3
- data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +67 -67
- data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +39 -39
- data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +39 -39
- data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +47 -47
- data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +58 -58
- data/lib/twilio-ruby/rest/video.rb +44 -0
- data/lib/twilio-ruby/rest/video/v1.rb +44 -0
- data/lib/twilio-ruby/rest/video/v1/recording.rb +341 -0
- data/lib/twilio-ruby/rest/video/v1/room.rb +411 -0
- data/lib/twilio-ruby/version.rb +1 -1
- data/spec/integration/accounts/v1/credential/public_key_spec.rb +226 -0
- data/spec/integration/accounts/v1/credential_spec.rb +10 -0
- data/spec/integration/api/v2010/account/address/dependent_phone_number_spec.rb +7 -7
- data/spec/integration/api/v2010/account/address_spec.rb +32 -24
- data/spec/integration/api/v2010/account/application_spec.rb +24 -24
- data/spec/integration/api/v2010/account/authorized_connect_app_spec.rb +11 -11
- data/spec/integration/api/v2010/account/available_phone_number/local_spec.rb +7 -7
- data/spec/integration/api/v2010/account/available_phone_number/mobile_spec.rb +7 -7
- data/spec/integration/api/v2010/account/available_phone_number/toll_free_spec.rb +7 -7
- data/spec/integration/api/v2010/account/available_phone_number_spec.rb +11 -11
- data/spec/integration/api/v2010/account/call/feedback_spec.rb +14 -14
- data/spec/integration/api/v2010/account/call/feedback_summary_spec.rb +14 -14
- data/spec/integration/api/v2010/account/call/notification_spec.rb +15 -15
- data/spec/integration/api/v2010/account/call/recording_spec.rb +15 -15
- data/spec/integration/api/v2010/account/call_spec.rb +24 -24
- data/spec/integration/api/v2010/account/conference/participant_spec.rb +97 -25
- data/spec/integration/api/v2010/account/conference_spec.rb +56 -17
- data/spec/integration/api/v2010/account/connect_app_spec.rb +15 -15
- data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb +135 -0
- data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb +223 -0
- data/spec/integration/api/v2010/account/incoming_phone_number/local_spec.rb +12 -12
- data/spec/integration/api/v2010/account/incoming_phone_number/mobile_spec.rb +12 -12
- data/spec/integration/api/v2010/account/incoming_phone_number/toll_free_spec.rb +12 -12
- data/spec/integration/api/v2010/account/incoming_phone_number_spec.rb +32 -24
- data/spec/integration/api/v2010/account/key_spec.rb +19 -19
- data/spec/integration/api/v2010/account/message/feedback_spec.rb +25 -3
- data/spec/integration/api/v2010/account/message/media_spec.rb +15 -15
- data/spec/integration/api/v2010/account/message_spec.rb +34 -27
- data/spec/integration/api/v2010/account/new_key_spec.rb +5 -5
- data/spec/integration/api/v2010/account/new_signing_key_spec.rb +5 -5
- data/spec/integration/api/v2010/account/notification_spec.rb +15 -15
- data/spec/integration/api/v2010/account/outgoing_caller_id_spec.rb +19 -19
- data/spec/integration/api/v2010/account/queue/member_spec.rb +15 -15
- data/spec/integration/api/v2010/account/queue_spec.rb +30 -27
- data/spec/integration/api/v2010/account/recording/add_on_result/payload_spec.rb +175 -0
- data/spec/integration/api/v2010/account/recording/add_on_result_spec.rb +166 -0
- data/spec/integration/api/v2010/account/recording/transcription_spec.rb +15 -15
- data/spec/integration/api/v2010/account/recording_spec.rb +16 -16
- data/spec/integration/api/v2010/account/short_code_spec.rb +15 -15
- data/spec/integration/api/v2010/account/signing_key_spec.rb +19 -19
- data/spec/integration/api/v2010/account/sip/credential_list/credential_spec.rb +24 -24
- data/spec/integration/api/v2010/account/sip/credential_list_spec.rb +24 -24
- data/spec/integration/api/v2010/account/sip/domain/credential_list_mapping_spec.rb +20 -20
- data/spec/integration/api/v2010/account/sip/domain/ip_access_control_list_mapping_spec.rb +20 -20
- data/spec/integration/api/v2010/account/sip/domain_spec.rb +24 -24
- data/spec/integration/api/v2010/account/sip/ip_access_control_list/ip_address_spec.rb +24 -24
- data/spec/integration/api/v2010/account/sip/ip_access_control_list_spec.rb +24 -24
- data/spec/integration/api/v2010/account/sip_spec.rb +1 -1
- data/spec/integration/api/v2010/account/token_spec.rb +6 -6
- data/spec/integration/api/v2010/account/transcription_spec.rb +15 -15
- data/spec/integration/api/v2010/account/usage/record/all_time_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/record/daily_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/record/last_month_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/record/monthly_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/record/this_month_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/record/today_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/record/yearly_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/record/yesterday_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/record_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/trigger_spec.rb +27 -27
- data/spec/integration/api/v2010/account/usage_spec.rb +1 -1
- data/spec/integration/api/v2010/account/validation_request_spec.rb +23 -3
- data/spec/integration/api/v2010/account_spec.rb +20 -24
- data/spec/integration/chat/v1/credential_spec.rb +31 -31
- data/spec/integration/chat/v1/service/channel/invite_spec.rb +210 -0
- data/spec/integration/chat/v1/service/channel/member_spec.rb +102 -31
- data/spec/integration/chat/v1/service/channel/message_spec.rb +210 -16
- data/spec/integration/chat/v1/service/channel_spec.rb +71 -55
- data/spec/integration/chat/v1/service/role_spec.rb +33 -33
- data/spec/integration/chat/v1/service/user/user_channel_spec.rb +92 -0
- data/spec/integration/chat/v1/service/user_spec.rb +57 -33
- data/spec/integration/chat/v1/service_spec.rb +142 -106
- data/spec/integration/chat/v2/credential_spec.rb +223 -0
- data/spec/integration/chat/v2/service/channel/invite_spec.rb +210 -0
- data/spec/integration/chat/v2/service/channel/member_spec.rb +284 -0
- data/spec/integration/chat/v2/service/channel/message_spec.rb +294 -0
- data/spec/integration/chat/v2/service/channel_spec.rb +275 -0
- data/spec/integration/chat/v2/service/role_spec.rb +263 -0
- data/spec/integration/chat/v2/service/user/user_channel_spec.rb +92 -0
- data/spec/integration/chat/v2/service/user_spec.rb +266 -0
- data/spec/integration/chat/v2/service_spec.rb +325 -0
- data/spec/integration/fax/v1/fax_spec.rb +231 -0
- data/spec/integration/ip_messaging/v1/credential_spec.rb +31 -31
- data/spec/integration/ip_messaging/v1/service/channel/invite_spec.rb +210 -0
- data/spec/integration/ip_messaging/v1/service/channel/member_spec.rb +102 -31
- data/spec/integration/ip_messaging/v1/service/channel/message_spec.rb +210 -16
- data/spec/integration/ip_messaging/v1/service/channel_spec.rb +71 -55
- data/spec/integration/ip_messaging/v1/service/role_spec.rb +33 -33
- data/spec/integration/ip_messaging/v1/service/user/user_channel_spec.rb +92 -0
- data/spec/integration/ip_messaging/v1/service/user_spec.rb +57 -33
- data/spec/integration/ip_messaging/v1/service_spec.rb +142 -106
- data/spec/integration/ip_messaging/v2/credential_spec.rb +223 -0
- data/spec/integration/ip_messaging/v2/service/channel/invite_spec.rb +210 -0
- data/spec/integration/ip_messaging/v2/service/channel/member_spec.rb +284 -0
- data/spec/integration/ip_messaging/v2/service/channel/message_spec.rb +294 -0
- data/spec/integration/ip_messaging/v2/service/channel_spec.rb +275 -0
- data/spec/integration/ip_messaging/v2/service/role_spec.rb +263 -0
- data/spec/integration/ip_messaging/v2/service/user/user_channel_spec.rb +92 -0
- data/spec/integration/ip_messaging/v2/service/user_spec.rb +266 -0
- data/spec/integration/ip_messaging/v2/service_spec.rb +325 -0
- data/spec/integration/lookups/v1/phone_number_spec.rb +5 -5
- data/spec/integration/messaging/v1/service/alpha_sender_spec.rb +170 -0
- data/spec/integration/messaging/v1/service/phone_number_spec.rb +173 -0
- data/spec/integration/messaging/v1/service/short_code_spec.rb +173 -0
- data/spec/integration/messaging/v1/service_spec.rb +243 -0
- data/spec/integration/monitor/v1/alert_spec.rb +57 -57
- data/spec/integration/monitor/v1/event_spec.rb +11 -11
- data/spec/integration/notify/v1/credential_spec.rb +23 -23
- data/spec/integration/notify/v1/service/binding_spec.rb +88 -71
- data/spec/integration/notify/v1/service/notification_spec.rb +7 -5
- data/spec/integration/notify/v1/service/segment_spec.rb +84 -0
- data/spec/integration/notify/v1/service/user/segment_memberships_spec.rb +118 -0
- data/spec/integration/notify/v1/service/user/user_binding_spec.rb +235 -0
- data/spec/integration/notify/v1/service/user_spec.rb +213 -0
- data/spec/integration/notify/v1/service_spec.rb +50 -30
- data/spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb +121 -0
- data/spec/integration/preview/marketplace/available_add_on_spec.rb +142 -0
- data/spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb +164 -0
- data/spec/integration/preview/marketplace/installed_add_on_spec.rb +252 -0
- data/spec/integration/preview/sync/service/document/document_permission_spec.rb +206 -0
- data/spec/integration/preview/sync/service/document_spec.rb +179 -17
- data/spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb +167 -11
- data/spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb +206 -0
- data/spec/integration/preview/sync/service/sync_list_spec.rb +143 -9
- data/spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb +167 -11
- data/spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb +206 -0
- data/spec/integration/preview/sync/service/sync_map_spec.rb +143 -9
- data/spec/integration/preview/sync/service_spec.rb +171 -11
- data/spec/integration/preview/wireless/command_spec.rb +120 -9
- data/spec/integration/preview/wireless/rate_plan_spec.rb +228 -7
- data/spec/integration/preview/wireless/sim/usage_spec.rb +49 -0
- data/spec/integration/preview/wireless/sim_spec.rb +184 -0
- data/spec/integration/pricing/v1/messaging/country_spec.rb +101 -5
- data/spec/integration/pricing/v1/messaging_spec.rb +1 -1
- data/spec/integration/pricing/v1/phone_number/country_spec.rb +11 -11
- data/spec/integration/pricing/v1/phone_number_spec.rb +1 -1
- data/spec/integration/pricing/v1/voice/country_spec.rb +11 -11
- data/spec/integration/pricing/v1/voice/number_spec.rb +5 -5
- data/spec/integration/pricing/v1/voice_spec.rb +1 -1
- data/spec/integration/taskrouter/v1/workspace/activity_spec.rb +29 -33
- data/spec/integration/taskrouter/v1/workspace/event_spec.rb +11 -11
- data/spec/integration/taskrouter/v1/workspace/task/reservation_spec.rb +15 -15
- data/spec/integration/taskrouter/v1/workspace/task_channel_spec.rb +11 -11
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_statistics_spec.rb +12 -10
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queues_statistics_spec.rb +17 -16
- data/spec/integration/taskrouter/v1/workspace/task_queue_spec.rb +52 -36
- data/spec/integration/taskrouter/v1/workspace/task_spec.rb +101 -46
- data/spec/integration/taskrouter/v1/workspace/worker/reservation_spec.rb +15 -15
- data/spec/integration/taskrouter/v1/workspace/worker/worker_channel_spec.rb +15 -15
- data/spec/integration/taskrouter/v1/workspace/worker/worker_statistics_spec.rb +6 -5
- data/spec/integration/taskrouter/v1/workspace/worker/workers_statistics_spec.rb +6 -5
- data/spec/integration/taskrouter/v1/workspace/worker_spec.rb +39 -27
- data/spec/integration/taskrouter/v1/workspace/workflow/workflow_statistics_spec.rb +13 -11
- data/spec/integration/taskrouter/v1/workspace/workflow_spec.rb +47 -35
- data/spec/integration/taskrouter/v1/workspace/workspace_statistics_spec.rb +10 -8
- data/spec/integration/taskrouter/v1/workspace_spec.rb +28 -24
- data/spec/integration/trunking/v1/trunk/credential_list_spec.rb +20 -20
- data/spec/integration/trunking/v1/trunk/ip_access_control_list_spec.rb +62 -62
- data/spec/integration/trunking/v1/trunk/origination_url_spec.rb +23 -23
- data/spec/integration/trunking/v1/trunk/phone_number_spec.rb +19 -19
- data/spec/integration/trunking/v1/trunk_spec.rb +23 -23
- data/spec/integration/video/v1/recording_spec.rb +120 -0
- data/spec/integration/video/v1/room_spec.rb +225 -0
- data/spec/jwt/access_token_spec.rb +22 -0
- metadata +158 -12
- data/lib/twilio-ruby/rest/api/v2010/account/sandbox.rb +0 -287
- data/spec/integration/api/v2010/account/sandbox_spec.rb +0 -99
- data/spec/integration/preview/wireless/device/usage_spec.rb +0 -25
- data/spec/integration/preview/wireless/device_spec.rb +0 -72
@@ -2,7 +2,7 @@
|
|
2
2
|
# This code was generated by
|
3
3
|
# \ / _ _ _| _ _
|
4
4
|
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
5
|
-
# / /
|
5
|
+
# / /
|
6
6
|
|
7
7
|
module Twilio
|
8
8
|
module REST
|
@@ -10,7 +10,7 @@ module Twilio
|
|
10
10
|
# A client for accessing the Twilio API.
|
11
11
|
class Client
|
12
12
|
attr_accessor :http_client, :username, :password, :account_sid, :auth_token
|
13
|
-
|
13
|
+
|
14
14
|
##
|
15
15
|
# Initializes the Twilio Client
|
16
16
|
def initialize(username=nil, password=nil, account_sid=nil, http_client=Twilio::HTTP::Client.new)
|
@@ -20,10 +20,12 @@ module Twilio
|
|
20
20
|
@auth_token = @password
|
21
21
|
@auth = [@username, @password]
|
22
22
|
@http_client = http_client
|
23
|
-
|
23
|
+
|
24
24
|
# Domains
|
25
|
+
@accounts = nil
|
25
26
|
@api = nil
|
26
27
|
@chat = nil
|
28
|
+
@fax = nil
|
27
29
|
@ip_messaging = nil
|
28
30
|
@lookups = nil
|
29
31
|
@monitor = nil
|
@@ -32,27 +34,29 @@ module Twilio
|
|
32
34
|
@pricing = nil
|
33
35
|
@taskrouter = nil
|
34
36
|
@trunking = nil
|
37
|
+
@video = nil
|
38
|
+
@messaging = nil
|
35
39
|
end
|
36
|
-
|
40
|
+
|
37
41
|
##
|
38
42
|
# Makes a request to the Twilio API using the configured http client
|
39
43
|
# Authentication information is automatically added if none is provided
|
40
44
|
def request(host, port, method, uri, params={}, data={}, headers={}, auth=nil, timeout=nil)
|
41
45
|
auth ||= @auth
|
42
|
-
|
46
|
+
|
43
47
|
headers['User-Agent'] = "twilio-ruby/#{Twilio::VERSION}" +
|
44
48
|
" (#{RUBY_ENGINE}/#{RUBY_PLATFORM}" +
|
45
49
|
" #{RUBY_VERSION}-p#{RUBY_PATCHLEVEL})"
|
46
50
|
headers['Accept-Charset'] = 'utf-8'
|
47
|
-
|
51
|
+
|
48
52
|
if method == 'POST' && !headers['Content-Type']
|
49
53
|
headers['Content-Type'] = 'application/x-www-form-urlencoded'
|
50
54
|
end
|
51
|
-
|
55
|
+
|
52
56
|
unless headers['Accept']
|
53
57
|
headers['Accept'] = 'application/json'
|
54
58
|
end
|
55
|
-
|
59
|
+
|
56
60
|
@http_client.request(
|
57
61
|
host,
|
58
62
|
port,
|
@@ -65,171 +69,183 @@ module Twilio
|
|
65
69
|
timeout
|
66
70
|
)
|
67
71
|
end
|
68
|
-
|
72
|
+
|
73
|
+
##
|
74
|
+
# Access the Accounts Twilio Domain
|
75
|
+
def accounts
|
76
|
+
@accounts ||= Accounts.new self
|
77
|
+
end
|
78
|
+
|
69
79
|
##
|
70
80
|
# Access the Api Twilio Domain
|
71
81
|
def api
|
72
82
|
@api ||= Api.new self
|
73
83
|
end
|
74
|
-
|
84
|
+
|
75
85
|
##
|
76
86
|
# Access the Chat Twilio Domain
|
77
87
|
def chat
|
78
88
|
@chat ||= Chat.new self
|
79
89
|
end
|
80
|
-
|
90
|
+
|
91
|
+
##
|
92
|
+
# Access the Fax Twilio Domain
|
93
|
+
def fax
|
94
|
+
@fax ||= Fax.new self
|
95
|
+
end
|
96
|
+
|
81
97
|
##
|
82
98
|
# Access the IpMessaging Twilio Domain
|
83
99
|
def ip_messaging
|
84
100
|
@ip_messaging ||= IpMessaging.new self
|
85
101
|
end
|
86
|
-
|
102
|
+
|
87
103
|
##
|
88
104
|
# Access the Lookups Twilio Domain
|
89
105
|
def lookups
|
90
106
|
@lookups ||= Lookups.new self
|
91
107
|
end
|
92
|
-
|
108
|
+
|
93
109
|
##
|
94
110
|
# Access the Monitor Twilio Domain
|
95
111
|
def monitor
|
96
112
|
@monitor ||= Monitor.new self
|
97
113
|
end
|
98
|
-
|
114
|
+
|
99
115
|
##
|
100
116
|
# Access the Notify Twilio Domain
|
101
117
|
def notify
|
102
118
|
@notify ||= Notify.new self
|
103
119
|
end
|
104
|
-
|
120
|
+
|
105
121
|
##
|
106
122
|
# Access the Preview Twilio Domain
|
107
123
|
def preview
|
108
124
|
@preview ||= Preview.new self
|
109
125
|
end
|
110
|
-
|
126
|
+
|
111
127
|
##
|
112
128
|
# Access the Pricing Twilio Domain
|
113
129
|
def pricing
|
114
130
|
@pricing ||= Pricing.new self
|
115
131
|
end
|
116
|
-
|
132
|
+
|
117
133
|
##
|
118
134
|
# Access the Taskrouter Twilio Domain
|
119
135
|
def taskrouter
|
120
136
|
@taskrouter ||= Taskrouter.new self
|
121
137
|
end
|
122
|
-
|
138
|
+
|
123
139
|
##
|
124
140
|
# Access the Trunking Twilio Domain
|
125
141
|
def trunking
|
126
142
|
@trunking ||= Trunking.new self
|
127
143
|
end
|
128
|
-
|
129
|
-
|
130
|
-
|
144
|
+
|
145
|
+
##
|
146
|
+
# Access the Video Twilio Domain
|
147
|
+
def video
|
148
|
+
@video ||= Video.new self
|
131
149
|
end
|
132
|
-
|
133
|
-
|
134
|
-
|
150
|
+
|
151
|
+
##
|
152
|
+
# Access the Messaging Twilio Domain
|
153
|
+
def messaging
|
154
|
+
@messaging ||= Messaging.new self
|
135
155
|
end
|
136
|
-
|
156
|
+
|
137
157
|
def addresses
|
138
|
-
return self.account.addresses
|
158
|
+
return self.api.v2010.account.addresses
|
139
159
|
end
|
140
|
-
|
160
|
+
|
141
161
|
def applications
|
142
|
-
return self.account.applications
|
162
|
+
return self.api.v2010.account.applications
|
143
163
|
end
|
144
|
-
|
164
|
+
|
145
165
|
def authorized_connect_apps
|
146
|
-
return self.account.authorized_connect_apps
|
166
|
+
return self.api.v2010.account.authorized_connect_apps
|
147
167
|
end
|
148
|
-
|
168
|
+
|
149
169
|
def available_phone_numbers
|
150
|
-
return self.account.available_phone_numbers
|
170
|
+
return self.api.v2010.account.available_phone_numbers
|
151
171
|
end
|
152
|
-
|
172
|
+
|
153
173
|
def calls
|
154
|
-
return self.account.calls
|
174
|
+
return self.api.v2010.account.calls
|
155
175
|
end
|
156
|
-
|
176
|
+
|
157
177
|
def conferences
|
158
|
-
return self.account.conferences
|
178
|
+
return self.api.v2010.account.conferences
|
159
179
|
end
|
160
|
-
|
180
|
+
|
161
181
|
def connect_apps
|
162
|
-
return self.account.connect_apps
|
182
|
+
return self.api.v2010.account.connect_apps
|
163
183
|
end
|
164
|
-
|
184
|
+
|
165
185
|
def incoming_phone_numbers
|
166
|
-
return self.account.incoming_phone_numbers
|
186
|
+
return self.api.v2010.account.incoming_phone_numbers
|
167
187
|
end
|
168
|
-
|
188
|
+
|
169
189
|
def keys
|
170
|
-
return self.account.keys
|
190
|
+
return self.api.v2010.account.keys
|
171
191
|
end
|
172
|
-
|
192
|
+
|
173
193
|
def messages
|
174
|
-
return self.account.messages
|
194
|
+
return self.api.v2010.account.messages
|
175
195
|
end
|
176
|
-
|
196
|
+
|
177
197
|
def new_keys
|
178
|
-
return self.account.new_keys
|
198
|
+
return self.api.v2010.account.new_keys
|
179
199
|
end
|
180
|
-
|
200
|
+
|
181
201
|
def new_signing_keys
|
182
|
-
return self.account.new_signing_keys
|
202
|
+
return self.api.v2010.account.new_signing_keys
|
183
203
|
end
|
184
|
-
|
204
|
+
|
185
205
|
def notifications
|
186
|
-
return self.account.notifications
|
206
|
+
return self.api.v2010.account.notifications
|
187
207
|
end
|
188
|
-
|
208
|
+
|
189
209
|
def outgoing_caller_ids
|
190
|
-
return self.account.outgoing_caller_ids
|
210
|
+
return self.api.v2010.account.outgoing_caller_ids
|
191
211
|
end
|
192
|
-
|
212
|
+
|
193
213
|
def queues
|
194
|
-
return self.account.queues
|
214
|
+
return self.api.v2010.account.queues
|
195
215
|
end
|
196
|
-
|
216
|
+
|
197
217
|
def recordings
|
198
|
-
return self.account.recordings
|
218
|
+
return self.api.v2010.account.recordings
|
199
219
|
end
|
200
|
-
|
201
|
-
def sandbox
|
202
|
-
return self.account.sandbox
|
203
|
-
end
|
204
|
-
|
220
|
+
|
205
221
|
def signing_keys
|
206
|
-
return self.account.signing_keys
|
222
|
+
return self.api.v2010.account.signing_keys
|
207
223
|
end
|
208
|
-
|
224
|
+
|
209
225
|
def sip
|
210
|
-
return self.account.sip
|
226
|
+
return self.api.v2010.account.sip
|
211
227
|
end
|
212
|
-
|
228
|
+
|
213
229
|
def short_codes
|
214
|
-
return self.account.short_codes
|
230
|
+
return self.api.v2010.account.short_codes
|
215
231
|
end
|
216
|
-
|
232
|
+
|
217
233
|
def tokens
|
218
|
-
return self.account.tokens
|
234
|
+
return self.api.v2010.account.tokens
|
219
235
|
end
|
220
|
-
|
236
|
+
|
221
237
|
def transcriptions
|
222
|
-
return self.account.transcriptions
|
238
|
+
return self.api.v2010.account.transcriptions
|
223
239
|
end
|
224
|
-
|
240
|
+
|
225
241
|
def usage
|
226
|
-
return self.account.usage
|
242
|
+
return self.api.v2010.account.usage
|
227
243
|
end
|
228
|
-
|
244
|
+
|
229
245
|
def validation_requests
|
230
|
-
return self.account.validation_requests
|
246
|
+
return self.api.v2010.account.validation_requests
|
231
247
|
end
|
232
|
-
|
248
|
+
|
233
249
|
##
|
234
250
|
# Provide a user friendly representation
|
235
251
|
def to_s
|
@@ -0,0 +1,40 @@
|
|
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
|
+
##
|
11
|
+
# Initialize the Fax Domain
|
12
|
+
def initialize(twilio)
|
13
|
+
super
|
14
|
+
|
15
|
+
@base_url = 'https://fax.twilio.com'
|
16
|
+
@host = 'fax.twilio.com'
|
17
|
+
@port = 443
|
18
|
+
|
19
|
+
# Versions
|
20
|
+
@v1 = nil
|
21
|
+
end
|
22
|
+
|
23
|
+
##
|
24
|
+
# Version v1 of fax
|
25
|
+
def v1
|
26
|
+
@v1 ||= V1.new self
|
27
|
+
end
|
28
|
+
|
29
|
+
def faxes
|
30
|
+
self.v1.faxes
|
31
|
+
end
|
32
|
+
|
33
|
+
##
|
34
|
+
# Provide a user friendly representation
|
35
|
+
def to_s
|
36
|
+
'#<Twilio::REST::Fax>'
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
##
|
2
|
+
# This code was generated by
|
3
|
+
# \ / _ _ _| _ _
|
4
|
+
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
5
|
+
# / /
|
6
|
+
|
7
|
+
module Twilio
|
8
|
+
module REST
|
9
|
+
class Fax
|
10
|
+
class V1 < Version
|
11
|
+
##
|
12
|
+
# Initialize the V1 version of Fax
|
13
|
+
def initialize(domain)
|
14
|
+
super
|
15
|
+
@version = 'v1'
|
16
|
+
@faxes = nil
|
17
|
+
end
|
18
|
+
|
19
|
+
def faxes(sid=:unset)
|
20
|
+
if sid == :unset
|
21
|
+
@faxes ||= FaxList.new self
|
22
|
+
else
|
23
|
+
FaxContext.new(self, sid)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
##
|
28
|
+
# Provide a user friendly representation
|
29
|
+
def to_s
|
30
|
+
'<Twilio::REST::Fax::V1>'
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,397 @@
|
|
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 FaxList < ListResource
|
12
|
+
##
|
13
|
+
# Initialize the FaxList
|
14
|
+
# @param [Version] version Version that contains the resource
|
15
|
+
# @return [FaxList] FaxList
|
16
|
+
def initialize(version)
|
17
|
+
super(version)
|
18
|
+
|
19
|
+
# Path Solution
|
20
|
+
@solution = {}
|
21
|
+
@uri = "/Faxes"
|
22
|
+
end
|
23
|
+
|
24
|
+
##
|
25
|
+
# Lists FaxInstance 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 [String] from The from
|
29
|
+
# @param [String] to The to
|
30
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
31
|
+
# guarantees to never return more than limit. Default is no limit
|
32
|
+
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
33
|
+
# the default value of 50 records. If no page_size is defined
|
34
|
+
# but a limit is defined, stream() will attempt to read the
|
35
|
+
# limit with the most efficient page size, i.e. min(limit, 1000)
|
36
|
+
# @return [Array] Array of up to limit results
|
37
|
+
def list(from: nil, to: nil, limit: nil, page_size: nil)
|
38
|
+
self.stream(
|
39
|
+
from: from,
|
40
|
+
to: to,
|
41
|
+
limit: limit,
|
42
|
+
page_size: page_size
|
43
|
+
).entries
|
44
|
+
end
|
45
|
+
|
46
|
+
##
|
47
|
+
# Streams FaxInstance records from the API as an Enumerable.
|
48
|
+
# This operation lazily loads records as efficiently as possible until the limit
|
49
|
+
# is reached.
|
50
|
+
# @param [String] from The from
|
51
|
+
# @param [String] to The to
|
52
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
53
|
+
# guarantees to never return more than limit. Default is no limit
|
54
|
+
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
55
|
+
# the default value of 50 records. If no page_size is defined
|
56
|
+
# but a limit is defined, stream() will attempt to read the
|
57
|
+
# limit with the most efficient page size, i.e. min(limit, 1000)
|
58
|
+
# @return [Enumerable] Enumerable that will yield up to limit results
|
59
|
+
def stream(from: nil, to: nil, limit: nil, page_size: nil)
|
60
|
+
limits = @version.read_limits(limit, page_size)
|
61
|
+
|
62
|
+
page = self.page(
|
63
|
+
from: from,
|
64
|
+
to: to,
|
65
|
+
page_size: limits[:page_size],
|
66
|
+
)
|
67
|
+
|
68
|
+
@version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
|
69
|
+
end
|
70
|
+
|
71
|
+
##
|
72
|
+
# When passed a block, yields FaxInstance records from the API.
|
73
|
+
# This operation lazily loads records as efficiently as possible until the limit
|
74
|
+
# is reached.
|
75
|
+
# @param [String] from The from
|
76
|
+
# @param [String] to The to
|
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
|
+
def each
|
84
|
+
limits = @version.read_limits
|
85
|
+
|
86
|
+
page = self.page(
|
87
|
+
page_size: limits[:page_size],
|
88
|
+
)
|
89
|
+
|
90
|
+
@version.stream(page,
|
91
|
+
limit: limits[:limit],
|
92
|
+
page_limit: limits[:page_limit]).each {|x| yield x}
|
93
|
+
end
|
94
|
+
|
95
|
+
##
|
96
|
+
# Retrieve a single page of FaxInstance records from the API.
|
97
|
+
# Request is executed immediately.
|
98
|
+
# @param [String] from The from
|
99
|
+
# @param [String] to The to
|
100
|
+
# @param [String] page_token PageToken provided by the API
|
101
|
+
# @param [Integer] page_number Page Number, this value is simply for client state
|
102
|
+
# @param [Integer] page_size Number of records to return, defaults to 50
|
103
|
+
# @return [Page] Page of FaxInstance
|
104
|
+
def page(from: nil, to: nil, page_token: nil, page_number: nil, page_size: nil)
|
105
|
+
params = {
|
106
|
+
'From' => from,
|
107
|
+
'To' => to,
|
108
|
+
'PageToken' => page_token,
|
109
|
+
'Page' => page_number,
|
110
|
+
'PageSize' => page_size,
|
111
|
+
}
|
112
|
+
response = @version.page(
|
113
|
+
'GET',
|
114
|
+
@uri,
|
115
|
+
params
|
116
|
+
)
|
117
|
+
return FaxPage.new(@version, response, @solution)
|
118
|
+
end
|
119
|
+
|
120
|
+
##
|
121
|
+
# Retrieve a single page of FaxInstance records from the API.
|
122
|
+
# Request is executed immediately.
|
123
|
+
# @param [String] from The from
|
124
|
+
# @param [String] to The to
|
125
|
+
# @param [String] media_url The media_url
|
126
|
+
# @param [fax.Quality] quality The quality
|
127
|
+
# @param [String] status_callback The status_callback
|
128
|
+
# @return [FaxInstance] Newly created FaxInstance
|
129
|
+
def create(from: nil, to: nil, media_url: nil, quality: nil, status_callback: nil)
|
130
|
+
data = {
|
131
|
+
'From' => from,
|
132
|
+
'To' => to,
|
133
|
+
'MediaUrl' => media_url,
|
134
|
+
'Quality' => quality,
|
135
|
+
'StatusCallback' => status_callback,
|
136
|
+
}
|
137
|
+
|
138
|
+
payload = @version.create(
|
139
|
+
'POST',
|
140
|
+
@uri,
|
141
|
+
data: data
|
142
|
+
)
|
143
|
+
|
144
|
+
return FaxInstance.new(
|
145
|
+
@version,
|
146
|
+
payload,
|
147
|
+
)
|
148
|
+
end
|
149
|
+
|
150
|
+
##
|
151
|
+
# Provide a user friendly representation
|
152
|
+
def to_s
|
153
|
+
'#<Twilio.Fax.V1.FaxList>'
|
154
|
+
end
|
155
|
+
end
|
156
|
+
|
157
|
+
class FaxPage < Page
|
158
|
+
##
|
159
|
+
# Initialize the FaxPage
|
160
|
+
# @param [Version] version Version that contains the resource
|
161
|
+
# @param [Response] response Response from the API
|
162
|
+
# @param [Hash] solution Path solution for the resource
|
163
|
+
# @return [FaxPage] FaxPage
|
164
|
+
def initialize(version, response, solution)
|
165
|
+
super(version, response)
|
166
|
+
|
167
|
+
# Path Solution
|
168
|
+
@solution = solution
|
169
|
+
end
|
170
|
+
|
171
|
+
##
|
172
|
+
# Build an instance of FaxInstance
|
173
|
+
# @param [Hash] payload Payload response from the API
|
174
|
+
# @return [FaxInstance] FaxInstance
|
175
|
+
def get_instance(payload)
|
176
|
+
return FaxInstance.new(
|
177
|
+
@version,
|
178
|
+
payload,
|
179
|
+
)
|
180
|
+
end
|
181
|
+
|
182
|
+
##
|
183
|
+
# Provide a user friendly representation
|
184
|
+
def to_s
|
185
|
+
'<Twilio.Fax.V1.FaxPage>'
|
186
|
+
end
|
187
|
+
end
|
188
|
+
|
189
|
+
class FaxContext < InstanceContext
|
190
|
+
##
|
191
|
+
# Initialize the FaxContext
|
192
|
+
# @param [Version] version Version that contains the resource
|
193
|
+
# @param [String] sid The sid
|
194
|
+
# @return [FaxContext] FaxContext
|
195
|
+
def initialize(version, sid)
|
196
|
+
super(version)
|
197
|
+
|
198
|
+
# Path Solution
|
199
|
+
@solution = {
|
200
|
+
sid: sid,
|
201
|
+
}
|
202
|
+
@uri = "/Faxes/#{@solution[:sid]}"
|
203
|
+
end
|
204
|
+
|
205
|
+
##
|
206
|
+
# Fetch a FaxInstance
|
207
|
+
# @return [FaxInstance] Fetched FaxInstance
|
208
|
+
def fetch
|
209
|
+
params = {}
|
210
|
+
|
211
|
+
payload = @version.fetch(
|
212
|
+
'GET',
|
213
|
+
@uri,
|
214
|
+
params,
|
215
|
+
)
|
216
|
+
|
217
|
+
return FaxInstance.new(
|
218
|
+
@version,
|
219
|
+
payload,
|
220
|
+
sid: @solution[:sid],
|
221
|
+
)
|
222
|
+
end
|
223
|
+
|
224
|
+
##
|
225
|
+
# Update the FaxInstance
|
226
|
+
# @param [fax.UpdateStatus] status The status
|
227
|
+
# @return [FaxInstance] Updated FaxInstance
|
228
|
+
def update(status: nil)
|
229
|
+
data = {
|
230
|
+
'Status' => status,
|
231
|
+
}
|
232
|
+
|
233
|
+
payload = @version.update(
|
234
|
+
'POST',
|
235
|
+
@uri,
|
236
|
+
data: data,
|
237
|
+
)
|
238
|
+
|
239
|
+
return FaxInstance.new(
|
240
|
+
@version,
|
241
|
+
payload,
|
242
|
+
sid: @solution[:sid],
|
243
|
+
)
|
244
|
+
end
|
245
|
+
|
246
|
+
##
|
247
|
+
# Provide a user friendly representation
|
248
|
+
def to_s
|
249
|
+
context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
|
250
|
+
"#<Twilio.Fax.V1.FaxContext #{context}>"
|
251
|
+
end
|
252
|
+
end
|
253
|
+
|
254
|
+
class FaxInstance < InstanceResource
|
255
|
+
##
|
256
|
+
# Initialize the FaxInstance
|
257
|
+
# @param [Version] version Version that contains the resource
|
258
|
+
# @param [Hash] payload payload that contains response from Twilio
|
259
|
+
# @param [String] sid The sid
|
260
|
+
# @return [FaxInstance] FaxInstance
|
261
|
+
def initialize(version, payload, sid: nil)
|
262
|
+
super(version)
|
263
|
+
|
264
|
+
# Marshaled Properties
|
265
|
+
@properties = {
|
266
|
+
'sid' => payload['sid'],
|
267
|
+
'account_sid' => payload['account_sid'],
|
268
|
+
'from' => payload['from'],
|
269
|
+
'to' => payload['to'],
|
270
|
+
'quality' => payload['quality'],
|
271
|
+
'media_url' => payload['media_url'],
|
272
|
+
'num_pages' => payload['num_pages'] == nil ? payload['num_pages'] : payload['num_pages'].to_i,
|
273
|
+
'duration' => payload['duration'] == nil ? payload['duration'] : payload['duration'].to_i,
|
274
|
+
'status' => payload['status'],
|
275
|
+
'direction' => payload['direction'],
|
276
|
+
'api_version' => payload['api_version'],
|
277
|
+
'price' => payload['price'].to_f,
|
278
|
+
'price_unit' => payload['price_unit'],
|
279
|
+
'date_created' => Twilio.deserialize_iso8601(payload['date_created']),
|
280
|
+
'date_updated' => Twilio.deserialize_iso8601(payload['date_updated']),
|
281
|
+
'url' => payload['url'],
|
282
|
+
}
|
283
|
+
|
284
|
+
# Context
|
285
|
+
@instance_context = nil
|
286
|
+
@params = {
|
287
|
+
'sid' => sid || @properties['sid'],
|
288
|
+
}
|
289
|
+
end
|
290
|
+
|
291
|
+
##
|
292
|
+
# Generate an instance context for the instance, the context is capable of
|
293
|
+
# performing various actions. All instance actions are proxied to the context
|
294
|
+
# @param [Version] version Version that contains the resource
|
295
|
+
# @return [FaxContext] FaxContext for this FaxInstance
|
296
|
+
def context
|
297
|
+
unless @instance_context
|
298
|
+
@instance_context = FaxContext.new(
|
299
|
+
@version,
|
300
|
+
@params['sid'],
|
301
|
+
)
|
302
|
+
end
|
303
|
+
@instance_context
|
304
|
+
end
|
305
|
+
|
306
|
+
def sid
|
307
|
+
@properties['sid']
|
308
|
+
end
|
309
|
+
|
310
|
+
def account_sid
|
311
|
+
@properties['account_sid']
|
312
|
+
end
|
313
|
+
|
314
|
+
def from
|
315
|
+
@properties['from']
|
316
|
+
end
|
317
|
+
|
318
|
+
def to
|
319
|
+
@properties['to']
|
320
|
+
end
|
321
|
+
|
322
|
+
def quality
|
323
|
+
@properties['quality']
|
324
|
+
end
|
325
|
+
|
326
|
+
def media_url
|
327
|
+
@properties['media_url']
|
328
|
+
end
|
329
|
+
|
330
|
+
def num_pages
|
331
|
+
@properties['num_pages']
|
332
|
+
end
|
333
|
+
|
334
|
+
def duration
|
335
|
+
@properties['duration']
|
336
|
+
end
|
337
|
+
|
338
|
+
def status
|
339
|
+
@properties['status']
|
340
|
+
end
|
341
|
+
|
342
|
+
def direction
|
343
|
+
@properties['direction']
|
344
|
+
end
|
345
|
+
|
346
|
+
def api_version
|
347
|
+
@properties['api_version']
|
348
|
+
end
|
349
|
+
|
350
|
+
def price
|
351
|
+
@properties['price']
|
352
|
+
end
|
353
|
+
|
354
|
+
def price_unit
|
355
|
+
@properties['price_unit']
|
356
|
+
end
|
357
|
+
|
358
|
+
def date_created
|
359
|
+
@properties['date_created']
|
360
|
+
end
|
361
|
+
|
362
|
+
def date_updated
|
363
|
+
@properties['date_updated']
|
364
|
+
end
|
365
|
+
|
366
|
+
def url
|
367
|
+
@properties['url']
|
368
|
+
end
|
369
|
+
|
370
|
+
##
|
371
|
+
# Fetch a FaxInstance
|
372
|
+
# @return [FaxInstance] Fetched FaxInstance
|
373
|
+
def fetch
|
374
|
+
context.fetch
|
375
|
+
end
|
376
|
+
|
377
|
+
##
|
378
|
+
# Update the FaxInstance
|
379
|
+
# @param [fax.UpdateStatus] status The status
|
380
|
+
# @return [FaxInstance] Updated FaxInstance
|
381
|
+
def update(status: nil)
|
382
|
+
context.update(
|
383
|
+
status: status,
|
384
|
+
)
|
385
|
+
end
|
386
|
+
|
387
|
+
##
|
388
|
+
# Provide a user friendly representation
|
389
|
+
def to_s
|
390
|
+
values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
|
391
|
+
"<Twilio.Fax.V1.FaxInstance #{values}>"
|
392
|
+
end
|
393
|
+
end
|
394
|
+
end
|
395
|
+
end
|
396
|
+
end
|
397
|
+
end
|