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
|
@@ -19,21 +19,21 @@ module Twilio
|
|
19
19
|
# @return [WorkflowStatisticsList] WorkflowStatisticsList
|
20
20
|
def initialize(version, workspace_sid: nil, workflow_sid: nil)
|
21
21
|
super(version)
|
22
|
-
|
22
|
+
|
23
23
|
# Path Solution
|
24
24
|
@solution = {
|
25
25
|
workspace_sid: workspace_sid,
|
26
26
|
workflow_sid: workflow_sid
|
27
27
|
}
|
28
28
|
end
|
29
|
-
|
29
|
+
|
30
30
|
##
|
31
31
|
# Provide a user friendly representation
|
32
32
|
def to_s
|
33
33
|
'#<Twilio.Taskrouter.V1.WorkflowStatisticsList>'
|
34
34
|
end
|
35
35
|
end
|
36
|
-
|
36
|
+
|
37
37
|
class WorkflowStatisticsPage < Page
|
38
38
|
##
|
39
39
|
# Initialize the WorkflowStatisticsPage
|
@@ -45,11 +45,11 @@ module Twilio
|
|
45
45
|
# @return [WorkflowStatisticsPage] WorkflowStatisticsPage
|
46
46
|
def initialize(version, response, solution)
|
47
47
|
super(version, response)
|
48
|
-
|
48
|
+
|
49
49
|
# Path Solution
|
50
50
|
@solution = solution
|
51
51
|
end
|
52
|
-
|
52
|
+
|
53
53
|
##
|
54
54
|
# Build an instance of WorkflowStatisticsInstance
|
55
55
|
# @param [Hash] payload Payload response from the API
|
@@ -62,14 +62,14 @@ module Twilio
|
|
62
62
|
workflow_sid: @solution[:workflow_sid],
|
63
63
|
)
|
64
64
|
end
|
65
|
-
|
65
|
+
|
66
66
|
##
|
67
67
|
# Provide a user friendly representation
|
68
68
|
def to_s
|
69
69
|
'<Twilio.Taskrouter.V1.WorkflowStatisticsPage>'
|
70
70
|
end
|
71
71
|
end
|
72
|
-
|
72
|
+
|
73
73
|
class WorkflowStatisticsContext < InstanceContext
|
74
74
|
##
|
75
75
|
# Initialize the WorkflowStatisticsContext
|
@@ -79,7 +79,7 @@ module Twilio
|
|
79
79
|
# @return [WorkflowStatisticsContext] WorkflowStatisticsContext
|
80
80
|
def initialize(version, workspace_sid, workflow_sid)
|
81
81
|
super(version)
|
82
|
-
|
82
|
+
|
83
83
|
# Path Solution
|
84
84
|
@solution = {
|
85
85
|
workspace_sid: workspace_sid,
|
@@ -87,7 +87,7 @@ module Twilio
|
|
87
87
|
}
|
88
88
|
@uri = "/Workspaces/#{@solution[:workspace_sid]}/Workflows/#{@solution[:workflow_sid]}/Statistics"
|
89
89
|
end
|
90
|
-
|
90
|
+
|
91
91
|
##
|
92
92
|
# Fetch a WorkflowStatisticsInstance
|
93
93
|
# @param [String] minutes The minutes
|
@@ -100,13 +100,13 @@ module Twilio
|
|
100
100
|
'StartDate' => Twilio.serialize_iso8601(start_date),
|
101
101
|
'EndDate' => Twilio.serialize_iso8601(end_date),
|
102
102
|
}
|
103
|
-
|
103
|
+
|
104
104
|
payload = @version.fetch(
|
105
105
|
'GET',
|
106
106
|
@uri,
|
107
107
|
params,
|
108
108
|
)
|
109
|
-
|
109
|
+
|
110
110
|
return WorkflowStatisticsInstance.new(
|
111
111
|
@version,
|
112
112
|
payload,
|
@@ -114,7 +114,7 @@ module Twilio
|
|
114
114
|
workflow_sid: @solution[:workflow_sid],
|
115
115
|
)
|
116
116
|
end
|
117
|
-
|
117
|
+
|
118
118
|
##
|
119
119
|
# Provide a user friendly representation
|
120
120
|
def to_s
|
@@ -122,7 +122,7 @@ module Twilio
|
|
122
122
|
"#<Twilio.Taskrouter.V1.WorkflowStatisticsContext #{context}>"
|
123
123
|
end
|
124
124
|
end
|
125
|
-
|
125
|
+
|
126
126
|
class WorkflowStatisticsInstance < InstanceResource
|
127
127
|
##
|
128
128
|
# Initialize the WorkflowStatisticsInstance
|
@@ -133,7 +133,7 @@ module Twilio
|
|
133
133
|
# @return [WorkflowStatisticsInstance] WorkflowStatisticsInstance
|
134
134
|
def initialize(version, payload, workspace_sid: nil, workflow_sid: nil)
|
135
135
|
super(version)
|
136
|
-
|
136
|
+
|
137
137
|
# Marshaled Properties
|
138
138
|
@properties = {
|
139
139
|
'account_sid' => payload['account_sid'],
|
@@ -141,8 +141,9 @@ module Twilio
|
|
141
141
|
'realtime' => payload['realtime'],
|
142
142
|
'workflow_sid' => payload['workflow_sid'],
|
143
143
|
'workspace_sid' => payload['workspace_sid'],
|
144
|
+
'url' => payload['url'],
|
144
145
|
}
|
145
|
-
|
146
|
+
|
146
147
|
# Context
|
147
148
|
@instance_context = nil
|
148
149
|
@params = {
|
@@ -150,7 +151,7 @@ module Twilio
|
|
150
151
|
'workflow_sid' => workflow_sid,
|
151
152
|
}
|
152
153
|
end
|
153
|
-
|
154
|
+
|
154
155
|
##
|
155
156
|
# Generate an instance context for the instance, the context is capable of
|
156
157
|
# performing various actions. All instance actions are proxied to the context
|
@@ -166,27 +167,31 @@ module Twilio
|
|
166
167
|
end
|
167
168
|
@instance_context
|
168
169
|
end
|
169
|
-
|
170
|
+
|
170
171
|
def account_sid
|
171
172
|
@properties['account_sid']
|
172
173
|
end
|
173
|
-
|
174
|
+
|
174
175
|
def cumulative
|
175
176
|
@properties['cumulative']
|
176
177
|
end
|
177
|
-
|
178
|
+
|
178
179
|
def realtime
|
179
180
|
@properties['realtime']
|
180
181
|
end
|
181
|
-
|
182
|
+
|
182
183
|
def workflow_sid
|
183
184
|
@properties['workflow_sid']
|
184
185
|
end
|
185
|
-
|
186
|
+
|
186
187
|
def workspace_sid
|
187
188
|
@properties['workspace_sid']
|
188
189
|
end
|
189
|
-
|
190
|
+
|
191
|
+
def url
|
192
|
+
@properties['url']
|
193
|
+
end
|
194
|
+
|
190
195
|
##
|
191
196
|
# Fetch a WorkflowStatisticsInstance
|
192
197
|
# @param [String] minutes The minutes
|
@@ -200,7 +205,7 @@ module Twilio
|
|
200
205
|
end_date: end_date,
|
201
206
|
)
|
202
207
|
end
|
203
|
-
|
208
|
+
|
204
209
|
##
|
205
210
|
# Provide a user friendly representation
|
206
211
|
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
|
@@ -17,20 +17,20 @@ module Twilio
|
|
17
17
|
# @return [WorkspaceStatisticsList] WorkspaceStatisticsList
|
18
18
|
def initialize(version, workspace_sid: nil)
|
19
19
|
super(version)
|
20
|
-
|
20
|
+
|
21
21
|
# Path Solution
|
22
22
|
@solution = {
|
23
23
|
workspace_sid: workspace_sid
|
24
24
|
}
|
25
25
|
end
|
26
|
-
|
26
|
+
|
27
27
|
##
|
28
28
|
# Provide a user friendly representation
|
29
29
|
def to_s
|
30
30
|
'#<Twilio.Taskrouter.V1.WorkspaceStatisticsList>'
|
31
31
|
end
|
32
32
|
end
|
33
|
-
|
33
|
+
|
34
34
|
class WorkspaceStatisticsPage < Page
|
35
35
|
##
|
36
36
|
# Initialize the WorkspaceStatisticsPage
|
@@ -41,11 +41,11 @@ module Twilio
|
|
41
41
|
# @return [WorkspaceStatisticsPage] WorkspaceStatisticsPage
|
42
42
|
def initialize(version, response, solution)
|
43
43
|
super(version, response)
|
44
|
-
|
44
|
+
|
45
45
|
# Path Solution
|
46
46
|
@solution = solution
|
47
47
|
end
|
48
|
-
|
48
|
+
|
49
49
|
##
|
50
50
|
# Build an instance of WorkspaceStatisticsInstance
|
51
51
|
# @param [Hash] payload Payload response from the API
|
@@ -57,14 +57,14 @@ module Twilio
|
|
57
57
|
workspace_sid: @solution[:workspace_sid],
|
58
58
|
)
|
59
59
|
end
|
60
|
-
|
60
|
+
|
61
61
|
##
|
62
62
|
# Provide a user friendly representation
|
63
63
|
def to_s
|
64
64
|
'<Twilio.Taskrouter.V1.WorkspaceStatisticsPage>'
|
65
65
|
end
|
66
66
|
end
|
67
|
-
|
67
|
+
|
68
68
|
class WorkspaceStatisticsContext < InstanceContext
|
69
69
|
##
|
70
70
|
# Initialize the WorkspaceStatisticsContext
|
@@ -73,40 +73,40 @@ module Twilio
|
|
73
73
|
# @return [WorkspaceStatisticsContext] WorkspaceStatisticsContext
|
74
74
|
def initialize(version, workspace_sid)
|
75
75
|
super(version)
|
76
|
-
|
76
|
+
|
77
77
|
# Path Solution
|
78
78
|
@solution = {
|
79
79
|
workspace_sid: workspace_sid,
|
80
80
|
}
|
81
81
|
@uri = "/Workspaces/#{@solution[:workspace_sid]}/Statistics"
|
82
82
|
end
|
83
|
-
|
83
|
+
|
84
84
|
##
|
85
85
|
# Fetch a WorkspaceStatisticsInstance
|
86
86
|
# @param [String] minutes The minutes
|
87
|
-
# @param [
|
88
|
-
# @param [
|
87
|
+
# @param [Time] start_date The start_date
|
88
|
+
# @param [Time] end_date The end_date
|
89
89
|
# @return [WorkspaceStatisticsInstance] Fetched WorkspaceStatisticsInstance
|
90
90
|
def fetch(minutes: nil, start_date: nil, end_date: nil)
|
91
91
|
params = {
|
92
92
|
'Minutes' => minutes,
|
93
|
-
'StartDate' => start_date,
|
94
|
-
'EndDate' => end_date,
|
93
|
+
'StartDate' => Twilio.serialize_iso8601(start_date),
|
94
|
+
'EndDate' => Twilio.serialize_iso8601(end_date),
|
95
95
|
}
|
96
|
-
|
96
|
+
|
97
97
|
payload = @version.fetch(
|
98
98
|
'GET',
|
99
99
|
@uri,
|
100
100
|
params,
|
101
101
|
)
|
102
|
-
|
102
|
+
|
103
103
|
return WorkspaceStatisticsInstance.new(
|
104
104
|
@version,
|
105
105
|
payload,
|
106
106
|
workspace_sid: @solution[:workspace_sid],
|
107
107
|
)
|
108
108
|
end
|
109
|
-
|
109
|
+
|
110
110
|
##
|
111
111
|
# Provide a user friendly representation
|
112
112
|
def to_s
|
@@ -114,7 +114,7 @@ module Twilio
|
|
114
114
|
"#<Twilio.Taskrouter.V1.WorkspaceStatisticsContext #{context}>"
|
115
115
|
end
|
116
116
|
end
|
117
|
-
|
117
|
+
|
118
118
|
class WorkspaceStatisticsInstance < InstanceResource
|
119
119
|
##
|
120
120
|
# Initialize the WorkspaceStatisticsInstance
|
@@ -124,22 +124,23 @@ module Twilio
|
|
124
124
|
# @return [WorkspaceStatisticsInstance] WorkspaceStatisticsInstance
|
125
125
|
def initialize(version, payload, workspace_sid: nil)
|
126
126
|
super(version)
|
127
|
-
|
127
|
+
|
128
128
|
# Marshaled Properties
|
129
129
|
@properties = {
|
130
130
|
'realtime' => payload['realtime'],
|
131
131
|
'cumulative' => payload['cumulative'],
|
132
132
|
'account_sid' => payload['account_sid'],
|
133
133
|
'workspace_sid' => payload['workspace_sid'],
|
134
|
+
'url' => payload['url'],
|
134
135
|
}
|
135
|
-
|
136
|
+
|
136
137
|
# Context
|
137
138
|
@instance_context = nil
|
138
139
|
@params = {
|
139
140
|
'workspace_sid' => workspace_sid,
|
140
141
|
}
|
141
142
|
end
|
142
|
-
|
143
|
+
|
143
144
|
##
|
144
145
|
# Generate an instance context for the instance, the context is capable of
|
145
146
|
# performing various actions. All instance actions are proxied to the context
|
@@ -154,28 +155,32 @@ module Twilio
|
|
154
155
|
end
|
155
156
|
@instance_context
|
156
157
|
end
|
157
|
-
|
158
|
+
|
158
159
|
def realtime
|
159
160
|
@properties['realtime']
|
160
161
|
end
|
161
|
-
|
162
|
+
|
162
163
|
def cumulative
|
163
164
|
@properties['cumulative']
|
164
165
|
end
|
165
|
-
|
166
|
+
|
166
167
|
def account_sid
|
167
168
|
@properties['account_sid']
|
168
169
|
end
|
169
|
-
|
170
|
+
|
170
171
|
def workspace_sid
|
171
172
|
@properties['workspace_sid']
|
172
173
|
end
|
173
|
-
|
174
|
+
|
175
|
+
def url
|
176
|
+
@properties['url']
|
177
|
+
end
|
178
|
+
|
174
179
|
##
|
175
180
|
# Fetch a WorkspaceStatisticsInstance
|
176
181
|
# @param [String] minutes The minutes
|
177
|
-
# @param [
|
178
|
-
# @param [
|
182
|
+
# @param [Time] start_date The start_date
|
183
|
+
# @param [Time] end_date The end_date
|
179
184
|
# @return [WorkspaceStatisticsInstance] Fetched WorkspaceStatisticsInstance
|
180
185
|
def fetch(minutes: nil, start_date: nil, end_date: nil)
|
181
186
|
context.fetch(
|
@@ -184,7 +189,7 @@ module Twilio
|
|
184
189
|
end_date: end_date,
|
185
190
|
)
|
186
191
|
end
|
187
|
-
|
192
|
+
|
188
193
|
##
|
189
194
|
# Provide a user friendly representation
|
190
195
|
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
|
@@ -11,25 +11,25 @@ module Twilio
|
|
11
11
|
# Initialize the Trunking Domain
|
12
12
|
def initialize(twilio)
|
13
13
|
super
|
14
|
-
|
14
|
+
|
15
15
|
@base_url = 'https://trunking.twilio.com'
|
16
16
|
@host = 'trunking.twilio.com'
|
17
17
|
@port = 443
|
18
|
-
|
18
|
+
|
19
19
|
# Versions
|
20
20
|
@v1 = nil
|
21
21
|
end
|
22
|
-
|
22
|
+
|
23
23
|
##
|
24
24
|
# Version v1 of trunking
|
25
25
|
def v1
|
26
26
|
@v1 ||= V1.new self
|
27
27
|
end
|
28
|
-
|
28
|
+
|
29
29
|
def trunks
|
30
30
|
self.v1.trunks
|
31
31
|
end
|
32
|
-
|
32
|
+
|
33
33
|
##
|
34
34
|
# Provide a user friendly representation
|
35
35
|
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
|
@@ -15,7 +15,7 @@ module Twilio
|
|
15
15
|
@version = 'v1'
|
16
16
|
@trunks = nil
|
17
17
|
end
|
18
|
-
|
18
|
+
|
19
19
|
def trunks(sid=:unset)
|
20
20
|
if sid == :unset
|
21
21
|
@trunks ||= TrunkList.new self
|
@@ -23,7 +23,7 @@ module Twilio
|
|
23
23
|
TrunkContext.new(self, sid)
|
24
24
|
end
|
25
25
|
end
|
26
|
-
|
26
|
+
|
27
27
|
##
|
28
28
|
# Provide a user friendly representation
|
29
29
|
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
|
@@ -15,12 +15,12 @@ module Twilio
|
|
15
15
|
# @return [TrunkList] TrunkList
|
16
16
|
def initialize(version)
|
17
17
|
super(version)
|
18
|
-
|
18
|
+
|
19
19
|
# Path Solution
|
20
20
|
@solution = {}
|
21
21
|
@uri = "/Trunks"
|
22
22
|
end
|
23
|
-
|
23
|
+
|
24
24
|
##
|
25
25
|
# Retrieve a single page of TrunkInstance records from the API.
|
26
26
|
# Request is executed immediately.
|
@@ -40,19 +40,19 @@ module Twilio
|
|
40
40
|
'Recording' => recording,
|
41
41
|
'Secure' => secure,
|
42
42
|
}
|
43
|
-
|
43
|
+
|
44
44
|
payload = @version.create(
|
45
45
|
'POST',
|
46
46
|
@uri,
|
47
47
|
data: data
|
48
48
|
)
|
49
|
-
|
49
|
+
|
50
50
|
return TrunkInstance.new(
|
51
51
|
@version,
|
52
52
|
payload,
|
53
53
|
)
|
54
54
|
end
|
55
|
-
|
55
|
+
|
56
56
|
##
|
57
57
|
# Lists TrunkInstance records from the API as a list.
|
58
58
|
# Unlike stream(), this operation is eager and will load `limit` records into
|
@@ -70,7 +70,7 @@ module Twilio
|
|
70
70
|
page_size: page_size
|
71
71
|
).entries
|
72
72
|
end
|
73
|
-
|
73
|
+
|
74
74
|
##
|
75
75
|
# Streams TrunkInstance records from the API as an Enumerable.
|
76
76
|
# This operation lazily loads records as efficiently as possible until the limit
|
@@ -84,14 +84,14 @@ module Twilio
|
|
84
84
|
# @return [Enumerable] Enumerable that will yield up to limit results
|
85
85
|
def stream(limit: nil, page_size: nil)
|
86
86
|
limits = @version.read_limits(limit, page_size)
|
87
|
-
|
87
|
+
|
88
88
|
page = self.page(
|
89
89
|
page_size: limits[:page_size],
|
90
90
|
)
|
91
|
-
|
91
|
+
|
92
92
|
@version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
|
93
93
|
end
|
94
|
-
|
94
|
+
|
95
95
|
##
|
96
96
|
# When passed a block, yields TrunkInstance records from the API.
|
97
97
|
# This operation lazily loads records as efficiently as possible until the limit
|
@@ -104,16 +104,16 @@ module Twilio
|
|
104
104
|
# limit with the most efficient page size, i.e. min(limit, 1000)
|
105
105
|
def each
|
106
106
|
limits = @version.read_limits
|
107
|
-
|
107
|
+
|
108
108
|
page = self.page(
|
109
109
|
page_size: limits[:page_size],
|
110
110
|
)
|
111
|
-
|
111
|
+
|
112
112
|
@version.stream(page,
|
113
113
|
limit: limits[:limit],
|
114
114
|
page_limit: limits[:page_limit]).each {|x| yield x}
|
115
115
|
end
|
116
|
-
|
116
|
+
|
117
117
|
##
|
118
118
|
# Retrieve a single page of TrunkInstance records from the API.
|
119
119
|
# Request is executed immediately.
|
@@ -134,14 +134,14 @@ module Twilio
|
|
134
134
|
)
|
135
135
|
return TrunkPage.new(@version, response, @solution)
|
136
136
|
end
|
137
|
-
|
137
|
+
|
138
138
|
##
|
139
139
|
# Provide a user friendly representation
|
140
140
|
def to_s
|
141
141
|
'#<Twilio.Trunking.V1.TrunkList>'
|
142
142
|
end
|
143
143
|
end
|
144
|
-
|
144
|
+
|
145
145
|
class TrunkPage < Page
|
146
146
|
##
|
147
147
|
# Initialize the TrunkPage
|
@@ -151,11 +151,11 @@ module Twilio
|
|
151
151
|
# @return [TrunkPage] TrunkPage
|
152
152
|
def initialize(version, response, solution)
|
153
153
|
super(version, response)
|
154
|
-
|
154
|
+
|
155
155
|
# Path Solution
|
156
156
|
@solution = solution
|
157
157
|
end
|
158
|
-
|
158
|
+
|
159
159
|
##
|
160
160
|
# Build an instance of TrunkInstance
|
161
161
|
# @param [Hash] payload Payload response from the API
|
@@ -166,14 +166,14 @@ module Twilio
|
|
166
166
|
payload,
|
167
167
|
)
|
168
168
|
end
|
169
|
-
|
169
|
+
|
170
170
|
##
|
171
171
|
# Provide a user friendly representation
|
172
172
|
def to_s
|
173
173
|
'<Twilio.Trunking.V1.TrunkPage>'
|
174
174
|
end
|
175
175
|
end
|
176
|
-
|
176
|
+
|
177
177
|
class TrunkContext < InstanceContext
|
178
178
|
##
|
179
179
|
# Initialize the TrunkContext
|
@@ -182,46 +182,46 @@ module Twilio
|
|
182
182
|
# @return [TrunkContext] TrunkContext
|
183
183
|
def initialize(version, sid)
|
184
184
|
super(version)
|
185
|
-
|
185
|
+
|
186
186
|
# Path Solution
|
187
187
|
@solution = {
|
188
188
|
sid: sid,
|
189
189
|
}
|
190
190
|
@uri = "/Trunks/#{@solution[:sid]}"
|
191
|
-
|
191
|
+
|
192
192
|
# Dependents
|
193
193
|
@origination_urls = nil
|
194
194
|
@credentials_lists = nil
|
195
195
|
@ip_access_control_lists = nil
|
196
196
|
@phone_numbers = nil
|
197
197
|
end
|
198
|
-
|
198
|
+
|
199
199
|
##
|
200
200
|
# Fetch a TrunkInstance
|
201
201
|
# @return [TrunkInstance] Fetched TrunkInstance
|
202
202
|
def fetch
|
203
203
|
params = {}
|
204
|
-
|
204
|
+
|
205
205
|
payload = @version.fetch(
|
206
206
|
'GET',
|
207
207
|
@uri,
|
208
208
|
params,
|
209
209
|
)
|
210
|
-
|
210
|
+
|
211
211
|
return TrunkInstance.new(
|
212
212
|
@version,
|
213
213
|
payload,
|
214
214
|
sid: @solution[:sid],
|
215
215
|
)
|
216
216
|
end
|
217
|
-
|
217
|
+
|
218
218
|
##
|
219
219
|
# Deletes the TrunkInstance
|
220
220
|
# @return [Boolean] true if delete succeeds, true otherwise
|
221
221
|
def delete
|
222
222
|
return @version.delete('delete', @uri)
|
223
223
|
end
|
224
|
-
|
224
|
+
|
225
225
|
##
|
226
226
|
# Update the TrunkInstance
|
227
227
|
# @param [String] friendly_name The friendly_name
|
@@ -240,20 +240,20 @@ module Twilio
|
|
240
240
|
'Recording' => recording,
|
241
241
|
'Secure' => secure,
|
242
242
|
}
|
243
|
-
|
243
|
+
|
244
244
|
payload = @version.update(
|
245
245
|
'POST',
|
246
246
|
@uri,
|
247
247
|
data: data,
|
248
248
|
)
|
249
|
-
|
249
|
+
|
250
250
|
return TrunkInstance.new(
|
251
251
|
@version,
|
252
252
|
payload,
|
253
253
|
sid: @solution[:sid],
|
254
254
|
)
|
255
255
|
end
|
256
|
-
|
256
|
+
|
257
257
|
##
|
258
258
|
# Access the origination_urls
|
259
259
|
# @return [OriginationUrlList] OriginationUrlList
|
@@ -265,17 +265,17 @@ module Twilio
|
|
265
265
|
sid,
|
266
266
|
)
|
267
267
|
end
|
268
|
-
|
268
|
+
|
269
269
|
unless @origination_urls
|
270
270
|
@origination_urls = OriginationUrlList.new(
|
271
271
|
@version,
|
272
272
|
trunk_sid: @solution[:sid],
|
273
273
|
)
|
274
274
|
end
|
275
|
-
|
275
|
+
|
276
276
|
@origination_urls
|
277
277
|
end
|
278
|
-
|
278
|
+
|
279
279
|
##
|
280
280
|
# Access the credentials_lists
|
281
281
|
# @return [CredentialListList] CredentialListList
|
@@ -287,17 +287,17 @@ module Twilio
|
|
287
287
|
sid,
|
288
288
|
)
|
289
289
|
end
|
290
|
-
|
290
|
+
|
291
291
|
unless @credentials_lists
|
292
292
|
@credentials_lists = CredentialListList.new(
|
293
293
|
@version,
|
294
294
|
trunk_sid: @solution[:sid],
|
295
295
|
)
|
296
296
|
end
|
297
|
-
|
297
|
+
|
298
298
|
@credentials_lists
|
299
299
|
end
|
300
|
-
|
300
|
+
|
301
301
|
##
|
302
302
|
# Access the ip_access_control_lists
|
303
303
|
# @return [IpAccessControlListList] IpAccessControlListList
|
@@ -309,17 +309,17 @@ module Twilio
|
|
309
309
|
sid,
|
310
310
|
)
|
311
311
|
end
|
312
|
-
|
312
|
+
|
313
313
|
unless @ip_access_control_lists
|
314
314
|
@ip_access_control_lists = IpAccessControlListList.new(
|
315
315
|
@version,
|
316
316
|
trunk_sid: @solution[:sid],
|
317
317
|
)
|
318
318
|
end
|
319
|
-
|
319
|
+
|
320
320
|
@ip_access_control_lists
|
321
321
|
end
|
322
|
-
|
322
|
+
|
323
323
|
##
|
324
324
|
# Access the phone_numbers
|
325
325
|
# @return [PhoneNumberList] PhoneNumberList
|
@@ -331,17 +331,17 @@ module Twilio
|
|
331
331
|
sid,
|
332
332
|
)
|
333
333
|
end
|
334
|
-
|
334
|
+
|
335
335
|
unless @phone_numbers
|
336
336
|
@phone_numbers = PhoneNumberList.new(
|
337
337
|
@version,
|
338
338
|
trunk_sid: @solution[:sid],
|
339
339
|
)
|
340
340
|
end
|
341
|
-
|
341
|
+
|
342
342
|
@phone_numbers
|
343
343
|
end
|
344
|
-
|
344
|
+
|
345
345
|
##
|
346
346
|
# Provide a user friendly representation
|
347
347
|
def to_s
|
@@ -349,7 +349,7 @@ module Twilio
|
|
349
349
|
"#<Twilio.Trunking.V1.TrunkContext #{context}>"
|
350
350
|
end
|
351
351
|
end
|
352
|
-
|
352
|
+
|
353
353
|
class TrunkInstance < InstanceResource
|
354
354
|
##
|
355
355
|
# Initialize the TrunkInstance
|
@@ -359,7 +359,7 @@ module Twilio
|
|
359
359
|
# @return [TrunkInstance] TrunkInstance
|
360
360
|
def initialize(version, payload, sid: nil)
|
361
361
|
super(version)
|
362
|
-
|
362
|
+
|
363
363
|
# Marshaled Properties
|
364
364
|
@properties = {
|
365
365
|
'account_sid' => payload['account_sid'],
|
@@ -377,14 +377,14 @@ module Twilio
|
|
377
377
|
'url' => payload['url'],
|
378
378
|
'links' => payload['links'],
|
379
379
|
}
|
380
|
-
|
380
|
+
|
381
381
|
# Context
|
382
382
|
@instance_context = nil
|
383
383
|
@params = {
|
384
384
|
'sid' => sid || @properties['sid'],
|
385
385
|
}
|
386
386
|
end
|
387
|
-
|
387
|
+
|
388
388
|
##
|
389
389
|
# Generate an instance context for the instance, the context is capable of
|
390
390
|
# performing various actions. All instance actions are proxied to the context
|
@@ -399,77 +399,77 @@ module Twilio
|
|
399
399
|
end
|
400
400
|
@instance_context
|
401
401
|
end
|
402
|
-
|
402
|
+
|
403
403
|
def account_sid
|
404
404
|
@properties['account_sid']
|
405
405
|
end
|
406
|
-
|
406
|
+
|
407
407
|
def domain_name
|
408
408
|
@properties['domain_name']
|
409
409
|
end
|
410
|
-
|
410
|
+
|
411
411
|
def disaster_recovery_method
|
412
412
|
@properties['disaster_recovery_method']
|
413
413
|
end
|
414
|
-
|
414
|
+
|
415
415
|
def disaster_recovery_url
|
416
416
|
@properties['disaster_recovery_url']
|
417
417
|
end
|
418
|
-
|
418
|
+
|
419
419
|
def friendly_name
|
420
420
|
@properties['friendly_name']
|
421
421
|
end
|
422
|
-
|
422
|
+
|
423
423
|
def secure
|
424
424
|
@properties['secure']
|
425
425
|
end
|
426
|
-
|
426
|
+
|
427
427
|
def recording
|
428
428
|
@properties['recording']
|
429
429
|
end
|
430
|
-
|
430
|
+
|
431
431
|
def auth_type
|
432
432
|
@properties['auth_type']
|
433
433
|
end
|
434
|
-
|
434
|
+
|
435
435
|
def auth_type_set
|
436
436
|
@properties['auth_type_set']
|
437
437
|
end
|
438
|
-
|
438
|
+
|
439
439
|
def date_created
|
440
440
|
@properties['date_created']
|
441
441
|
end
|
442
|
-
|
442
|
+
|
443
443
|
def date_updated
|
444
444
|
@properties['date_updated']
|
445
445
|
end
|
446
|
-
|
446
|
+
|
447
447
|
def sid
|
448
448
|
@properties['sid']
|
449
449
|
end
|
450
|
-
|
450
|
+
|
451
451
|
def url
|
452
452
|
@properties['url']
|
453
453
|
end
|
454
|
-
|
454
|
+
|
455
455
|
def links
|
456
456
|
@properties['links']
|
457
457
|
end
|
458
|
-
|
458
|
+
|
459
459
|
##
|
460
460
|
# Fetch a TrunkInstance
|
461
461
|
# @return [TrunkInstance] Fetched TrunkInstance
|
462
462
|
def fetch
|
463
463
|
context.fetch
|
464
464
|
end
|
465
|
-
|
465
|
+
|
466
466
|
##
|
467
467
|
# Deletes the TrunkInstance
|
468
468
|
# @return [Boolean] true if delete succeeds, true otherwise
|
469
469
|
def delete
|
470
470
|
context.delete
|
471
471
|
end
|
472
|
-
|
472
|
+
|
473
473
|
##
|
474
474
|
# Update the TrunkInstance
|
475
475
|
# @param [String] friendly_name The friendly_name
|
@@ -489,35 +489,35 @@ module Twilio
|
|
489
489
|
secure: secure,
|
490
490
|
)
|
491
491
|
end
|
492
|
-
|
492
|
+
|
493
493
|
##
|
494
494
|
# Access the origination_urls
|
495
495
|
# @return [origination_urls] origination_urls
|
496
496
|
def origination_urls
|
497
497
|
context.origination_urls
|
498
498
|
end
|
499
|
-
|
499
|
+
|
500
500
|
##
|
501
501
|
# Access the credentials_lists
|
502
502
|
# @return [credentials_lists] credentials_lists
|
503
503
|
def credentials_lists
|
504
504
|
context.credentials_lists
|
505
505
|
end
|
506
|
-
|
506
|
+
|
507
507
|
##
|
508
508
|
# Access the ip_access_control_lists
|
509
509
|
# @return [ip_access_control_lists] ip_access_control_lists
|
510
510
|
def ip_access_control_lists
|
511
511
|
context.ip_access_control_lists
|
512
512
|
end
|
513
|
-
|
513
|
+
|
514
514
|
##
|
515
515
|
# Access the phone_numbers
|
516
516
|
# @return [phone_numbers] phone_numbers
|
517
517
|
def phone_numbers
|
518
518
|
context.phone_numbers
|
519
519
|
end
|
520
|
-
|
520
|
+
|
521
521
|
##
|
522
522
|
# Provide a user friendly representation
|
523
523
|
def to_s
|