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
@@ -0,0 +1,433 @@
|
|
1
|
+
##
|
2
|
+
# This code was generated by
|
3
|
+
# \ / _ _ _| _ _
|
4
|
+
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
5
|
+
# / /
|
6
|
+
|
7
|
+
module Twilio
|
8
|
+
module REST
|
9
|
+
class IpMessaging < Domain
|
10
|
+
class V2 < Version
|
11
|
+
class ServiceContext < InstanceContext
|
12
|
+
class UserList < ListResource
|
13
|
+
##
|
14
|
+
# Initialize the UserList
|
15
|
+
# @param [Version] version Version that contains the resource
|
16
|
+
# @param [String] service_sid The service_sid
|
17
|
+
# @return [UserList] UserList
|
18
|
+
def initialize(version, service_sid: nil)
|
19
|
+
super(version)
|
20
|
+
|
21
|
+
# Path Solution
|
22
|
+
@solution = {
|
23
|
+
service_sid: service_sid
|
24
|
+
}
|
25
|
+
@uri = "/Services/#{@solution[:service_sid]}/Users"
|
26
|
+
end
|
27
|
+
|
28
|
+
##
|
29
|
+
# Retrieve a single page of UserInstance records from the API.
|
30
|
+
# Request is executed immediately.
|
31
|
+
# @param [String] identity The identity
|
32
|
+
# @param [String] role_sid The role_sid
|
33
|
+
# @param [String] attributes The attributes
|
34
|
+
# @param [String] friendly_name The friendly_name
|
35
|
+
# @return [UserInstance] Newly created UserInstance
|
36
|
+
def create(identity: nil, role_sid: nil, attributes: nil, friendly_name: nil)
|
37
|
+
data = {
|
38
|
+
'Identity' => identity,
|
39
|
+
'RoleSid' => role_sid,
|
40
|
+
'Attributes' => attributes,
|
41
|
+
'FriendlyName' => friendly_name,
|
42
|
+
}
|
43
|
+
|
44
|
+
payload = @version.create(
|
45
|
+
'POST',
|
46
|
+
@uri,
|
47
|
+
data: data
|
48
|
+
)
|
49
|
+
|
50
|
+
return UserInstance.new(
|
51
|
+
@version,
|
52
|
+
payload,
|
53
|
+
service_sid: @solution[:service_sid],
|
54
|
+
)
|
55
|
+
end
|
56
|
+
|
57
|
+
##
|
58
|
+
# Lists UserInstance records from the API as a list.
|
59
|
+
# Unlike stream(), this operation is eager and will load `limit` records into
|
60
|
+
# memory before returning.
|
61
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
62
|
+
# guarantees to never return more than limit. Default is no limit
|
63
|
+
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
64
|
+
# the default value of 50 records. If no page_size is defined
|
65
|
+
# but a limit is defined, stream() will attempt to read the
|
66
|
+
# limit with the most efficient page size, i.e. min(limit, 1000)
|
67
|
+
# @return [Array] Array of up to limit results
|
68
|
+
def list(limit: nil, page_size: nil)
|
69
|
+
self.stream(
|
70
|
+
limit: limit,
|
71
|
+
page_size: page_size
|
72
|
+
).entries
|
73
|
+
end
|
74
|
+
|
75
|
+
##
|
76
|
+
# Streams UserInstance records from the API as an Enumerable.
|
77
|
+
# This operation lazily loads records as efficiently as possible until the limit
|
78
|
+
# is reached.
|
79
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
80
|
+
# guarantees to never return more than limit. Default is no limit
|
81
|
+
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
82
|
+
# the default value of 50 records. If no page_size is defined
|
83
|
+
# but a limit is defined, stream() will attempt to read the
|
84
|
+
# limit with the most efficient page size, i.e. min(limit, 1000)
|
85
|
+
# @return [Enumerable] Enumerable that will yield up to limit results
|
86
|
+
def stream(limit: nil, page_size: nil)
|
87
|
+
limits = @version.read_limits(limit, page_size)
|
88
|
+
|
89
|
+
page = self.page(
|
90
|
+
page_size: limits[:page_size],
|
91
|
+
)
|
92
|
+
|
93
|
+
@version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
|
94
|
+
end
|
95
|
+
|
96
|
+
##
|
97
|
+
# When passed a block, yields UserInstance records from the API.
|
98
|
+
# This operation lazily loads records as efficiently as possible until the limit
|
99
|
+
# is reached.
|
100
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
101
|
+
# guarantees to never return more than limit. Default is no limit
|
102
|
+
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
103
|
+
# the default value of 50 records. If no page_size is defined
|
104
|
+
# but a limit is defined, stream() will attempt to read the
|
105
|
+
# limit with the most efficient page size, i.e. min(limit, 1000)
|
106
|
+
def each
|
107
|
+
limits = @version.read_limits
|
108
|
+
|
109
|
+
page = self.page(
|
110
|
+
page_size: limits[:page_size],
|
111
|
+
)
|
112
|
+
|
113
|
+
@version.stream(page,
|
114
|
+
limit: limits[:limit],
|
115
|
+
page_limit: limits[:page_limit]).each {|x| yield x}
|
116
|
+
end
|
117
|
+
|
118
|
+
##
|
119
|
+
# Retrieve a single page of UserInstance records from the API.
|
120
|
+
# Request is executed immediately.
|
121
|
+
# @param [String] page_token PageToken provided by the API
|
122
|
+
# @param [Integer] page_number Page Number, this value is simply for client state
|
123
|
+
# @param [Integer] page_size Number of records to return, defaults to 50
|
124
|
+
# @return [Page] Page of UserInstance
|
125
|
+
def page(page_token: nil, page_number: nil, page_size: nil)
|
126
|
+
params = {
|
127
|
+
'PageToken' => page_token,
|
128
|
+
'Page' => page_number,
|
129
|
+
'PageSize' => page_size,
|
130
|
+
}
|
131
|
+
response = @version.page(
|
132
|
+
'GET',
|
133
|
+
@uri,
|
134
|
+
params
|
135
|
+
)
|
136
|
+
return UserPage.new(@version, response, @solution)
|
137
|
+
end
|
138
|
+
|
139
|
+
##
|
140
|
+
# Provide a user friendly representation
|
141
|
+
def to_s
|
142
|
+
'#<Twilio.IpMessaging.V2.UserList>'
|
143
|
+
end
|
144
|
+
end
|
145
|
+
|
146
|
+
class UserPage < Page
|
147
|
+
##
|
148
|
+
# Initialize the UserPage
|
149
|
+
# @param [Version] version Version that contains the resource
|
150
|
+
# @param [Response] response Response from the API
|
151
|
+
# @param [Hash] solution Path solution for the resource
|
152
|
+
# @param [String] service_sid The service_sid
|
153
|
+
# @return [UserPage] UserPage
|
154
|
+
def initialize(version, response, solution)
|
155
|
+
super(version, response)
|
156
|
+
|
157
|
+
# Path Solution
|
158
|
+
@solution = solution
|
159
|
+
end
|
160
|
+
|
161
|
+
##
|
162
|
+
# Build an instance of UserInstance
|
163
|
+
# @param [Hash] payload Payload response from the API
|
164
|
+
# @return [UserInstance] UserInstance
|
165
|
+
def get_instance(payload)
|
166
|
+
return UserInstance.new(
|
167
|
+
@version,
|
168
|
+
payload,
|
169
|
+
service_sid: @solution[:service_sid],
|
170
|
+
)
|
171
|
+
end
|
172
|
+
|
173
|
+
##
|
174
|
+
# Provide a user friendly representation
|
175
|
+
def to_s
|
176
|
+
'<Twilio.IpMessaging.V2.UserPage>'
|
177
|
+
end
|
178
|
+
end
|
179
|
+
|
180
|
+
class UserContext < InstanceContext
|
181
|
+
##
|
182
|
+
# Initialize the UserContext
|
183
|
+
# @param [Version] version Version that contains the resource
|
184
|
+
# @param [String] service_sid The service_sid
|
185
|
+
# @param [String] sid The sid
|
186
|
+
# @return [UserContext] UserContext
|
187
|
+
def initialize(version, service_sid, sid)
|
188
|
+
super(version)
|
189
|
+
|
190
|
+
# Path Solution
|
191
|
+
@solution = {
|
192
|
+
service_sid: service_sid,
|
193
|
+
sid: sid,
|
194
|
+
}
|
195
|
+
@uri = "/Services/#{@solution[:service_sid]}/Users/#{@solution[:sid]}"
|
196
|
+
|
197
|
+
# Dependents
|
198
|
+
@user_channels = nil
|
199
|
+
end
|
200
|
+
|
201
|
+
##
|
202
|
+
# Fetch a UserInstance
|
203
|
+
# @return [UserInstance] Fetched UserInstance
|
204
|
+
def fetch
|
205
|
+
params = {}
|
206
|
+
|
207
|
+
payload = @version.fetch(
|
208
|
+
'GET',
|
209
|
+
@uri,
|
210
|
+
params,
|
211
|
+
)
|
212
|
+
|
213
|
+
return UserInstance.new(
|
214
|
+
@version,
|
215
|
+
payload,
|
216
|
+
service_sid: @solution[:service_sid],
|
217
|
+
sid: @solution[:sid],
|
218
|
+
)
|
219
|
+
end
|
220
|
+
|
221
|
+
##
|
222
|
+
# Deletes the UserInstance
|
223
|
+
# @return [Boolean] true if delete succeeds, true otherwise
|
224
|
+
def delete
|
225
|
+
return @version.delete('delete', @uri)
|
226
|
+
end
|
227
|
+
|
228
|
+
##
|
229
|
+
# Update the UserInstance
|
230
|
+
# @param [String] role_sid The role_sid
|
231
|
+
# @param [String] attributes The attributes
|
232
|
+
# @param [String] friendly_name The friendly_name
|
233
|
+
# @return [UserInstance] Updated UserInstance
|
234
|
+
def update(role_sid: nil, attributes: nil, friendly_name: nil)
|
235
|
+
data = {
|
236
|
+
'RoleSid' => role_sid,
|
237
|
+
'Attributes' => attributes,
|
238
|
+
'FriendlyName' => friendly_name,
|
239
|
+
}
|
240
|
+
|
241
|
+
payload = @version.update(
|
242
|
+
'POST',
|
243
|
+
@uri,
|
244
|
+
data: data,
|
245
|
+
)
|
246
|
+
|
247
|
+
return UserInstance.new(
|
248
|
+
@version,
|
249
|
+
payload,
|
250
|
+
service_sid: @solution[:service_sid],
|
251
|
+
sid: @solution[:sid],
|
252
|
+
)
|
253
|
+
end
|
254
|
+
|
255
|
+
##
|
256
|
+
# Access the user_channels
|
257
|
+
# @return [UserChannelList] UserChannelList
|
258
|
+
def user_channels
|
259
|
+
unless @user_channels
|
260
|
+
@user_channels = UserChannelList.new(
|
261
|
+
@version,
|
262
|
+
service_sid: @solution[:service_sid],
|
263
|
+
user_sid: @solution[:sid],
|
264
|
+
)
|
265
|
+
end
|
266
|
+
|
267
|
+
@user_channels
|
268
|
+
end
|
269
|
+
|
270
|
+
##
|
271
|
+
# Provide a user friendly representation
|
272
|
+
def to_s
|
273
|
+
context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
|
274
|
+
"#<Twilio.IpMessaging.V2.UserContext #{context}>"
|
275
|
+
end
|
276
|
+
end
|
277
|
+
|
278
|
+
class UserInstance < InstanceResource
|
279
|
+
##
|
280
|
+
# Initialize the UserInstance
|
281
|
+
# @param [Version] version Version that contains the resource
|
282
|
+
# @param [Hash] payload payload that contains response from Twilio
|
283
|
+
# @param [String] service_sid The service_sid
|
284
|
+
# @param [String] sid The sid
|
285
|
+
# @return [UserInstance] UserInstance
|
286
|
+
def initialize(version, payload, service_sid: nil, sid: nil)
|
287
|
+
super(version)
|
288
|
+
|
289
|
+
# Marshaled Properties
|
290
|
+
@properties = {
|
291
|
+
'sid' => payload['sid'],
|
292
|
+
'account_sid' => payload['account_sid'],
|
293
|
+
'service_sid' => payload['service_sid'],
|
294
|
+
'attributes' => payload['attributes'],
|
295
|
+
'friendly_name' => payload['friendly_name'],
|
296
|
+
'role_sid' => payload['role_sid'],
|
297
|
+
'identity' => payload['identity'],
|
298
|
+
'is_online' => payload['is_online'],
|
299
|
+
'is_notifiable' => payload['is_notifiable'],
|
300
|
+
'date_created' => Twilio.deserialize_iso8601(payload['date_created']),
|
301
|
+
'date_updated' => Twilio.deserialize_iso8601(payload['date_updated']),
|
302
|
+
'joined_channels_count' => payload['joined_channels_count'].to_i,
|
303
|
+
'links' => payload['links'],
|
304
|
+
'url' => payload['url'],
|
305
|
+
}
|
306
|
+
|
307
|
+
# Context
|
308
|
+
@instance_context = nil
|
309
|
+
@params = {
|
310
|
+
'service_sid' => service_sid,
|
311
|
+
'sid' => sid || @properties['sid'],
|
312
|
+
}
|
313
|
+
end
|
314
|
+
|
315
|
+
##
|
316
|
+
# Generate an instance context for the instance, the context is capable of
|
317
|
+
# performing various actions. All instance actions are proxied to the context
|
318
|
+
# @param [Version] version Version that contains the resource
|
319
|
+
# @return [UserContext] UserContext for this UserInstance
|
320
|
+
def context
|
321
|
+
unless @instance_context
|
322
|
+
@instance_context = UserContext.new(
|
323
|
+
@version,
|
324
|
+
@params['service_sid'],
|
325
|
+
@params['sid'],
|
326
|
+
)
|
327
|
+
end
|
328
|
+
@instance_context
|
329
|
+
end
|
330
|
+
|
331
|
+
def sid
|
332
|
+
@properties['sid']
|
333
|
+
end
|
334
|
+
|
335
|
+
def account_sid
|
336
|
+
@properties['account_sid']
|
337
|
+
end
|
338
|
+
|
339
|
+
def service_sid
|
340
|
+
@properties['service_sid']
|
341
|
+
end
|
342
|
+
|
343
|
+
def attributes
|
344
|
+
@properties['attributes']
|
345
|
+
end
|
346
|
+
|
347
|
+
def friendly_name
|
348
|
+
@properties['friendly_name']
|
349
|
+
end
|
350
|
+
|
351
|
+
def role_sid
|
352
|
+
@properties['role_sid']
|
353
|
+
end
|
354
|
+
|
355
|
+
def identity
|
356
|
+
@properties['identity']
|
357
|
+
end
|
358
|
+
|
359
|
+
def is_online
|
360
|
+
@properties['is_online']
|
361
|
+
end
|
362
|
+
|
363
|
+
def is_notifiable
|
364
|
+
@properties['is_notifiable']
|
365
|
+
end
|
366
|
+
|
367
|
+
def date_created
|
368
|
+
@properties['date_created']
|
369
|
+
end
|
370
|
+
|
371
|
+
def date_updated
|
372
|
+
@properties['date_updated']
|
373
|
+
end
|
374
|
+
|
375
|
+
def joined_channels_count
|
376
|
+
@properties['joined_channels_count']
|
377
|
+
end
|
378
|
+
|
379
|
+
def links
|
380
|
+
@properties['links']
|
381
|
+
end
|
382
|
+
|
383
|
+
def url
|
384
|
+
@properties['url']
|
385
|
+
end
|
386
|
+
|
387
|
+
##
|
388
|
+
# Fetch a UserInstance
|
389
|
+
# @return [UserInstance] Fetched UserInstance
|
390
|
+
def fetch
|
391
|
+
context.fetch
|
392
|
+
end
|
393
|
+
|
394
|
+
##
|
395
|
+
# Deletes the UserInstance
|
396
|
+
# @return [Boolean] true if delete succeeds, true otherwise
|
397
|
+
def delete
|
398
|
+
context.delete
|
399
|
+
end
|
400
|
+
|
401
|
+
##
|
402
|
+
# Update the UserInstance
|
403
|
+
# @param [String] role_sid The role_sid
|
404
|
+
# @param [String] attributes The attributes
|
405
|
+
# @param [String] friendly_name The friendly_name
|
406
|
+
# @return [UserInstance] Updated UserInstance
|
407
|
+
def update(role_sid: nil, attributes: nil, friendly_name: nil)
|
408
|
+
context.update(
|
409
|
+
role_sid: role_sid,
|
410
|
+
attributes: attributes,
|
411
|
+
friendly_name: friendly_name,
|
412
|
+
)
|
413
|
+
end
|
414
|
+
|
415
|
+
##
|
416
|
+
# Access the user_channels
|
417
|
+
# @return [user_channels] user_channels
|
418
|
+
def user_channels
|
419
|
+
context.user_channels
|
420
|
+
end
|
421
|
+
|
422
|
+
##
|
423
|
+
# Provide a user friendly representation
|
424
|
+
def to_s
|
425
|
+
values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
|
426
|
+
"<Twilio.IpMessaging.V2.UserInstance #{values}>"
|
427
|
+
end
|
428
|
+
end
|
429
|
+
end
|
430
|
+
end
|
431
|
+
end
|
432
|
+
end
|
433
|
+
end
|
@@ -0,0 +1,223 @@
|
|
1
|
+
##
|
2
|
+
# This code was generated by
|
3
|
+
# \ / _ _ _| _ _
|
4
|
+
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
5
|
+
# / /
|
6
|
+
|
7
|
+
module Twilio
|
8
|
+
module REST
|
9
|
+
class IpMessaging < Domain
|
10
|
+
class V2 < Version
|
11
|
+
class ServiceContext < InstanceContext
|
12
|
+
class UserContext < InstanceContext
|
13
|
+
class UserChannelList < ListResource
|
14
|
+
##
|
15
|
+
# Initialize the UserChannelList
|
16
|
+
# @param [Version] version Version that contains the resource
|
17
|
+
# @param [String] service_sid The service_sid
|
18
|
+
# @param [String] user_sid The sid
|
19
|
+
# @return [UserChannelList] UserChannelList
|
20
|
+
def initialize(version, service_sid: nil, user_sid: nil)
|
21
|
+
super(version)
|
22
|
+
|
23
|
+
# Path Solution
|
24
|
+
@solution = {
|
25
|
+
service_sid: service_sid,
|
26
|
+
user_sid: user_sid
|
27
|
+
}
|
28
|
+
@uri = "/Services/#{@solution[:service_sid]}/Users/#{@solution[:user_sid]}/Channels"
|
29
|
+
end
|
30
|
+
|
31
|
+
##
|
32
|
+
# Lists UserChannelInstance records from the API as a list.
|
33
|
+
# Unlike stream(), this operation is eager and will load `limit` records into
|
34
|
+
# memory before returning.
|
35
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
36
|
+
# guarantees to never return more than limit. Default is no limit
|
37
|
+
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
38
|
+
# the default value of 50 records. If no page_size is defined
|
39
|
+
# but a limit is defined, stream() will attempt to read the
|
40
|
+
# limit with the most efficient page size, i.e. min(limit, 1000)
|
41
|
+
# @return [Array] Array of up to limit results
|
42
|
+
def list(limit: nil, page_size: nil)
|
43
|
+
self.stream(
|
44
|
+
limit: limit,
|
45
|
+
page_size: page_size
|
46
|
+
).entries
|
47
|
+
end
|
48
|
+
|
49
|
+
##
|
50
|
+
# Streams UserChannelInstance records from the API as an Enumerable.
|
51
|
+
# This operation lazily loads records as efficiently as possible until the limit
|
52
|
+
# is reached.
|
53
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
54
|
+
# guarantees to never return more than limit. Default is no limit
|
55
|
+
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
56
|
+
# the default value of 50 records. If no page_size is defined
|
57
|
+
# but a limit is defined, stream() will attempt to read the
|
58
|
+
# limit with the most efficient page size, i.e. min(limit, 1000)
|
59
|
+
# @return [Enumerable] Enumerable that will yield up to limit results
|
60
|
+
def stream(limit: nil, page_size: nil)
|
61
|
+
limits = @version.read_limits(limit, page_size)
|
62
|
+
|
63
|
+
page = self.page(
|
64
|
+
page_size: limits[:page_size],
|
65
|
+
)
|
66
|
+
|
67
|
+
@version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
|
68
|
+
end
|
69
|
+
|
70
|
+
##
|
71
|
+
# When passed a block, yields UserChannelInstance records from the API.
|
72
|
+
# This operation lazily loads records as efficiently as possible until the limit
|
73
|
+
# is reached.
|
74
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
75
|
+
# guarantees to never return more than limit. Default is no limit
|
76
|
+
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
77
|
+
# the default value of 50 records. If no page_size is defined
|
78
|
+
# but a limit is defined, stream() will attempt to read the
|
79
|
+
# limit with the most efficient page size, i.e. min(limit, 1000)
|
80
|
+
def each
|
81
|
+
limits = @version.read_limits
|
82
|
+
|
83
|
+
page = self.page(
|
84
|
+
page_size: limits[:page_size],
|
85
|
+
)
|
86
|
+
|
87
|
+
@version.stream(page,
|
88
|
+
limit: limits[:limit],
|
89
|
+
page_limit: limits[:page_limit]).each {|x| yield x}
|
90
|
+
end
|
91
|
+
|
92
|
+
##
|
93
|
+
# Retrieve a single page of UserChannelInstance records from the API.
|
94
|
+
# Request is executed immediately.
|
95
|
+
# @param [String] page_token PageToken provided by the API
|
96
|
+
# @param [Integer] page_number Page Number, this value is simply for client state
|
97
|
+
# @param [Integer] page_size Number of records to return, defaults to 50
|
98
|
+
# @return [Page] Page of UserChannelInstance
|
99
|
+
def page(page_token: nil, page_number: nil, page_size: nil)
|
100
|
+
params = {
|
101
|
+
'PageToken' => page_token,
|
102
|
+
'Page' => page_number,
|
103
|
+
'PageSize' => page_size,
|
104
|
+
}
|
105
|
+
response = @version.page(
|
106
|
+
'GET',
|
107
|
+
@uri,
|
108
|
+
params
|
109
|
+
)
|
110
|
+
return UserChannelPage.new(@version, response, @solution)
|
111
|
+
end
|
112
|
+
|
113
|
+
##
|
114
|
+
# Provide a user friendly representation
|
115
|
+
def to_s
|
116
|
+
'#<Twilio.IpMessaging.V2.UserChannelList>'
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
120
|
+
class UserChannelPage < Page
|
121
|
+
##
|
122
|
+
# Initialize the UserChannelPage
|
123
|
+
# @param [Version] version Version that contains the resource
|
124
|
+
# @param [Response] response Response from the API
|
125
|
+
# @param [Hash] solution Path solution for the resource
|
126
|
+
# @param [String] service_sid The service_sid
|
127
|
+
# @param [String] user_sid The sid
|
128
|
+
# @return [UserChannelPage] UserChannelPage
|
129
|
+
def initialize(version, response, solution)
|
130
|
+
super(version, response)
|
131
|
+
|
132
|
+
# Path Solution
|
133
|
+
@solution = solution
|
134
|
+
end
|
135
|
+
|
136
|
+
##
|
137
|
+
# Build an instance of UserChannelInstance
|
138
|
+
# @param [Hash] payload Payload response from the API
|
139
|
+
# @return [UserChannelInstance] UserChannelInstance
|
140
|
+
def get_instance(payload)
|
141
|
+
return UserChannelInstance.new(
|
142
|
+
@version,
|
143
|
+
payload,
|
144
|
+
service_sid: @solution[:service_sid],
|
145
|
+
user_sid: @solution[:user_sid],
|
146
|
+
)
|
147
|
+
end
|
148
|
+
|
149
|
+
##
|
150
|
+
# Provide a user friendly representation
|
151
|
+
def to_s
|
152
|
+
'<Twilio.IpMessaging.V2.UserChannelPage>'
|
153
|
+
end
|
154
|
+
end
|
155
|
+
|
156
|
+
class UserChannelInstance < InstanceResource
|
157
|
+
##
|
158
|
+
# Initialize the UserChannelInstance
|
159
|
+
# @param [Version] version Version that contains the resource
|
160
|
+
# @param [Hash] payload payload that contains response from Twilio
|
161
|
+
# @param [String] service_sid The service_sid
|
162
|
+
# @param [String] user_sid The sid
|
163
|
+
# @return [UserChannelInstance] UserChannelInstance
|
164
|
+
def initialize(version, payload, service_sid: nil, user_sid: nil)
|
165
|
+
super(version)
|
166
|
+
|
167
|
+
# Marshaled Properties
|
168
|
+
@properties = {
|
169
|
+
'account_sid' => payload['account_sid'],
|
170
|
+
'service_sid' => payload['service_sid'],
|
171
|
+
'channel_sid' => payload['channel_sid'],
|
172
|
+
'member_sid' => payload['member_sid'],
|
173
|
+
'status' => payload['status'],
|
174
|
+
'last_consumed_message_index' => payload['last_consumed_message_index'] == nil ? payload['last_consumed_message_index'] : payload['last_consumed_message_index'].to_i,
|
175
|
+
'unread_messages_count' => payload['unread_messages_count'] == nil ? payload['unread_messages_count'] : payload['unread_messages_count'].to_i,
|
176
|
+
'links' => payload['links'],
|
177
|
+
}
|
178
|
+
end
|
179
|
+
|
180
|
+
def account_sid
|
181
|
+
@properties['account_sid']
|
182
|
+
end
|
183
|
+
|
184
|
+
def service_sid
|
185
|
+
@properties['service_sid']
|
186
|
+
end
|
187
|
+
|
188
|
+
def channel_sid
|
189
|
+
@properties['channel_sid']
|
190
|
+
end
|
191
|
+
|
192
|
+
def member_sid
|
193
|
+
@properties['member_sid']
|
194
|
+
end
|
195
|
+
|
196
|
+
def status
|
197
|
+
@properties['status']
|
198
|
+
end
|
199
|
+
|
200
|
+
def last_consumed_message_index
|
201
|
+
@properties['last_consumed_message_index']
|
202
|
+
end
|
203
|
+
|
204
|
+
def unread_messages_count
|
205
|
+
@properties['unread_messages_count']
|
206
|
+
end
|
207
|
+
|
208
|
+
def links
|
209
|
+
@properties['links']
|
210
|
+
end
|
211
|
+
|
212
|
+
##
|
213
|
+
# Provide a user friendly representation
|
214
|
+
def to_s
|
215
|
+
"<Twilio.IpMessaging.V2.UserChannelInstance>"
|
216
|
+
end
|
217
|
+
end
|
218
|
+
end
|
219
|
+
end
|
220
|
+
end
|
221
|
+
end
|
222
|
+
end
|
223
|
+
end
|