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
|
@@ -18,14 +18,14 @@ module Twilio
|
|
18
18
|
# @return [ConferenceList] ConferenceList
|
19
19
|
def initialize(version, account_sid: nil)
|
20
20
|
super(version)
|
21
|
-
|
21
|
+
|
22
22
|
# Path Solution
|
23
23
|
@solution = {
|
24
24
|
account_sid: account_sid
|
25
25
|
}
|
26
26
|
@uri = "/Accounts/#{@solution[:account_sid]}/Conferences.json"
|
27
27
|
end
|
28
|
-
|
28
|
+
|
29
29
|
##
|
30
30
|
# Lists ConferenceInstance records from the API as a list.
|
31
31
|
# Unlike stream(), this operation is eager and will load `limit` records into
|
@@ -61,7 +61,7 @@ module Twilio
|
|
61
61
|
page_size: page_size
|
62
62
|
).entries
|
63
63
|
end
|
64
|
-
|
64
|
+
|
65
65
|
##
|
66
66
|
# Streams ConferenceInstance records from the API as an Enumerable.
|
67
67
|
# This operation lazily loads records as efficiently as possible until the limit
|
@@ -85,7 +85,7 @@ module Twilio
|
|
85
85
|
# @return [Enumerable] Enumerable that will yield up to limit results
|
86
86
|
def stream(date_created_before: nil, date_created: nil, date_created_after: nil, date_updated_before: nil, date_updated: nil, date_updated_after: nil, friendly_name: nil, status: nil, limit: nil, page_size: nil)
|
87
87
|
limits = @version.read_limits(limit, page_size)
|
88
|
-
|
88
|
+
|
89
89
|
page = self.page(
|
90
90
|
date_created_before: date_created_before,
|
91
91
|
date_created: date_created,
|
@@ -97,10 +97,10 @@ module Twilio
|
|
97
97
|
status: status,
|
98
98
|
page_size: limits[:page_size],
|
99
99
|
)
|
100
|
-
|
100
|
+
|
101
101
|
@version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
|
102
102
|
end
|
103
|
-
|
103
|
+
|
104
104
|
##
|
105
105
|
# When passed a block, yields ConferenceInstance records from the API.
|
106
106
|
# This operation lazily loads records as efficiently as possible until the limit
|
@@ -123,16 +123,16 @@ module Twilio
|
|
123
123
|
# limit with the most efficient page size, i.e. min(limit, 1000)
|
124
124
|
def each
|
125
125
|
limits = @version.read_limits
|
126
|
-
|
126
|
+
|
127
127
|
page = self.page(
|
128
128
|
page_size: limits[:page_size],
|
129
129
|
)
|
130
|
-
|
130
|
+
|
131
131
|
@version.stream(page,
|
132
132
|
limit: limits[:limit],
|
133
133
|
page_limit: limits[:page_limit]).each {|x| yield x}
|
134
134
|
end
|
135
|
-
|
135
|
+
|
136
136
|
##
|
137
137
|
# Retrieve a single page of ConferenceInstance records from the API.
|
138
138
|
# Request is executed immediately.
|
@@ -171,14 +171,14 @@ module Twilio
|
|
171
171
|
)
|
172
172
|
return ConferencePage.new(@version, response, @solution)
|
173
173
|
end
|
174
|
-
|
174
|
+
|
175
175
|
##
|
176
176
|
# Provide a user friendly representation
|
177
177
|
def to_s
|
178
178
|
'#<Twilio.Api.V2010.ConferenceList>'
|
179
179
|
end
|
180
180
|
end
|
181
|
-
|
181
|
+
|
182
182
|
class ConferencePage < Page
|
183
183
|
##
|
184
184
|
# Initialize the ConferencePage
|
@@ -190,11 +190,11 @@ module Twilio
|
|
190
190
|
# @return [ConferencePage] ConferencePage
|
191
191
|
def initialize(version, response, solution)
|
192
192
|
super(version, response)
|
193
|
-
|
193
|
+
|
194
194
|
# Path Solution
|
195
195
|
@solution = solution
|
196
196
|
end
|
197
|
-
|
197
|
+
|
198
198
|
##
|
199
199
|
# Build an instance of ConferenceInstance
|
200
200
|
# @param [Hash] payload Payload response from the API
|
@@ -206,14 +206,14 @@ module Twilio
|
|
206
206
|
account_sid: @solution[:account_sid],
|
207
207
|
)
|
208
208
|
end
|
209
|
-
|
209
|
+
|
210
210
|
##
|
211
211
|
# Provide a user friendly representation
|
212
212
|
def to_s
|
213
213
|
'<Twilio.Api.V2010.ConferencePage>'
|
214
214
|
end
|
215
215
|
end
|
216
|
-
|
216
|
+
|
217
217
|
class ConferenceContext < InstanceContext
|
218
218
|
##
|
219
219
|
# Initialize the ConferenceContext
|
@@ -223,30 +223,30 @@ module Twilio
|
|
223
223
|
# @return [ConferenceContext] ConferenceContext
|
224
224
|
def initialize(version, account_sid, sid)
|
225
225
|
super(version)
|
226
|
-
|
226
|
+
|
227
227
|
# Path Solution
|
228
228
|
@solution = {
|
229
229
|
account_sid: account_sid,
|
230
230
|
sid: sid,
|
231
231
|
}
|
232
232
|
@uri = "/Accounts/#{@solution[:account_sid]}/Conferences/#{@solution[:sid]}.json"
|
233
|
-
|
233
|
+
|
234
234
|
# Dependents
|
235
235
|
@participants = nil
|
236
236
|
end
|
237
|
-
|
237
|
+
|
238
238
|
##
|
239
239
|
# Fetch a ConferenceInstance
|
240
240
|
# @return [ConferenceInstance] Fetched ConferenceInstance
|
241
241
|
def fetch
|
242
242
|
params = {}
|
243
|
-
|
243
|
+
|
244
244
|
payload = @version.fetch(
|
245
245
|
'GET',
|
246
246
|
@uri,
|
247
247
|
params,
|
248
248
|
)
|
249
|
-
|
249
|
+
|
250
250
|
return ConferenceInstance.new(
|
251
251
|
@version,
|
252
252
|
payload,
|
@@ -254,7 +254,30 @@ module Twilio
|
|
254
254
|
sid: @solution[:sid],
|
255
255
|
)
|
256
256
|
end
|
257
|
-
|
257
|
+
|
258
|
+
##
|
259
|
+
# Update the ConferenceInstance
|
260
|
+
# @param [conference.UpdateStatus] status The status
|
261
|
+
# @return [ConferenceInstance] Updated ConferenceInstance
|
262
|
+
def update(status: nil)
|
263
|
+
data = {
|
264
|
+
'Status' => status,
|
265
|
+
}
|
266
|
+
|
267
|
+
payload = @version.update(
|
268
|
+
'POST',
|
269
|
+
@uri,
|
270
|
+
data: data,
|
271
|
+
)
|
272
|
+
|
273
|
+
return ConferenceInstance.new(
|
274
|
+
@version,
|
275
|
+
payload,
|
276
|
+
account_sid: @solution[:account_sid],
|
277
|
+
sid: @solution[:sid],
|
278
|
+
)
|
279
|
+
end
|
280
|
+
|
258
281
|
##
|
259
282
|
# Access the participants
|
260
283
|
# @return [ParticipantList] ParticipantList
|
@@ -267,7 +290,7 @@ module Twilio
|
|
267
290
|
call_sid,
|
268
291
|
)
|
269
292
|
end
|
270
|
-
|
293
|
+
|
271
294
|
unless @participants
|
272
295
|
@participants = ParticipantList.new(
|
273
296
|
@version,
|
@@ -275,10 +298,10 @@ module Twilio
|
|
275
298
|
conference_sid: @solution[:sid],
|
276
299
|
)
|
277
300
|
end
|
278
|
-
|
301
|
+
|
279
302
|
@participants
|
280
303
|
end
|
281
|
-
|
304
|
+
|
282
305
|
##
|
283
306
|
# Provide a user friendly representation
|
284
307
|
def to_s
|
@@ -286,7 +309,7 @@ module Twilio
|
|
286
309
|
"#<Twilio.Api.V2010.ConferenceContext #{context}>"
|
287
310
|
end
|
288
311
|
end
|
289
|
-
|
312
|
+
|
290
313
|
class ConferenceInstance < InstanceResource
|
291
314
|
##
|
292
315
|
# Initialize the ConferenceInstance
|
@@ -298,7 +321,7 @@ module Twilio
|
|
298
321
|
# @return [ConferenceInstance] ConferenceInstance
|
299
322
|
def initialize(version, payload, account_sid: nil, sid: nil)
|
300
323
|
super(version)
|
301
|
-
|
324
|
+
|
302
325
|
# Marshaled Properties
|
303
326
|
@properties = {
|
304
327
|
'account_sid' => payload['account_sid'],
|
@@ -306,11 +329,13 @@ module Twilio
|
|
306
329
|
'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']),
|
307
330
|
'api_version' => payload['api_version'],
|
308
331
|
'friendly_name' => payload['friendly_name'],
|
332
|
+
'region' => payload['region'],
|
309
333
|
'sid' => payload['sid'],
|
310
334
|
'status' => payload['status'],
|
311
335
|
'uri' => payload['uri'],
|
336
|
+
'subresource_uris' => payload['subresource_uris'],
|
312
337
|
}
|
313
|
-
|
338
|
+
|
314
339
|
# Context
|
315
340
|
@instance_context = nil
|
316
341
|
@params = {
|
@@ -318,7 +343,7 @@ module Twilio
|
|
318
343
|
'sid' => sid || @properties['sid'],
|
319
344
|
}
|
320
345
|
end
|
321
|
-
|
346
|
+
|
322
347
|
##
|
323
348
|
# Generate an instance context for the instance, the context is capable of
|
324
349
|
# performing various actions. All instance actions are proxied to the context
|
@@ -334,53 +359,71 @@ module Twilio
|
|
334
359
|
end
|
335
360
|
@instance_context
|
336
361
|
end
|
337
|
-
|
362
|
+
|
338
363
|
def account_sid
|
339
364
|
@properties['account_sid']
|
340
365
|
end
|
341
|
-
|
366
|
+
|
342
367
|
def date_created
|
343
368
|
@properties['date_created']
|
344
369
|
end
|
345
|
-
|
370
|
+
|
346
371
|
def date_updated
|
347
372
|
@properties['date_updated']
|
348
373
|
end
|
349
|
-
|
374
|
+
|
350
375
|
def api_version
|
351
376
|
@properties['api_version']
|
352
377
|
end
|
353
|
-
|
378
|
+
|
354
379
|
def friendly_name
|
355
380
|
@properties['friendly_name']
|
356
381
|
end
|
357
|
-
|
382
|
+
|
383
|
+
def region
|
384
|
+
@properties['region']
|
385
|
+
end
|
386
|
+
|
358
387
|
def sid
|
359
388
|
@properties['sid']
|
360
389
|
end
|
361
|
-
|
390
|
+
|
362
391
|
def status
|
363
392
|
@properties['status']
|
364
393
|
end
|
365
|
-
|
394
|
+
|
366
395
|
def uri
|
367
396
|
@properties['uri']
|
368
397
|
end
|
369
|
-
|
398
|
+
|
399
|
+
def subresource_uris
|
400
|
+
@properties['subresource_uris']
|
401
|
+
end
|
402
|
+
|
370
403
|
##
|
371
404
|
# Fetch a ConferenceInstance
|
372
405
|
# @return [ConferenceInstance] Fetched ConferenceInstance
|
373
406
|
def fetch
|
374
407
|
context.fetch
|
375
408
|
end
|
376
|
-
|
409
|
+
|
410
|
+
##
|
411
|
+
# Update the ConferenceInstance
|
412
|
+
# @param [conference.UpdateStatus] status The status
|
413
|
+
# @return [ConferenceInstance] Updated ConferenceInstance
|
414
|
+
def update(status: nil)
|
415
|
+
context.update(
|
416
|
+
status: status,
|
417
|
+
)
|
418
|
+
end
|
419
|
+
|
377
420
|
##
|
378
421
|
# Access the participants
|
379
422
|
# @return [participants] participants
|
380
423
|
def participants
|
381
424
|
context.participants
|
382
425
|
end
|
383
|
-
|
426
|
+
|
384
427
|
##
|
385
428
|
# Provide a user friendly representation
|
386
429
|
def to_s
|
@@ -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
|
@@ -21,7 +21,7 @@ module Twilio
|
|
21
21
|
# @return [ParticipantList] ParticipantList
|
22
22
|
def initialize(version, account_sid: nil, conference_sid: nil)
|
23
23
|
super(version)
|
24
|
-
|
24
|
+
|
25
25
|
# Path Solution
|
26
26
|
@solution = {
|
27
27
|
account_sid: account_sid,
|
@@ -29,7 +29,90 @@ module Twilio
|
|
29
29
|
}
|
30
30
|
@uri = "/Accounts/#{@solution[:account_sid]}/Conferences/#{@solution[:conference_sid]}/Participants.json"
|
31
31
|
end
|
32
|
-
|
32
|
+
|
33
|
+
##
|
34
|
+
# Retrieve a single page of ParticipantInstance records from the API.
|
35
|
+
# Request is executed immediately.
|
36
|
+
# @param [String] from The from
|
37
|
+
# @param [String] to The to
|
38
|
+
# @param [String] status_callback The status_callback
|
39
|
+
# @param [String] status_callback_method The status_callback_method
|
40
|
+
# @param [String] status_callback_event The status_callback_event
|
41
|
+
# @param [String] timeout The timeout
|
42
|
+
# @param [Boolean] record The record
|
43
|
+
# @param [Boolean] muted The muted
|
44
|
+
# @param [String] beep The beep
|
45
|
+
# @param [Boolean] start_conference_on_enter The start_conference_on_enter
|
46
|
+
# @param [Boolean] end_conference_on_exit The end_conference_on_exit
|
47
|
+
# @param [String] wait_url The wait_url
|
48
|
+
# @param [String] wait_method The wait_method
|
49
|
+
# @param [Boolean] early_media The early_media
|
50
|
+
# @param [String] max_participants The max_participants
|
51
|
+
# @param [String] conference_record The conference_record
|
52
|
+
# @param [String] conference_trim The conference_trim
|
53
|
+
# @param [String] conference_status_callback The conference_status_callback
|
54
|
+
# @param [String] conference_status_callback_method The
|
55
|
+
# conference_status_callback_method
|
56
|
+
# @param [String] conference_status_callback_event The
|
57
|
+
# conference_status_callback_event
|
58
|
+
# @param [String] recording_channels The recording_channels
|
59
|
+
# @param [String] recording_status_callback The recording_status_callback
|
60
|
+
# @param [String] recording_status_callback_method The
|
61
|
+
# recording_status_callback_method
|
62
|
+
# @param [String] sip_auth_username The sip_auth_username
|
63
|
+
# @param [String] sip_auth_password The sip_auth_password
|
64
|
+
# @param [String] region The region
|
65
|
+
# @param [String] conference_recording_status_callback The
|
66
|
+
# conference_recording_status_callback
|
67
|
+
# @param [String] conference_recording_status_callback_method The
|
68
|
+
# conference_recording_status_callback_method
|
69
|
+
# @return [ParticipantInstance] Newly created ParticipantInstance
|
70
|
+
def create(from: nil, to: nil, status_callback: nil, status_callback_method: nil, status_callback_event: nil, timeout: nil, record: nil, muted: nil, beep: nil, start_conference_on_enter: nil, end_conference_on_exit: nil, wait_url: nil, wait_method: nil, early_media: nil, max_participants: nil, conference_record: nil, conference_trim: nil, conference_status_callback: nil, conference_status_callback_method: nil, conference_status_callback_event: nil, recording_channels: nil, recording_status_callback: nil, recording_status_callback_method: nil, sip_auth_username: nil, sip_auth_password: nil, region: nil, conference_recording_status_callback: nil, conference_recording_status_callback_method: nil)
|
71
|
+
data = {
|
72
|
+
'From' => from,
|
73
|
+
'To' => to,
|
74
|
+
'StatusCallback' => status_callback,
|
75
|
+
'StatusCallbackMethod' => status_callback_method,
|
76
|
+
'StatusCallbackEvent' => status_callback_event,
|
77
|
+
'Timeout' => timeout,
|
78
|
+
'Record' => record,
|
79
|
+
'Muted' => muted,
|
80
|
+
'Beep' => beep,
|
81
|
+
'StartConferenceOnEnter' => start_conference_on_enter,
|
82
|
+
'EndConferenceOnExit' => end_conference_on_exit,
|
83
|
+
'WaitUrl' => wait_url,
|
84
|
+
'WaitMethod' => wait_method,
|
85
|
+
'EarlyMedia' => early_media,
|
86
|
+
'MaxParticipants' => max_participants,
|
87
|
+
'ConferenceRecord' => conference_record,
|
88
|
+
'ConferenceTrim' => conference_trim,
|
89
|
+
'ConferenceStatusCallback' => conference_status_callback,
|
90
|
+
'ConferenceStatusCallbackMethod' => conference_status_callback_method,
|
91
|
+
'ConferenceStatusCallbackEvent' => conference_status_callback_event,
|
92
|
+
'RecordingChannels' => recording_channels,
|
93
|
+
'RecordingStatusCallback' => recording_status_callback,
|
94
|
+
'RecordingStatusCallbackMethod' => recording_status_callback_method,
|
95
|
+
'SipAuthUsername' => sip_auth_username,
|
96
|
+
'SipAuthPassword' => sip_auth_password,
|
97
|
+
'Region' => region,
|
98
|
+
'ConferenceRecordingStatusCallback' => conference_recording_status_callback,
|
99
|
+
'ConferenceRecordingStatusCallbackMethod' => conference_recording_status_callback_method,
|
100
|
+
}
|
101
|
+
|
102
|
+
payload = @version.create(
|
103
|
+
'POST',
|
104
|
+
@uri,
|
105
|
+
data: data
|
106
|
+
)
|
107
|
+
|
108
|
+
return ParticipantInstance.new(
|
109
|
+
@version,
|
110
|
+
payload,
|
111
|
+
account_sid: @solution[:account_sid],
|
112
|
+
conference_sid: @solution[:conference_sid],
|
113
|
+
)
|
114
|
+
end
|
115
|
+
|
33
116
|
##
|
34
117
|
# Lists ParticipantInstance records from the API as a list.
|
35
118
|
# Unlike stream(), this operation is eager and will load `limit` records into
|
@@ -51,7 +134,7 @@ module Twilio
|
|
51
134
|
page_size: page_size
|
52
135
|
).entries
|
53
136
|
end
|
54
|
-
|
137
|
+
|
55
138
|
##
|
56
139
|
# Streams ParticipantInstance records from the API as an Enumerable.
|
57
140
|
# This operation lazily loads records as efficiently as possible until the limit
|
@@ -67,16 +150,16 @@ module Twilio
|
|
67
150
|
# @return [Enumerable] Enumerable that will yield up to limit results
|
68
151
|
def stream(muted: nil, hold: nil, limit: nil, page_size: nil)
|
69
152
|
limits = @version.read_limits(limit, page_size)
|
70
|
-
|
153
|
+
|
71
154
|
page = self.page(
|
72
155
|
muted: muted,
|
73
156
|
hold: hold,
|
74
157
|
page_size: limits[:page_size],
|
75
158
|
)
|
76
|
-
|
159
|
+
|
77
160
|
@version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
|
78
161
|
end
|
79
|
-
|
162
|
+
|
80
163
|
##
|
81
164
|
# When passed a block, yields ParticipantInstance records from the API.
|
82
165
|
# This operation lazily loads records as efficiently as possible until the limit
|
@@ -91,16 +174,16 @@ module Twilio
|
|
91
174
|
# limit with the most efficient page size, i.e. min(limit, 1000)
|
92
175
|
def each
|
93
176
|
limits = @version.read_limits
|
94
|
-
|
177
|
+
|
95
178
|
page = self.page(
|
96
179
|
page_size: limits[:page_size],
|
97
180
|
)
|
98
|
-
|
181
|
+
|
99
182
|
@version.stream(page,
|
100
183
|
limit: limits[:limit],
|
101
184
|
page_limit: limits[:page_limit]).each {|x| yield x}
|
102
185
|
end
|
103
|
-
|
186
|
+
|
104
187
|
##
|
105
188
|
# Retrieve a single page of ParticipantInstance records from the API.
|
106
189
|
# Request is executed immediately.
|
@@ -125,14 +208,14 @@ module Twilio
|
|
125
208
|
)
|
126
209
|
return ParticipantPage.new(@version, response, @solution)
|
127
210
|
end
|
128
|
-
|
211
|
+
|
129
212
|
##
|
130
213
|
# Provide a user friendly representation
|
131
214
|
def to_s
|
132
215
|
'#<Twilio.Api.V2010.ParticipantList>'
|
133
216
|
end
|
134
217
|
end
|
135
|
-
|
218
|
+
|
136
219
|
class ParticipantPage < Page
|
137
220
|
##
|
138
221
|
# Initialize the ParticipantPage
|
@@ -146,11 +229,11 @@ module Twilio
|
|
146
229
|
# @return [ParticipantPage] ParticipantPage
|
147
230
|
def initialize(version, response, solution)
|
148
231
|
super(version, response)
|
149
|
-
|
232
|
+
|
150
233
|
# Path Solution
|
151
234
|
@solution = solution
|
152
235
|
end
|
153
|
-
|
236
|
+
|
154
237
|
##
|
155
238
|
# Build an instance of ParticipantInstance
|
156
239
|
# @param [Hash] payload Payload response from the API
|
@@ -163,14 +246,14 @@ module Twilio
|
|
163
246
|
conference_sid: @solution[:conference_sid],
|
164
247
|
)
|
165
248
|
end
|
166
|
-
|
249
|
+
|
167
250
|
##
|
168
251
|
# Provide a user friendly representation
|
169
252
|
def to_s
|
170
253
|
'<Twilio.Api.V2010.ParticipantPage>'
|
171
254
|
end
|
172
255
|
end
|
173
|
-
|
256
|
+
|
174
257
|
class ParticipantContext < InstanceContext
|
175
258
|
##
|
176
259
|
# Initialize the ParticipantContext
|
@@ -182,7 +265,7 @@ module Twilio
|
|
182
265
|
# @return [ParticipantContext] ParticipantContext
|
183
266
|
def initialize(version, account_sid, conference_sid, call_sid)
|
184
267
|
super(version)
|
185
|
-
|
268
|
+
|
186
269
|
# Path Solution
|
187
270
|
@solution = {
|
188
271
|
account_sid: account_sid,
|
@@ -191,19 +274,19 @@ module Twilio
|
|
191
274
|
}
|
192
275
|
@uri = "/Accounts/#{@solution[:account_sid]}/Conferences/#{@solution[:conference_sid]}/Participants/#{@solution[:call_sid]}.json"
|
193
276
|
end
|
194
|
-
|
277
|
+
|
195
278
|
##
|
196
279
|
# Fetch a ParticipantInstance
|
197
280
|
# @return [ParticipantInstance] Fetched ParticipantInstance
|
198
281
|
def fetch
|
199
282
|
params = {}
|
200
|
-
|
283
|
+
|
201
284
|
payload = @version.fetch(
|
202
285
|
'GET',
|
203
286
|
@uri,
|
204
287
|
params,
|
205
288
|
)
|
206
|
-
|
289
|
+
|
207
290
|
return ParticipantInstance.new(
|
208
291
|
@version,
|
209
292
|
payload,
|
@@ -212,7 +295,7 @@ module Twilio
|
|
212
295
|
call_sid: @solution[:call_sid],
|
213
296
|
)
|
214
297
|
end
|
215
|
-
|
298
|
+
|
216
299
|
##
|
217
300
|
# Update the ParticipantInstance
|
218
301
|
# @param [Boolean] muted Indicates if the participant should be muted
|
@@ -227,13 +310,13 @@ module Twilio
|
|
227
310
|
'HoldUrl' => hold_url,
|
228
311
|
'HoldMethod' => hold_method,
|
229
312
|
}
|
230
|
-
|
313
|
+
|
231
314
|
payload = @version.update(
|
232
315
|
'POST',
|
233
316
|
@uri,
|
234
317
|
data: data,
|
235
318
|
)
|
236
|
-
|
319
|
+
|
237
320
|
return ParticipantInstance.new(
|
238
321
|
@version,
|
239
322
|
payload,
|
@@ -242,14 +325,14 @@ module Twilio
|
|
242
325
|
call_sid: @solution[:call_sid],
|
243
326
|
)
|
244
327
|
end
|
245
|
-
|
328
|
+
|
246
329
|
##
|
247
330
|
# Deletes the ParticipantInstance
|
248
331
|
# @return [Boolean] true if delete succeeds, true otherwise
|
249
332
|
def delete
|
250
333
|
return @version.delete('delete', @uri)
|
251
334
|
end
|
252
|
-
|
335
|
+
|
253
336
|
##
|
254
337
|
# Provide a user friendly representation
|
255
338
|
def to_s
|
@@ -257,7 +340,7 @@ module Twilio
|
|
257
340
|
"#<Twilio.Api.V2010.ParticipantContext #{context}>"
|
258
341
|
end
|
259
342
|
end
|
260
|
-
|
343
|
+
|
261
344
|
class ParticipantInstance < InstanceResource
|
262
345
|
##
|
263
346
|
# Initialize the ParticipantInstance
|
@@ -271,7 +354,7 @@ module Twilio
|
|
271
354
|
# @return [ParticipantInstance] ParticipantInstance
|
272
355
|
def initialize(version, payload, account_sid: nil, conference_sid: nil, call_sid: nil)
|
273
356
|
super(version)
|
274
|
-
|
357
|
+
|
275
358
|
# Marshaled Properties
|
276
359
|
@properties = {
|
277
360
|
'account_sid' => payload['account_sid'],
|
@@ -283,9 +366,10 @@ module Twilio
|
|
283
366
|
'muted' => payload['muted'],
|
284
367
|
'hold' => payload['hold'],
|
285
368
|
'start_conference_on_enter' => payload['start_conference_on_enter'],
|
369
|
+
'status' => payload['status'],
|
286
370
|
'uri' => payload['uri'],
|
287
371
|
}
|
288
|
-
|
372
|
+
|
289
373
|
# Context
|
290
374
|
@instance_context = nil
|
291
375
|
@params = {
|
@@ -294,7 +378,7 @@ module Twilio
|
|
294
378
|
'call_sid' => call_sid || @properties['call_sid'],
|
295
379
|
}
|
296
380
|
end
|
297
|
-
|
381
|
+
|
298
382
|
##
|
299
383
|
# Generate an instance context for the instance, the context is capable of
|
300
384
|
# performing various actions. All instance actions are proxied to the context
|
@@ -311,54 +395,58 @@ module Twilio
|
|
311
395
|
end
|
312
396
|
@instance_context
|
313
397
|
end
|
314
|
-
|
398
|
+
|
315
399
|
def account_sid
|
316
400
|
@properties['account_sid']
|
317
401
|
end
|
318
|
-
|
402
|
+
|
319
403
|
def call_sid
|
320
404
|
@properties['call_sid']
|
321
405
|
end
|
322
|
-
|
406
|
+
|
323
407
|
def conference_sid
|
324
408
|
@properties['conference_sid']
|
325
409
|
end
|
326
|
-
|
410
|
+
|
327
411
|
def date_created
|
328
412
|
@properties['date_created']
|
329
413
|
end
|
330
|
-
|
414
|
+
|
331
415
|
def date_updated
|
332
416
|
@properties['date_updated']
|
333
417
|
end
|
334
|
-
|
418
|
+
|
335
419
|
def end_conference_on_exit
|
336
420
|
@properties['end_conference_on_exit']
|
337
421
|
end
|
338
|
-
|
422
|
+
|
339
423
|
def muted
|
340
424
|
@properties['muted']
|
341
425
|
end
|
342
|
-
|
426
|
+
|
343
427
|
def hold
|
344
428
|
@properties['hold']
|
345
429
|
end
|
346
|
-
|
430
|
+
|
347
431
|
def start_conference_on_enter
|
348
432
|
@properties['start_conference_on_enter']
|
349
433
|
end
|
350
|
-
|
434
|
+
|
435
|
+
def status
|
436
|
+
@properties['status']
|
437
|
+
end
|
438
|
+
|
351
439
|
def uri
|
352
440
|
@properties['uri']
|
353
441
|
end
|
354
|
-
|
442
|
+
|
355
443
|
##
|
356
444
|
# Fetch a ParticipantInstance
|
357
445
|
# @return [ParticipantInstance] Fetched ParticipantInstance
|
358
446
|
def fetch
|
359
447
|
context.fetch
|
360
448
|
end
|
361
|
-
|
449
|
+
|
362
450
|
##
|
363
451
|
# Update the ParticipantInstance
|
364
452
|
# @param [Boolean] muted Indicates if the participant should be muted
|
@@ -374,14 +462,14 @@ module Twilio
|
|
374
462
|
hold_method: hold_method,
|
375
463
|
)
|
376
464
|
end
|
377
|
-
|
465
|
+
|
378
466
|
##
|
379
467
|
# Deletes the ParticipantInstance
|
380
468
|
# @return [Boolean] true if delete succeeds, true otherwise
|
381
469
|
def delete
|
382
470
|
context.delete
|
383
471
|
end
|
384
|
-
|
472
|
+
|
385
473
|
##
|
386
474
|
# Provide a user friendly representation
|
387
475
|
def to_s
|