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