twilio-ruby 5.0.0.alpha1 → 5.0.0.rc2
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/.travis.yml +11 -2
- data/AUTHORS.md +32 -46
- data/CHANGES.md +1 -124
- data/Gemfile +2 -2
- data/LICENSE.md +12 -12
- data/Makefile +2 -15
- data/README.md +37 -29
- data/Rakefile +0 -54
- data/examples/examples.rb +57 -46
- data/examples/{print_call_log.rb → print-call-log.rb} +7 -7
- data/lib/rack/twilio_webhook_authentication.rb +6 -5
- data/lib/twilio-ruby.rb +16 -17
- data/lib/twilio-ruby/compatibility/v2010/account/call/feedback.rb +15 -0
- data/lib/twilio-ruby/compatibility/v2010/account/queue/member.rb +23 -0
- data/lib/twilio-ruby/framework/domain.rb +2 -2
- data/lib/twilio-ruby/framework/exception.rb +14 -0
- data/lib/twilio-ruby/framework/helper.rb +1 -1
- data/lib/twilio-ruby/framework/page.rb +30 -28
- data/lib/twilio-ruby/framework/resource.rb +2 -2
- data/lib/twilio-ruby/framework/serialize.rb +7 -58
- data/lib/twilio-ruby/framework/twilio_response.rb +1 -1
- data/lib/twilio-ruby/framework/version.rb +48 -43
- data/lib/twilio-ruby/http/http_client.rb +8 -8
- data/lib/twilio-ruby/rest/api.rb +33 -141
- data/lib/twilio-ruby/rest/api/v2010.rb +31 -50
- data/lib/twilio-ruby/rest/api/v2010/account.rb +239 -389
- data/lib/twilio-ruby/rest/api/v2010/account/address.rb +122 -145
- data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +56 -76
- data/lib/twilio-ruby/rest/api/v2010/account/application.rb +127 -144
- data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +83 -85
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +97 -92
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +77 -142
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +77 -142
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +77 -142
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +184 -232
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +84 -73
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +80 -85
- data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +115 -126
- data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +99 -114
- data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +112 -150
- data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +109 -228
- data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +98 -101
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +164 -287
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +90 -152
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +90 -152
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +90 -152
- data/lib/twilio-ruby/rest/api/v2010/account/message.rb +138 -195
- data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +100 -90
- data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +106 -118
- data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +105 -96
- data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +117 -119
- data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +95 -84
- data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +103 -194
- data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +93 -100
- data/lib/twilio-ruby/rest/api/v2010/account/sandbox.rb +304 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +30 -42
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +113 -111
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +115 -104
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +133 -159
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +96 -94
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +96 -94
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +114 -111
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +113 -108
- data/lib/twilio-ruby/rest/api/v2010/account/sms.rb +140 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sms/short_code.rb +431 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sms/sms_message.rb +467 -0
- data/lib/twilio-ruby/rest/api/v2010/account/token.rb +34 -41
- data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +90 -98
- data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +24 -21
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +118 -139
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +62 -106
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +62 -106
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +62 -106
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +62 -106
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +62 -106
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +62 -106
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +62 -106
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +62 -106
- data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +124 -130
- data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +31 -35
- data/lib/twilio-ruby/rest/client.rb +88 -249
- data/lib/twilio-ruby/rest/{accounts.rb → conversations.rb} +14 -16
- data/lib/twilio-ruby/rest/conversations/v1.rb +35 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +270 -0
- data/lib/twilio-ruby/rest/{notify/v1/service/segment.rb → conversations/v1/conversation/completed.rb} +101 -101
- data/lib/twilio-ruby/rest/{preview/bulk_exports/export/day.rb → conversations/v1/conversation/in_progress.rb} +109 -95
- data/lib/twilio-ruby/rest/{messaging/v1/service/phone_number.rb → conversations/v1/conversation/participant.rb} +171 -178
- data/lib/twilio-ruby/rest/ip_messaging.rb +11 -26
- data/lib/twilio-ruby/rest/ip_messaging/v1.rb +7 -19
- data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +112 -113
- data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +131 -542
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +132 -194
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +103 -159
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +102 -183
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +112 -107
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +113 -186
- data/lib/twilio-ruby/rest/lookups.rb +8 -12
- data/lib/twilio-ruby/rest/lookups/v1.rb +7 -13
- data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +54 -71
- data/lib/twilio-ruby/rest/monitor.rb +11 -19
- data/lib/twilio-ruby/rest/monitor/v1.rb +7 -19
- data/lib/twilio-ruby/rest/monitor/v1/alert.rb +133 -121
- data/lib/twilio-ruby/rest/monitor/v1/event.rb +127 -116
- data/lib/twilio-ruby/rest/pricing.rb +11 -17
- data/lib/twilio-ruby/rest/pricing/v1.rb +9 -21
- data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +23 -27
- data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +74 -71
- data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +23 -27
- data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +79 -69
- data/lib/twilio-ruby/rest/pricing/v1/voice.rb +27 -33
- data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +74 -71
- data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +52 -47
- data/lib/twilio-ruby/rest/taskrouter.rb +8 -12
- data/lib/twilio-ruby/rest/taskrouter/v1.rb +5 -11
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +153 -260
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +114 -115
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +101 -105
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +139 -216
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +106 -194
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +145 -187
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +65 -57
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +57 -62
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +135 -217
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +60 -54
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +56 -52
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +123 -140
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +61 -57
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +72 -52
- data/lib/twilio-ruby/rest/trunking.rb +8 -12
- data/lib/twilio-ruby/rest/trunking/v1.rb +5 -11
- data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +134 -157
- data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +93 -89
- data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +93 -89
- data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +111 -114
- data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +112 -146
- data/lib/twilio-ruby/task_router.rb +0 -0
- data/lib/twilio-ruby/task_router/capability.rb +87 -0
- data/lib/twilio-ruby/twiml/response.rb +16 -0
- data/lib/twilio-ruby/util.rb +1 -1
- data/lib/twilio-ruby/util/access_token.rb +70 -0
- data/lib/twilio-ruby/util/capability.rb +64 -0
- data/lib/twilio-ruby/util/client_config.rb +29 -0
- data/lib/twilio-ruby/{security → util}/request_validator.rb +4 -21
- data/lib/twilio-ruby/version.rb +1 -1
- data/spec/holodeck/holodeck.rb +6 -6
- data/spec/holodeck/hologram.rb +1 -0
- data/spec/integration/api/v2010/account/address/dependent_phone_number_spec.rb +8 -8
- data/spec/integration/api/v2010/account/address_spec.rb +29 -37
- data/spec/integration/api/v2010/account/application_spec.rb +29 -29
- data/spec/integration/api/v2010/account/authorized_connect_app_spec.rb +13 -13
- data/spec/integration/api/v2010/account/available_phone_number/local_spec.rb +8 -9
- data/spec/integration/api/v2010/account/available_phone_number/mobile_spec.rb +8 -9
- data/spec/integration/api/v2010/account/available_phone_number/toll_free_spec.rb +8 -9
- data/spec/integration/api/v2010/account/available_phone_number_spec.rb +13 -13
- data/spec/integration/api/v2010/account/call/feedback_spec.rb +17 -17
- data/spec/integration/api/v2010/account/call/feedback_summary_spec.rb +19 -19
- data/spec/integration/api/v2010/account/call/notification_spec.rb +18 -18
- data/spec/integration/api/v2010/account/call/recording_spec.rb +20 -32
- data/spec/integration/api/v2010/account/call_spec.rb +29 -29
- data/spec/integration/api/v2010/account/conference/participant_spec.rb +35 -107
- data/spec/integration/api/v2010/account/conference_spec.rb +19 -58
- data/spec/integration/api/v2010/account/connect_app_spec.rb +18 -18
- data/spec/integration/api/v2010/account/incoming_phone_number/local_spec.rb +14 -16
- data/spec/integration/api/v2010/account/incoming_phone_number/mobile_spec.rb +14 -16
- data/spec/integration/api/v2010/account/incoming_phone_number/toll_free_spec.rb +14 -16
- data/spec/integration/api/v2010/account/incoming_phone_number_spec.rb +29 -41
- data/spec/integration/api/v2010/account/message/media_spec.rb +18 -18
- data/spec/integration/api/v2010/account/message_spec.rb +35 -41
- data/spec/integration/api/v2010/account/notification_spec.rb +18 -18
- data/spec/integration/api/v2010/account/outgoing_caller_id_spec.rb +23 -23
- data/spec/integration/api/v2010/account/queue/member_spec.rb +18 -18
- data/spec/integration/api/v2010/account/queue_spec.rb +32 -35
- data/spec/integration/api/v2010/account/recording/transcription_spec.rb +18 -18
- data/spec/integration/api/v2010/account/recording_spec.rb +21 -42
- data/spec/integration/api/v2010/account/sandbox_spec.rb +99 -0
- data/spec/integration/api/v2010/account/sip/credential_list/credential_spec.rb +36 -32
- data/spec/integration/api/v2010/account/sip/credential_list_spec.rb +29 -29
- data/spec/integration/api/v2010/account/sip/domain/credential_list_mapping_spec.rb +24 -24
- data/spec/integration/api/v2010/account/sip/domain/ip_access_control_list_mapping_spec.rb +24 -24
- data/spec/integration/api/v2010/account/sip/domain_spec.rb +29 -29
- data/spec/integration/api/v2010/account/sip/ip_access_control_list/ip_address_spec.rb +36 -32
- data/spec/integration/api/v2010/account/sip/ip_access_control_list_spec.rb +29 -29
- data/spec/integration/api/v2010/account/sip_spec.rb +1 -1
- data/spec/integration/api/v2010/account/{short_code_spec.rb → sms/short_code_spec.rb} +25 -18
- data/spec/integration/api/v2010/account/sms/sms_message_spec.rb +275 -0
- data/spec/integration/{accounts/v1/credential_spec.rb → api/v2010/account/sms_spec.rb} +2 -2
- data/spec/integration/api/v2010/account/token_spec.rb +7 -7
- data/spec/integration/api/v2010/account/transcription_spec.rb +18 -18
- data/spec/integration/api/v2010/account/usage/record/all_time_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/record/daily_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/record/last_month_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/record/monthly_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/record/this_month_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/record/today_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/record/yearly_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/record/yesterday_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/record_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/trigger_spec.rb +32 -32
- data/spec/integration/api/v2010/account/usage_spec.rb +1 -1
- data/spec/integration/api/v2010/account/validation_request_spec.rb +4 -24
- data/spec/integration/api/v2010/account_spec.rb +28 -24
- data/spec/integration/conversations/v1/conversation/completed_spec.rb +89 -0
- data/spec/integration/conversations/v1/conversation/in_progress_spec.rb +89 -0
- data/spec/integration/conversations/v1/conversation/participant_spec.rb +174 -0
- data/spec/integration/conversations/v1/conversation_spec.rb +49 -0
- data/spec/integration/ip_messaging/v1/credential_spec.rb +24 -155
- data/spec/integration/ip_messaging/v1/service/channel/member_spec.rb +13 -217
- data/spec/integration/ip_messaging/v1/service/channel/message_spec.rb +10 -241
- data/spec/integration/ip_messaging/v1/service/channel_spec.rb +23 -205
- data/spec/integration/ip_messaging/v1/service/role_spec.rb +19 -184
- data/spec/integration/ip_messaging/v1/service/user_spec.rb +24 -194
- data/spec/integration/ip_messaging/v1/service_spec.rb +17 -229
- data/spec/integration/lookups/v1/phone_number_spec.rb +6 -17
- data/spec/integration/monitor/v1/alert_spec.rb +60 -60
- data/spec/integration/monitor/v1/event_spec.rb +13 -13
- data/spec/integration/pricing/v1/messaging/country_spec.rb +7 -103
- data/spec/integration/pricing/v1/messaging_spec.rb +1 -1
- data/spec/integration/pricing/v1/phone_number/country_spec.rb +13 -13
- data/spec/integration/pricing/v1/phone_number_spec.rb +1 -1
- data/spec/integration/pricing/v1/voice/country_spec.rb +13 -13
- data/spec/integration/pricing/v1/voice/number_spec.rb +6 -6
- data/spec/integration/pricing/v1/voice_spec.rb +1 -1
- data/spec/integration/taskrouter/v1/workspace/activity_spec.rb +38 -34
- data/spec/integration/taskrouter/v1/workspace/event_spec.rb +13 -13
- data/spec/integration/taskrouter/v1/workspace/task/reservation_spec.rb +24 -21
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_statistics_spec.rb +11 -13
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queues_statistics_spec.rb +17 -18
- data/spec/integration/taskrouter/v1/workspace/task_queue_spec.rb +41 -57
- data/spec/integration/taskrouter/v1/workspace/task_spec.rb +50 -113
- data/spec/integration/taskrouter/v1/workspace/worker/worker_statistics_spec.rb +6 -7
- data/spec/integration/taskrouter/v1/workspace/worker/workers_statistics_spec.rb +6 -7
- data/spec/integration/taskrouter/v1/workspace/worker_spec.rb +68 -96
- data/spec/integration/taskrouter/v1/workspace/workflow/workflow_statistics_spec.rb +12 -14
- data/spec/integration/taskrouter/v1/workspace/workflow_spec.rb +43 -54
- data/spec/integration/taskrouter/v1/workspace/workspace_statistics_spec.rb +9 -11
- data/spec/integration/taskrouter/v1/workspace_spec.rb +51 -71
- data/spec/integration/trunking/v1/trunk/credential_list_spec.rb +24 -24
- data/spec/integration/trunking/v1/trunk/ip_access_control_list_spec.rb +66 -66
- data/spec/integration/trunking/v1/trunk/origination_url_spec.rb +28 -28
- data/spec/integration/trunking/v1/trunk/phone_number_spec.rb +23 -23
- data/spec/integration/trunking/v1/trunk_spec.rb +28 -28
- data/spec/rack/twilio_webhook_authentication_spec.rb +23 -19
- data/spec/spec_helper.rb +2 -2
- data/spec/support/fakeweb.rb +1 -1
- data/spec/task_router_spec.rb +114 -0
- data/spec/util/access_token_spec.rb +103 -0
- data/spec/util/capability_spec.rb +186 -0
- data/spec/util/client_config_spec.rb +21 -0
- data/spec/{security → util}/request_validator_spec.rb +5 -5
- data/twilio-ruby.gemspec +8 -12
- metadata +90 -416
- data/.rubocop.yml +0 -21
- data/.rubocop_todo.yml +0 -187
- data/VERSIONS.md +0 -64
- data/lib/twilio-ruby/framework/error.rb +0 -30
- data/lib/twilio-ruby/framework/values.rb +0 -7
- data/lib/twilio-ruby/jwt/access_token.rb +0 -232
- data/lib/twilio-ruby/jwt/client_capability.rb +0 -102
- data/lib/twilio-ruby/jwt/jwt.rb +0 -50
- data/lib/twilio-ruby/jwt/task_router.rb +0 -174
- data/lib/twilio-ruby/rest/accounts/v1.rb +0 -39
- data/lib/twilio-ruby/rest/accounts/v1/credential.rb +0 -105
- data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +0 -370
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +0 -431
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +0 -350
- data/lib/twilio-ruby/rest/api/v2010/account/key.rb +0 -336
- data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +0 -165
- data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +0 -153
- data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +0 -153
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +0 -397
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +0 -378
- data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +0 -430
- data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +0 -336
- data/lib/twilio-ruby/rest/chat.rb +0 -59
- data/lib/twilio-ruby/rest/chat/v1.rb +0 -56
- data/lib/twilio-ruby/rest/chat/v1/credential.rb +0 -403
- data/lib/twilio-ruby/rest/chat/v1/service.rb +0 -935
- data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +0 -554
- data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +0 -386
- data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +0 -431
- data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +0 -447
- data/lib/twilio-ruby/rest/chat/v1/service/role.rb +0 -396
- data/lib/twilio-ruby/rest/chat/v1/service/user.rb +0 -467
- data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +0 -244
- data/lib/twilio-ruby/rest/chat/v2.rb +0 -56
- data/lib/twilio-ruby/rest/chat/v2/credential.rb +0 -403
- data/lib/twilio-ruby/rest/chat/v2/service.rb +0 -688
- data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +0 -554
- data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +0 -386
- data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +0 -431
- data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +0 -447
- data/lib/twilio-ruby/rest/chat/v2/service/role.rb +0 -396
- data/lib/twilio-ruby/rest/chat/v2/service/user.rb +0 -467
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +0 -244
- data/lib/twilio-ruby/rest/fax.rb +0 -44
- data/lib/twilio-ruby/rest/fax/v1.rb +0 -41
- data/lib/twilio-ruby/rest/fax/v1/fax.rb +0 -541
- data/lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb +0 -326
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +0 -386
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +0 -244
- data/lib/twilio-ruby/rest/ip_messaging/v2.rb +0 -56
- data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +0 -403
- data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +0 -688
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +0 -554
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +0 -386
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +0 -431
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +0 -447
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +0 -396
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +0 -467
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +0 -244
- data/lib/twilio-ruby/rest/messaging.rb +0 -44
- data/lib/twilio-ruby/rest/messaging/v1.rb +0 -41
- data/lib/twilio-ruby/rest/messaging/v1/service.rb +0 -637
- data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +0 -352
- data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +0 -359
- data/lib/twilio-ruby/rest/notify.rb +0 -52
- data/lib/twilio-ruby/rest/notify/v1.rb +0 -56
- data/lib/twilio-ruby/rest/notify/v1/credential.rb +0 -403
- data/lib/twilio-ruby/rest/notify/v1/service.rb +0 -639
- data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +0 -430
- data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +0 -288
- data/lib/twilio-ruby/rest/notify/v1/service/user.rb +0 -445
- data/lib/twilio-ruby/rest/notify/v1/service/user/segment_memberships.rb +0 -254
- data/lib/twilio-ruby/rest/notify/v1/service/user/user_binding.rb +0 -434
- data/lib/twilio-ruby/rest/preview.rb +0 -145
- data/lib/twilio-ruby/rest/preview/bulk_exports.rb +0 -56
- data/lib/twilio-ruby/rest/preview/bulk_exports/export.rb +0 -203
- data/lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb +0 -243
- data/lib/twilio-ruby/rest/preview/hosted_numbers.rb +0 -42
- data/lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb +0 -557
- data/lib/twilio-ruby/rest/preview/marketplace.rb +0 -58
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +0 -333
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +0 -301
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +0 -440
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +0 -341
- data/lib/twilio-ruby/rest/preview/proxy.rb +0 -41
- data/lib/twilio-ruby/rest/preview/proxy/service.rb +0 -500
- data/lib/twilio-ruby/rest/preview/proxy/service/phone_number.rb +0 -359
- data/lib/twilio-ruby/rest/preview/proxy/service/session.rb +0 -536
- data/lib/twilio-ruby/rest/preview/proxy/service/session/interaction.rb +0 -429
- data/lib/twilio-ruby/rest/preview/proxy/service/session/participant.rb +0 -506
- data/lib/twilio-ruby/rest/preview/proxy/service/session/participant/message_interaction.rb +0 -452
- data/lib/twilio-ruby/rest/preview/proxy/service/short_code.rb +0 -359
- data/lib/twilio-ruby/rest/preview/sync.rb +0 -41
- data/lib/twilio-ruby/rest/preview/sync/service.rb +0 -504
- data/lib/twilio-ruby/rest/preview/sync/service/document.rb +0 -445
- data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +0 -395
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +0 -438
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +0 -430
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +0 -395
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +0 -438
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +0 -432
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +0 -395
- data/lib/twilio-ruby/rest/preview/wireless.rb +0 -71
- data/lib/twilio-ruby/rest/preview/wireless/command.rb +0 -382
- data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +0 -435
- data/lib/twilio-ruby/rest/preview/wireless/sim.rb +0 -544
- data/lib/twilio-ruby/rest/preview/wireless/sim/usage.rb +0 -236
- data/lib/twilio-ruby/rest/sync.rb +0 -44
- data/lib/twilio-ruby/rest/sync/v1.rb +0 -41
- data/lib/twilio-ruby/rest/sync/v1/service.rb +0 -504
- data/lib/twilio-ruby/rest/sync/v1/service/document.rb +0 -445
- data/lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb +0 -395
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +0 -438
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +0 -430
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb +0 -395
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +0 -438
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +0 -432
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb +0 -395
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +0 -315
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +0 -461
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +0 -406
- data/lib/twilio-ruby/rest/video.rb +0 -52
- data/lib/twilio-ruby/rest/video/v1.rb +0 -56
- data/lib/twilio-ruby/rest/video/v1/recording.rb +0 -382
- data/lib/twilio-ruby/rest/video/v1/room.rb +0 -485
- data/lib/twilio-ruby/rest/video/v1/room/recording.rb +0 -381
- data/lib/twilio-ruby/rest/wireless.rb +0 -60
- data/lib/twilio-ruby/rest/wireless/v1.rb +0 -71
- data/lib/twilio-ruby/rest/wireless/v1/command.rb +0 -367
- data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +0 -452
- data/lib/twilio-ruby/rest/wireless/v1/sim.rb +0 -548
- data/lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb +0 -235
- data/lib/twilio-ruby/twiml/messaging_response.rb +0 -141
- data/lib/twilio-ruby/twiml/twiml.rb +0 -69
- data/lib/twilio-ruby/twiml/voice_response.rb +0 -916
- data/spec/framework/serialize_spec.rb +0 -59
- data/spec/integration/accounts/v1/credential/public_key_spec.rb +0 -226
- data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb +0 -135
- data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb +0 -223
- data/spec/integration/api/v2010/account/key_spec.rb +0 -178
- data/spec/integration/api/v2010/account/message/feedback_spec.rb +0 -48
- data/spec/integration/api/v2010/account/new_key_spec.rb +0 -45
- data/spec/integration/api/v2010/account/new_signing_key_spec.rb +0 -45
- data/spec/integration/api/v2010/account/recording/add_on_result/payload_spec.rb +0 -175
- data/spec/integration/api/v2010/account/recording/add_on_result_spec.rb +0 -166
- data/spec/integration/api/v2010/account/signing_key_spec.rb +0 -178
- data/spec/integration/chat/v1/credential_spec.rb +0 -223
- data/spec/integration/chat/v1/service/channel/invite_spec.rb +0 -210
- data/spec/integration/chat/v1/service/channel/member_spec.rb +0 -284
- data/spec/integration/chat/v1/service/channel/message_spec.rb +0 -294
- data/spec/integration/chat/v1/service/channel_spec.rb +0 -275
- data/spec/integration/chat/v1/service/role_spec.rb +0 -263
- data/spec/integration/chat/v1/service/user/user_channel_spec.rb +0 -92
- data/spec/integration/chat/v1/service/user_spec.rb +0 -266
- data/spec/integration/chat/v1/service_spec.rb +0 -299
- data/spec/integration/chat/v2/credential_spec.rb +0 -223
- data/spec/integration/chat/v2/service/channel/invite_spec.rb +0 -210
- data/spec/integration/chat/v2/service/channel/member_spec.rb +0 -284
- data/spec/integration/chat/v2/service/channel/message_spec.rb +0 -294
- data/spec/integration/chat/v2/service/channel_spec.rb +0 -275
- data/spec/integration/chat/v2/service/role_spec.rb +0 -263
- data/spec/integration/chat/v2/service/user/user_channel_spec.rb +0 -92
- data/spec/integration/chat/v2/service/user_spec.rb +0 -266
- data/spec/integration/chat/v2/service_spec.rb +0 -325
- data/spec/integration/fax/v1/fax/fax_media_spec.rb +0 -126
- data/spec/integration/fax/v1/fax_spec.rb +0 -272
- data/spec/integration/ip_messaging/v1/service/channel/invite_spec.rb +0 -210
- data/spec/integration/ip_messaging/v1/service/user/user_channel_spec.rb +0 -92
- data/spec/integration/ip_messaging/v2/credential_spec.rb +0 -223
- data/spec/integration/ip_messaging/v2/service/channel/invite_spec.rb +0 -210
- data/spec/integration/ip_messaging/v2/service/channel/member_spec.rb +0 -284
- data/spec/integration/ip_messaging/v2/service/channel/message_spec.rb +0 -294
- data/spec/integration/ip_messaging/v2/service/channel_spec.rb +0 -275
- data/spec/integration/ip_messaging/v2/service/role_spec.rb +0 -263
- data/spec/integration/ip_messaging/v2/service/user/user_channel_spec.rb +0 -92
- data/spec/integration/ip_messaging/v2/service/user_spec.rb +0 -266
- data/spec/integration/ip_messaging/v2/service_spec.rb +0 -325
- data/spec/integration/messaging/v1/service/alpha_sender_spec.rb +0 -170
- data/spec/integration/messaging/v1/service/phone_number_spec.rb +0 -201
- data/spec/integration/messaging/v1/service/short_code_spec.rb +0 -173
- data/spec/integration/messaging/v1/service_spec.rb +0 -263
- data/spec/integration/notify/v1/credential_spec.rb +0 -223
- data/spec/integration/notify/v1/service/binding_spec.rb +0 -227
- data/spec/integration/notify/v1/service/notification_spec.rb +0 -97
- data/spec/integration/notify/v1/service/segment_spec.rb +0 -84
- data/spec/integration/notify/v1/service/user/segment_memberships_spec.rb +0 -118
- data/spec/integration/notify/v1/service/user/user_binding_spec.rb +0 -269
- data/spec/integration/notify/v1/service/user_spec.rb +0 -213
- data/spec/integration/notify/v1/service_spec.rb +0 -280
- data/spec/integration/preview/bulk_exports/export/day_spec.rb +0 -56
- data/spec/integration/preview/bulk_exports/export_configuration_spec.rb +0 -79
- data/spec/integration/preview/bulk_exports/export_spec.rb +0 -43
- data/spec/integration/preview/hosted_numbers/hosted_number_order_spec.rb +0 -280
- data/spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb +0 -121
- data/spec/integration/preview/marketplace/available_add_on_spec.rb +0 -142
- data/spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb +0 -164
- data/spec/integration/preview/marketplace/installed_add_on_spec.rb +0 -252
- data/spec/integration/preview/proxy/service/phone_number_spec.rb +0 -173
- data/spec/integration/preview/proxy/service/session/interaction_spec.rb +0 -104
- data/spec/integration/preview/proxy/service/session/participant/message_interaction_spec.rb +0 -164
- data/spec/integration/preview/proxy/service/session/participant_spec.rb +0 -226
- data/spec/integration/preview/proxy/service/session_spec.rb +0 -216
- data/spec/integration/preview/proxy/service/short_code_spec.rb +0 -173
- data/spec/integration/preview/proxy/service_spec.rb +0 -200
- data/spec/integration/preview/sync/service/document/document_permission_spec.rb +0 -206
- data/spec/integration/preview/sync/service/document_spec.rb +0 -254
- data/spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb +0 -256
- data/spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb +0 -206
- data/spec/integration/preview/sync/service/sync_list_spec.rb +0 -207
- data/spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb +0 -257
- data/spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb +0 -206
- data/spec/integration/preview/sync/service/sync_map_spec.rb +0 -207
- data/spec/integration/preview/sync/service_spec.rb +0 -244
- data/spec/integration/preview/wireless/command_spec.rb +0 -169
- data/spec/integration/preview/wireless/rate_plan_spec.rb +0 -260
- data/spec/integration/preview/wireless/sim/usage_spec.rb +0 -49
- data/spec/integration/preview/wireless/sim_spec.rb +0 -208
- data/spec/integration/sync/v1/service/document/document_permission_spec.rb +0 -206
- data/spec/integration/sync/v1/service/document_spec.rb +0 -254
- data/spec/integration/sync/v1/service/sync_list/sync_list_item_spec.rb +0 -256
- data/spec/integration/sync/v1/service/sync_list/sync_list_permission_spec.rb +0 -206
- data/spec/integration/sync/v1/service/sync_list_spec.rb +0 -207
- data/spec/integration/sync/v1/service/sync_map/sync_map_item_spec.rb +0 -257
- data/spec/integration/sync/v1/service/sync_map/sync_map_permission_spec.rb +0 -206
- data/spec/integration/sync/v1/service/sync_map_spec.rb +0 -207
- data/spec/integration/sync/v1/service_spec.rb +0 -244
- data/spec/integration/taskrouter/v1/workspace/task_channel_spec.rb +0 -127
- data/spec/integration/taskrouter/v1/workspace/worker/reservation_spec.rb +0 -192
- data/spec/integration/taskrouter/v1/workspace/worker/worker_channel_spec.rb +0 -201
- data/spec/integration/video/v1/recording_spec.rb +0 -165
- data/spec/integration/video/v1/room/recording_spec.rb +0 -146
- data/spec/integration/video/v1/room_spec.rb +0 -237
- data/spec/integration/wireless/v1/command_spec.rb +0 -166
- data/spec/integration/wireless/v1/rate_plan_spec.rb +0 -268
- data/spec/integration/wireless/v1/sim/usage_record_spec.rb +0 -65
- data/spec/integration/wireless/v1/sim_spec.rb +0 -208
- data/spec/jwt/access_token_spec.rb +0 -130
- data/spec/jwt/client_capability_spec.rb +0 -104
- data/spec/jwt/task_router_spec.rb +0 -172
- data/spec/twiml/messaging_response_spec.rb +0 -90
- data/spec/twiml/voice_response_spec.rb +0 -474
|
@@ -1,434 +0,0 @@
|
|
|
1
|
-
##
|
|
2
|
-
# This code was generated by
|
|
3
|
-
# \ / _ _ _| _ _
|
|
4
|
-
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
|
5
|
-
# / /
|
|
6
|
-
|
|
7
|
-
module Twilio
|
|
8
|
-
module REST
|
|
9
|
-
class Notify < Domain
|
|
10
|
-
class V1 < Version
|
|
11
|
-
class ServiceContext < InstanceContext
|
|
12
|
-
class UserContext < InstanceContext
|
|
13
|
-
class UserBindingList < ListResource
|
|
14
|
-
##
|
|
15
|
-
# Initialize the UserBindingList
|
|
16
|
-
# @param [Version] version Version that contains the resource
|
|
17
|
-
# @param [String] service_sid The service_sid
|
|
18
|
-
# @param [String] identity The identity
|
|
19
|
-
# @return [UserBindingList] UserBindingList
|
|
20
|
-
def initialize(version, service_sid: nil, identity: nil)
|
|
21
|
-
super(version)
|
|
22
|
-
|
|
23
|
-
# Path Solution
|
|
24
|
-
@solution = {
|
|
25
|
-
service_sid: service_sid,
|
|
26
|
-
identity: identity
|
|
27
|
-
}
|
|
28
|
-
@uri = "/Services/#{@solution[:service_sid]}/Users/#{@solution[:identity]}/Bindings"
|
|
29
|
-
end
|
|
30
|
-
|
|
31
|
-
##
|
|
32
|
-
# Retrieve a single page of UserBindingInstance records from the API.
|
|
33
|
-
# Request is executed immediately.
|
|
34
|
-
# @param [user_binding.BindingType] binding_type The binding_type
|
|
35
|
-
# @param [String] address The address
|
|
36
|
-
# @param [String] tag The tag
|
|
37
|
-
# @param [String] notification_protocol_version The notification_protocol_version
|
|
38
|
-
# @param [String] credential_sid The credential_sid
|
|
39
|
-
# @param [String] endpoint The endpoint
|
|
40
|
-
# @return [UserBindingInstance] Newly created UserBindingInstance
|
|
41
|
-
def create(binding_type: nil, address: nil, tag: :unset, notification_protocol_version: :unset, credential_sid: :unset, endpoint: :unset)
|
|
42
|
-
data = Twilio::Values.of({
|
|
43
|
-
'BindingType' => binding_type,
|
|
44
|
-
'Address' => address,
|
|
45
|
-
'Tag' => tag,
|
|
46
|
-
'NotificationProtocolVersion' => notification_protocol_version,
|
|
47
|
-
'CredentialSid' => credential_sid,
|
|
48
|
-
'Endpoint' => endpoint,
|
|
49
|
-
})
|
|
50
|
-
|
|
51
|
-
payload = @version.create(
|
|
52
|
-
'POST',
|
|
53
|
-
@uri,
|
|
54
|
-
data: data
|
|
55
|
-
)
|
|
56
|
-
|
|
57
|
-
UserBindingInstance.new(
|
|
58
|
-
@version,
|
|
59
|
-
payload,
|
|
60
|
-
service_sid: @solution[:service_sid],
|
|
61
|
-
identity: @solution[:identity],
|
|
62
|
-
)
|
|
63
|
-
end
|
|
64
|
-
|
|
65
|
-
##
|
|
66
|
-
# Lists UserBindingInstance records from the API as a list.
|
|
67
|
-
# Unlike stream(), this operation is eager and will load `limit` records into
|
|
68
|
-
# memory before returning.
|
|
69
|
-
# @param [Date] start_date The start_date
|
|
70
|
-
# @param [Date] end_date The end_date
|
|
71
|
-
# @param [String] tag The tag
|
|
72
|
-
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
|
73
|
-
# guarantees to never return more than limit. Default is no limit
|
|
74
|
-
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
|
75
|
-
# the default value of 50 records. If no page_size is defined
|
|
76
|
-
# but a limit is defined, stream() will attempt to read the
|
|
77
|
-
# limit with the most efficient page size, i.e. min(limit, 1000)
|
|
78
|
-
# @return [Array] Array of up to limit results
|
|
79
|
-
def list(start_date: :unset, end_date: :unset, tag: :unset, limit: nil, page_size: nil)
|
|
80
|
-
self.stream(
|
|
81
|
-
start_date: start_date,
|
|
82
|
-
end_date: end_date,
|
|
83
|
-
tag: tag,
|
|
84
|
-
limit: limit,
|
|
85
|
-
page_size: page_size
|
|
86
|
-
).entries
|
|
87
|
-
end
|
|
88
|
-
|
|
89
|
-
##
|
|
90
|
-
# Streams UserBindingInstance records from the API as an Enumerable.
|
|
91
|
-
# This operation lazily loads records as efficiently as possible until the limit
|
|
92
|
-
# is reached.
|
|
93
|
-
# @param [Date] start_date The start_date
|
|
94
|
-
# @param [Date] end_date The end_date
|
|
95
|
-
# @param [String] tag The tag
|
|
96
|
-
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
|
97
|
-
# guarantees to never return more than limit. Default is no limit
|
|
98
|
-
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
|
99
|
-
# the default value of 50 records. If no page_size is defined
|
|
100
|
-
# but a limit is defined, stream() will attempt to read the
|
|
101
|
-
# limit with the most efficient page size, i.e. min(limit, 1000)
|
|
102
|
-
# @return [Enumerable] Enumerable that will yield up to limit results
|
|
103
|
-
def stream(start_date: :unset, end_date: :unset, tag: :unset, limit: nil, page_size: nil)
|
|
104
|
-
limits = @version.read_limits(limit, page_size)
|
|
105
|
-
|
|
106
|
-
page = self.page(
|
|
107
|
-
start_date: start_date,
|
|
108
|
-
end_date: end_date,
|
|
109
|
-
tag: tag,
|
|
110
|
-
page_size: limits[:page_size],
|
|
111
|
-
)
|
|
112
|
-
|
|
113
|
-
@version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
|
|
114
|
-
end
|
|
115
|
-
|
|
116
|
-
##
|
|
117
|
-
# When passed a block, yields UserBindingInstance records from the API.
|
|
118
|
-
# This operation lazily loads records as efficiently as possible until the limit
|
|
119
|
-
# is reached.
|
|
120
|
-
def each
|
|
121
|
-
limits = @version.read_limits
|
|
122
|
-
|
|
123
|
-
page = self.page(
|
|
124
|
-
page_size: limits[:page_size],
|
|
125
|
-
)
|
|
126
|
-
|
|
127
|
-
@version.stream(page,
|
|
128
|
-
limit: limits[:limit],
|
|
129
|
-
page_limit: limits[:page_limit]).each {|x| yield x}
|
|
130
|
-
end
|
|
131
|
-
|
|
132
|
-
##
|
|
133
|
-
# Retrieve a single page of UserBindingInstance records from the API.
|
|
134
|
-
# Request is executed immediately.
|
|
135
|
-
# @param [Date] start_date The start_date
|
|
136
|
-
# @param [Date] end_date The end_date
|
|
137
|
-
# @param [String] tag The tag
|
|
138
|
-
# @param [String] page_token PageToken provided by the API
|
|
139
|
-
# @param [Integer] page_number Page Number, this value is simply for client state
|
|
140
|
-
# @param [Integer] page_size Number of records to return, defaults to 50
|
|
141
|
-
# @return [Page] Page of UserBindingInstance
|
|
142
|
-
def page(start_date: :unset, end_date: :unset, tag: :unset, page_token: :unset, page_number: :unset, page_size: :unset)
|
|
143
|
-
params = Twilio::Values.of({
|
|
144
|
-
'StartDate' => Twilio.serialize_iso8601_date(start_date),
|
|
145
|
-
'EndDate' => Twilio.serialize_iso8601_date(end_date),
|
|
146
|
-
'Tag' => tag,
|
|
147
|
-
'PageToken' => page_token,
|
|
148
|
-
'Page' => page_number,
|
|
149
|
-
'PageSize' => page_size,
|
|
150
|
-
})
|
|
151
|
-
response = @version.page(
|
|
152
|
-
'GET',
|
|
153
|
-
@uri,
|
|
154
|
-
params
|
|
155
|
-
)
|
|
156
|
-
UserBindingPage.new(@version, response, @solution)
|
|
157
|
-
end
|
|
158
|
-
|
|
159
|
-
##
|
|
160
|
-
# Retrieve a single page of UserBindingInstance records from the API.
|
|
161
|
-
# Request is executed immediately.
|
|
162
|
-
# @param [String] target_url API-generated URL for the requested results page
|
|
163
|
-
# @return [Page] Page of UserBindingInstance
|
|
164
|
-
def get_page(target_url)
|
|
165
|
-
response = @version.domain.request(
|
|
166
|
-
'GET',
|
|
167
|
-
target_url
|
|
168
|
-
)
|
|
169
|
-
UserBindingPage.new(@version, response, @solution)
|
|
170
|
-
end
|
|
171
|
-
|
|
172
|
-
##
|
|
173
|
-
# Provide a user friendly representation
|
|
174
|
-
def to_s
|
|
175
|
-
'#<Twilio.Notify.V1.UserBindingList>'
|
|
176
|
-
end
|
|
177
|
-
end
|
|
178
|
-
|
|
179
|
-
class UserBindingPage < Page
|
|
180
|
-
##
|
|
181
|
-
# Initialize the UserBindingPage
|
|
182
|
-
# @param [Version] version Version that contains the resource
|
|
183
|
-
# @param [Response] response Response from the API
|
|
184
|
-
# @param [Hash] solution Path solution for the resource
|
|
185
|
-
# @return [UserBindingPage] UserBindingPage
|
|
186
|
-
def initialize(version, response, solution)
|
|
187
|
-
super(version, response)
|
|
188
|
-
|
|
189
|
-
# Path Solution
|
|
190
|
-
@solution = solution
|
|
191
|
-
end
|
|
192
|
-
|
|
193
|
-
##
|
|
194
|
-
# Build an instance of UserBindingInstance
|
|
195
|
-
# @param [Hash] payload Payload response from the API
|
|
196
|
-
# @return [UserBindingInstance] UserBindingInstance
|
|
197
|
-
def get_instance(payload)
|
|
198
|
-
UserBindingInstance.new(
|
|
199
|
-
@version,
|
|
200
|
-
payload,
|
|
201
|
-
service_sid: @solution[:service_sid],
|
|
202
|
-
identity: @solution[:identity],
|
|
203
|
-
)
|
|
204
|
-
end
|
|
205
|
-
|
|
206
|
-
##
|
|
207
|
-
# Provide a user friendly representation
|
|
208
|
-
def to_s
|
|
209
|
-
'<Twilio.Notify.V1.UserBindingPage>'
|
|
210
|
-
end
|
|
211
|
-
end
|
|
212
|
-
|
|
213
|
-
class UserBindingContext < InstanceContext
|
|
214
|
-
##
|
|
215
|
-
# Initialize the UserBindingContext
|
|
216
|
-
# @param [Version] version Version that contains the resource
|
|
217
|
-
# @param [String] service_sid The service_sid
|
|
218
|
-
# @param [String] identity The identity
|
|
219
|
-
# @param [String] sid The sid
|
|
220
|
-
# @return [UserBindingContext] UserBindingContext
|
|
221
|
-
def initialize(version, service_sid, identity, sid)
|
|
222
|
-
super(version)
|
|
223
|
-
|
|
224
|
-
# Path Solution
|
|
225
|
-
@solution = {
|
|
226
|
-
service_sid: service_sid,
|
|
227
|
-
identity: identity,
|
|
228
|
-
sid: sid,
|
|
229
|
-
}
|
|
230
|
-
@uri = "/Services/#{@solution[:service_sid]}/Users/#{@solution[:identity]}/Bindings/#{@solution[:sid]}"
|
|
231
|
-
end
|
|
232
|
-
|
|
233
|
-
##
|
|
234
|
-
# Fetch a UserBindingInstance
|
|
235
|
-
# @return [UserBindingInstance] Fetched UserBindingInstance
|
|
236
|
-
def fetch
|
|
237
|
-
params = Twilio::Values.of({})
|
|
238
|
-
|
|
239
|
-
payload = @version.fetch(
|
|
240
|
-
'GET',
|
|
241
|
-
@uri,
|
|
242
|
-
params,
|
|
243
|
-
)
|
|
244
|
-
|
|
245
|
-
UserBindingInstance.new(
|
|
246
|
-
@version,
|
|
247
|
-
payload,
|
|
248
|
-
service_sid: @solution[:service_sid],
|
|
249
|
-
identity: @solution[:identity],
|
|
250
|
-
sid: @solution[:sid],
|
|
251
|
-
)
|
|
252
|
-
end
|
|
253
|
-
|
|
254
|
-
##
|
|
255
|
-
# Deletes the UserBindingInstance
|
|
256
|
-
# @return [Boolean] true if delete succeeds, true otherwise
|
|
257
|
-
def delete
|
|
258
|
-
@version.delete('delete', @uri)
|
|
259
|
-
end
|
|
260
|
-
|
|
261
|
-
##
|
|
262
|
-
# Provide a user friendly representation
|
|
263
|
-
def to_s
|
|
264
|
-
context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
|
|
265
|
-
"#<Twilio.Notify.V1.UserBindingContext #{context}>"
|
|
266
|
-
end
|
|
267
|
-
end
|
|
268
|
-
|
|
269
|
-
class UserBindingInstance < InstanceResource
|
|
270
|
-
##
|
|
271
|
-
# Initialize the UserBindingInstance
|
|
272
|
-
# @param [Version] version Version that contains the resource
|
|
273
|
-
# @param [Hash] payload payload that contains response from Twilio
|
|
274
|
-
# @param [String] service_sid The service_sid
|
|
275
|
-
# @param [String] identity The identity
|
|
276
|
-
# @param [String] sid The sid
|
|
277
|
-
# @return [UserBindingInstance] UserBindingInstance
|
|
278
|
-
def initialize(version, payload, service_sid: nil, identity: nil, sid: nil)
|
|
279
|
-
super(version)
|
|
280
|
-
|
|
281
|
-
# Marshaled Properties
|
|
282
|
-
@properties = {
|
|
283
|
-
'sid' => payload['sid'],
|
|
284
|
-
'account_sid' => payload['account_sid'],
|
|
285
|
-
'service_sid' => payload['service_sid'],
|
|
286
|
-
'credential_sid' => payload['credential_sid'],
|
|
287
|
-
'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
|
|
288
|
-
'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
|
|
289
|
-
'notification_protocol_version' => payload['notification_protocol_version'],
|
|
290
|
-
'endpoint' => payload['endpoint'],
|
|
291
|
-
'identity' => payload['identity'],
|
|
292
|
-
'binding_type' => payload['binding_type'],
|
|
293
|
-
'address' => payload['address'],
|
|
294
|
-
'tags' => payload['tags'],
|
|
295
|
-
'url' => payload['url'],
|
|
296
|
-
'links' => payload['links'],
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
# Context
|
|
300
|
-
@instance_context = nil
|
|
301
|
-
@params = {
|
|
302
|
-
'service_sid' => service_sid,
|
|
303
|
-
'identity' => identity,
|
|
304
|
-
'sid' => sid || @properties['sid'],
|
|
305
|
-
}
|
|
306
|
-
end
|
|
307
|
-
|
|
308
|
-
##
|
|
309
|
-
# Generate an instance context for the instance, the context is capable of
|
|
310
|
-
# performing various actions. All instance actions are proxied to the context
|
|
311
|
-
# @return [UserBindingContext] UserBindingContext for this UserBindingInstance
|
|
312
|
-
def context
|
|
313
|
-
unless @instance_context
|
|
314
|
-
@instance_context = UserBindingContext.new(
|
|
315
|
-
@version,
|
|
316
|
-
@params['service_sid'],
|
|
317
|
-
@params['identity'],
|
|
318
|
-
@params['sid'],
|
|
319
|
-
)
|
|
320
|
-
end
|
|
321
|
-
@instance_context
|
|
322
|
-
end
|
|
323
|
-
|
|
324
|
-
##
|
|
325
|
-
# @return [String] The sid
|
|
326
|
-
def sid
|
|
327
|
-
@properties['sid']
|
|
328
|
-
end
|
|
329
|
-
|
|
330
|
-
##
|
|
331
|
-
# @return [String] The account_sid
|
|
332
|
-
def account_sid
|
|
333
|
-
@properties['account_sid']
|
|
334
|
-
end
|
|
335
|
-
|
|
336
|
-
##
|
|
337
|
-
# @return [String] The service_sid
|
|
338
|
-
def service_sid
|
|
339
|
-
@properties['service_sid']
|
|
340
|
-
end
|
|
341
|
-
|
|
342
|
-
##
|
|
343
|
-
# @return [String] The credential_sid
|
|
344
|
-
def credential_sid
|
|
345
|
-
@properties['credential_sid']
|
|
346
|
-
end
|
|
347
|
-
|
|
348
|
-
##
|
|
349
|
-
# @return [Time] The date_created
|
|
350
|
-
def date_created
|
|
351
|
-
@properties['date_created']
|
|
352
|
-
end
|
|
353
|
-
|
|
354
|
-
##
|
|
355
|
-
# @return [Time] The date_updated
|
|
356
|
-
def date_updated
|
|
357
|
-
@properties['date_updated']
|
|
358
|
-
end
|
|
359
|
-
|
|
360
|
-
##
|
|
361
|
-
# @return [String] The notification_protocol_version
|
|
362
|
-
def notification_protocol_version
|
|
363
|
-
@properties['notification_protocol_version']
|
|
364
|
-
end
|
|
365
|
-
|
|
366
|
-
##
|
|
367
|
-
# @return [String] The endpoint
|
|
368
|
-
def endpoint
|
|
369
|
-
@properties['endpoint']
|
|
370
|
-
end
|
|
371
|
-
|
|
372
|
-
##
|
|
373
|
-
# @return [String] The identity
|
|
374
|
-
def identity
|
|
375
|
-
@properties['identity']
|
|
376
|
-
end
|
|
377
|
-
|
|
378
|
-
##
|
|
379
|
-
# @return [String] The binding_type
|
|
380
|
-
def binding_type
|
|
381
|
-
@properties['binding_type']
|
|
382
|
-
end
|
|
383
|
-
|
|
384
|
-
##
|
|
385
|
-
# @return [String] The address
|
|
386
|
-
def address
|
|
387
|
-
@properties['address']
|
|
388
|
-
end
|
|
389
|
-
|
|
390
|
-
##
|
|
391
|
-
# @return [String] The tags
|
|
392
|
-
def tags
|
|
393
|
-
@properties['tags']
|
|
394
|
-
end
|
|
395
|
-
|
|
396
|
-
##
|
|
397
|
-
# @return [String] The url
|
|
398
|
-
def url
|
|
399
|
-
@properties['url']
|
|
400
|
-
end
|
|
401
|
-
|
|
402
|
-
##
|
|
403
|
-
# @return [String] The links
|
|
404
|
-
def links
|
|
405
|
-
@properties['links']
|
|
406
|
-
end
|
|
407
|
-
|
|
408
|
-
##
|
|
409
|
-
# Fetch a UserBindingInstance
|
|
410
|
-
# @return [UserBindingInstance] Fetched UserBindingInstance
|
|
411
|
-
def fetch
|
|
412
|
-
context.fetch
|
|
413
|
-
end
|
|
414
|
-
|
|
415
|
-
##
|
|
416
|
-
# Deletes the UserBindingInstance
|
|
417
|
-
# @return [Boolean] true if delete succeeds, true otherwise
|
|
418
|
-
def delete
|
|
419
|
-
context.delete
|
|
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.Notify.V1.UserBindingInstance #{values}>"
|
|
427
|
-
end
|
|
428
|
-
end
|
|
429
|
-
end
|
|
430
|
-
end
|
|
431
|
-
end
|
|
432
|
-
end
|
|
433
|
-
end
|
|
434
|
-
end
|
|
@@ -1,145 +0,0 @@
|
|
|
1
|
-
##
|
|
2
|
-
# This code was generated by
|
|
3
|
-
# \ / _ _ _| _ _
|
|
4
|
-
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
|
5
|
-
# / /
|
|
6
|
-
|
|
7
|
-
module Twilio
|
|
8
|
-
module REST
|
|
9
|
-
class Preview < Domain
|
|
10
|
-
##
|
|
11
|
-
# Initialize the Preview Domain
|
|
12
|
-
def initialize(twilio)
|
|
13
|
-
super
|
|
14
|
-
|
|
15
|
-
@base_url = 'https://preview.twilio.com'
|
|
16
|
-
@host = 'preview.twilio.com'
|
|
17
|
-
@port = 443
|
|
18
|
-
|
|
19
|
-
# Versions
|
|
20
|
-
@sync = nil
|
|
21
|
-
@wireless = nil
|
|
22
|
-
@marketplace = nil
|
|
23
|
-
@bulk_exports = nil
|
|
24
|
-
@proxy = nil
|
|
25
|
-
@hosted_numbers = nil
|
|
26
|
-
end
|
|
27
|
-
|
|
28
|
-
##
|
|
29
|
-
# Version sync of preview
|
|
30
|
-
def sync
|
|
31
|
-
@sync ||= Sync.new self
|
|
32
|
-
end
|
|
33
|
-
|
|
34
|
-
##
|
|
35
|
-
# Version wireless of preview
|
|
36
|
-
def wireless
|
|
37
|
-
@wireless ||= Wireless.new self
|
|
38
|
-
end
|
|
39
|
-
|
|
40
|
-
##
|
|
41
|
-
# Version marketplace of preview
|
|
42
|
-
def marketplace
|
|
43
|
-
@marketplace ||= Marketplace.new self
|
|
44
|
-
end
|
|
45
|
-
|
|
46
|
-
##
|
|
47
|
-
# Version bulk_exports of preview
|
|
48
|
-
def bulk_exports
|
|
49
|
-
@bulk_exports ||= BulkExports.new self
|
|
50
|
-
end
|
|
51
|
-
|
|
52
|
-
##
|
|
53
|
-
# Version proxy of preview
|
|
54
|
-
def proxy
|
|
55
|
-
@proxy ||= Proxy.new self
|
|
56
|
-
end
|
|
57
|
-
|
|
58
|
-
##
|
|
59
|
-
# Version hosted_numbers of preview
|
|
60
|
-
def hosted_numbers
|
|
61
|
-
@hosted_numbers ||= HostedNumbers.new self
|
|
62
|
-
end
|
|
63
|
-
|
|
64
|
-
##
|
|
65
|
-
# @param [String] sid A 34 character string that uniquely identifies this Service.
|
|
66
|
-
# @return [Twilio::REST::Preview::Proxy::ServiceInstance] if sid was passed.
|
|
67
|
-
# @return [Twilio::REST::Preview::Proxy::ServiceList]
|
|
68
|
-
def services(sid=:unset)
|
|
69
|
-
self.proxy.services(sid)
|
|
70
|
-
end
|
|
71
|
-
|
|
72
|
-
##
|
|
73
|
-
# @param [String] sid The sid
|
|
74
|
-
# @return [Twilio::REST::Preview::Wireless::CommandInstance] if sid was passed.
|
|
75
|
-
# @return [Twilio::REST::Preview::Wireless::CommandList]
|
|
76
|
-
def commands(sid=:unset)
|
|
77
|
-
self.wireless.commands(sid)
|
|
78
|
-
end
|
|
79
|
-
|
|
80
|
-
##
|
|
81
|
-
# @param [String] sid The sid
|
|
82
|
-
# @return [Twilio::REST::Preview::Wireless::RatePlanInstance] if sid was passed.
|
|
83
|
-
# @return [Twilio::REST::Preview::Wireless::RatePlanList]
|
|
84
|
-
def rate_plans(sid=:unset)
|
|
85
|
-
self.wireless.rate_plans(sid)
|
|
86
|
-
end
|
|
87
|
-
|
|
88
|
-
##
|
|
89
|
-
# @param [String] sid The sid
|
|
90
|
-
# @return [Twilio::REST::Preview::Wireless::SimInstance] if sid was passed.
|
|
91
|
-
# @return [Twilio::REST::Preview::Wireless::SimList]
|
|
92
|
-
def sims(sid=:unset)
|
|
93
|
-
self.wireless.sims(sid)
|
|
94
|
-
end
|
|
95
|
-
|
|
96
|
-
##
|
|
97
|
-
# @param [String] sid A 34 character string that uniquely identifies this Add-on.
|
|
98
|
-
# @return [Twilio::REST::Preview::Marketplace::AvailableAddOnInstance] if sid was passed.
|
|
99
|
-
# @return [Twilio::REST::Preview::Marketplace::AvailableAddOnList]
|
|
100
|
-
def available_add_ons(sid=:unset)
|
|
101
|
-
self.marketplace.available_add_ons(sid)
|
|
102
|
-
end
|
|
103
|
-
|
|
104
|
-
##
|
|
105
|
-
# @param [String] sid A 34 character string that uniquely identifies this Add-on
|
|
106
|
-
# installation.
|
|
107
|
-
# @return [Twilio::REST::Preview::Marketplace::InstalledAddOnInstance] if sid was passed.
|
|
108
|
-
# @return [Twilio::REST::Preview::Marketplace::InstalledAddOnList]
|
|
109
|
-
def installed_add_ons(sid=:unset)
|
|
110
|
-
self.marketplace.installed_add_ons(sid)
|
|
111
|
-
end
|
|
112
|
-
|
|
113
|
-
##
|
|
114
|
-
# @param [String] resource_type The resource_type
|
|
115
|
-
# @return [Twilio::REST::Preview::BulkExports::ExportInstance] if resource_type was passed.
|
|
116
|
-
# @return [Twilio::REST::Preview::BulkExports::ExportList]
|
|
117
|
-
def exports(resource_type=:unset)
|
|
118
|
-
self.bulk_exports.exports(resource_type)
|
|
119
|
-
end
|
|
120
|
-
|
|
121
|
-
##
|
|
122
|
-
# @param [String] resource_type The resource_type
|
|
123
|
-
# @return [Twilio::REST::Preview::BulkExports::ExportConfigurationInstance] if resource_type was passed.
|
|
124
|
-
# @return [Twilio::REST::Preview::BulkExports::ExportConfigurationList]
|
|
125
|
-
def export_configuration(resource_type=:unset)
|
|
126
|
-
self.bulk_exports.export_configuration(resource_type)
|
|
127
|
-
end
|
|
128
|
-
|
|
129
|
-
##
|
|
130
|
-
# @param [String] sid A 34 character string that uniquely identifies this
|
|
131
|
-
# HostedNumberOrder.
|
|
132
|
-
# @return [Twilio::REST::Preview::HostedNumbers::HostedNumberOrderInstance] if sid was passed.
|
|
133
|
-
# @return [Twilio::REST::Preview::HostedNumbers::HostedNumberOrderList]
|
|
134
|
-
def hosted_number_orders(sid=:unset)
|
|
135
|
-
self.hosted_numbers.hosted_number_orders(sid)
|
|
136
|
-
end
|
|
137
|
-
|
|
138
|
-
##
|
|
139
|
-
# Provide a user friendly representation
|
|
140
|
-
def to_s
|
|
141
|
-
'#<Twilio::REST::Preview>'
|
|
142
|
-
end
|
|
143
|
-
end
|
|
144
|
-
end
|
|
145
|
-
end
|