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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# This code was generated by
|
|
3
3
|
# \ / _ _ _| _ _
|
|
4
4
|
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
|
5
|
-
# / /
|
|
5
|
+
# / /
|
|
6
6
|
|
|
7
7
|
module Twilio
|
|
8
8
|
module REST
|
|
@@ -13,88 +13,104 @@ module Twilio
|
|
|
13
13
|
##
|
|
14
14
|
# Initialize the NumberList
|
|
15
15
|
# @param [Version] version Version that contains the resource
|
|
16
|
+
|
|
16
17
|
# @return [NumberList] NumberList
|
|
17
18
|
def initialize(version)
|
|
18
19
|
super(version)
|
|
19
|
-
|
|
20
|
+
|
|
20
21
|
# Path Solution
|
|
21
22
|
@solution = {}
|
|
22
23
|
end
|
|
23
|
-
|
|
24
|
+
|
|
25
|
+
##
|
|
26
|
+
# Constructs a NumberContext
|
|
27
|
+
# @param [String] number The number
|
|
28
|
+
|
|
29
|
+
# @return [NumberContext] NumberContext
|
|
30
|
+
def get(number)
|
|
31
|
+
NumberContext.new(
|
|
32
|
+
@version,
|
|
33
|
+
number: number,
|
|
34
|
+
)
|
|
35
|
+
end
|
|
36
|
+
|
|
24
37
|
##
|
|
25
38
|
# Provide a user friendly representation
|
|
26
39
|
def to_s
|
|
27
40
|
'#<Twilio.Pricing.V1.NumberList>'
|
|
28
41
|
end
|
|
29
42
|
end
|
|
30
|
-
|
|
43
|
+
|
|
31
44
|
class NumberPage < Page
|
|
32
45
|
##
|
|
33
46
|
# Initialize the NumberPage
|
|
34
47
|
# @param [Version] version Version that contains the resource
|
|
35
48
|
# @param [Response] response Response from the API
|
|
36
49
|
# @param [Hash] solution Path solution for the resource
|
|
50
|
+
|
|
37
51
|
# @return [NumberPage] NumberPage
|
|
38
52
|
def initialize(version, response, solution)
|
|
39
53
|
super(version, response)
|
|
40
|
-
|
|
54
|
+
|
|
41
55
|
# Path Solution
|
|
42
56
|
@solution = solution
|
|
43
57
|
end
|
|
44
|
-
|
|
58
|
+
|
|
45
59
|
##
|
|
46
60
|
# Build an instance of NumberInstance
|
|
47
61
|
# @param [Hash] payload Payload response from the API
|
|
62
|
+
|
|
48
63
|
# @return [NumberInstance] NumberInstance
|
|
49
64
|
def get_instance(payload)
|
|
50
|
-
NumberInstance.new(
|
|
65
|
+
return NumberInstance.new(
|
|
51
66
|
@version,
|
|
52
67
|
payload,
|
|
53
68
|
)
|
|
54
69
|
end
|
|
55
|
-
|
|
70
|
+
|
|
56
71
|
##
|
|
57
72
|
# Provide a user friendly representation
|
|
58
73
|
def to_s
|
|
59
74
|
'<Twilio.Pricing.V1.NumberPage>'
|
|
60
75
|
end
|
|
61
76
|
end
|
|
62
|
-
|
|
77
|
+
|
|
63
78
|
class NumberContext < InstanceContext
|
|
64
79
|
##
|
|
65
80
|
# Initialize the NumberContext
|
|
66
81
|
# @param [Version] version Version that contains the resource
|
|
67
82
|
# @param [String] number The number
|
|
83
|
+
|
|
68
84
|
# @return [NumberContext] NumberContext
|
|
69
85
|
def initialize(version, number)
|
|
70
86
|
super(version)
|
|
71
|
-
|
|
87
|
+
|
|
72
88
|
# Path Solution
|
|
73
89
|
@solution = {
|
|
74
90
|
number: number,
|
|
75
91
|
}
|
|
76
92
|
@uri = "/Voice/Numbers/#{@solution[:number]}"
|
|
77
93
|
end
|
|
78
|
-
|
|
94
|
+
|
|
79
95
|
##
|
|
80
96
|
# Fetch a NumberInstance
|
|
81
97
|
# @return [NumberInstance] Fetched NumberInstance
|
|
82
98
|
def fetch
|
|
83
|
-
params =
|
|
84
|
-
|
|
99
|
+
params = {}
|
|
100
|
+
|
|
85
101
|
payload = @version.fetch(
|
|
86
102
|
'GET',
|
|
87
103
|
@uri,
|
|
88
104
|
params,
|
|
89
105
|
)
|
|
90
|
-
|
|
91
|
-
NumberInstance.new(
|
|
106
|
+
|
|
107
|
+
return NumberInstance.new(
|
|
92
108
|
@version,
|
|
93
109
|
payload,
|
|
94
|
-
number: @solution[
|
|
110
|
+
number: @solution['number'],
|
|
95
111
|
)
|
|
96
112
|
end
|
|
97
|
-
|
|
113
|
+
|
|
98
114
|
##
|
|
99
115
|
# Provide a user friendly representation
|
|
100
116
|
def to_s
|
|
@@ -102,17 +118,18 @@ module Twilio
|
|
|
102
118
|
"#<Twilio.Pricing.V1.NumberContext #{context}>"
|
|
103
119
|
end
|
|
104
120
|
end
|
|
105
|
-
|
|
121
|
+
|
|
106
122
|
class NumberInstance < InstanceResource
|
|
107
123
|
##
|
|
108
124
|
# Initialize the NumberInstance
|
|
109
125
|
# @param [Version] version Version that contains the resource
|
|
110
126
|
# @param [Hash] payload payload that contains response from Twilio
|
|
111
127
|
# @param [String] number The number
|
|
128
|
+
|
|
112
129
|
# @return [NumberInstance] NumberInstance
|
|
113
130
|
def initialize(version, payload, number: nil)
|
|
114
131
|
super(version)
|
|
115
|
-
|
|
132
|
+
|
|
116
133
|
# Marshaled Properties
|
|
117
134
|
@properties = {
|
|
118
135
|
'number' => payload['number'],
|
|
@@ -123,17 +140,19 @@ module Twilio
|
|
|
123
140
|
'price_unit' => payload['price_unit'],
|
|
124
141
|
'url' => payload['url'],
|
|
125
142
|
}
|
|
126
|
-
|
|
143
|
+
|
|
127
144
|
# Context
|
|
128
145
|
@instance_context = nil
|
|
129
146
|
@params = {
|
|
130
147
|
'number' => number || @properties['number'],
|
|
131
148
|
}
|
|
132
149
|
end
|
|
133
|
-
|
|
150
|
+
|
|
134
151
|
##
|
|
135
152
|
# Generate an instance context for the instance, the context is capable of
|
|
136
153
|
# performing various actions. All instance actions are proxied to the context
|
|
154
|
+
# @param [Version] version Version that contains the resource
|
|
155
|
+
|
|
137
156
|
# @return [NumberContext] NumberContext for this NumberInstance
|
|
138
157
|
def context
|
|
139
158
|
unless @instance_context
|
|
@@ -144,61 +163,47 @@ module Twilio
|
|
|
144
163
|
end
|
|
145
164
|
@instance_context
|
|
146
165
|
end
|
|
147
|
-
|
|
148
|
-
##
|
|
149
|
-
# @return [String] The number
|
|
166
|
+
|
|
150
167
|
def number
|
|
151
168
|
@properties['number']
|
|
152
169
|
end
|
|
153
|
-
|
|
154
|
-
##
|
|
155
|
-
# @return [String] The country
|
|
170
|
+
|
|
156
171
|
def country
|
|
157
172
|
@properties['country']
|
|
158
173
|
end
|
|
159
|
-
|
|
160
|
-
##
|
|
161
|
-
# @return [String] The iso_country
|
|
174
|
+
|
|
162
175
|
def iso_country
|
|
163
176
|
@properties['iso_country']
|
|
164
177
|
end
|
|
165
|
-
|
|
166
|
-
##
|
|
167
|
-
# @return [String] The outbound_call_price
|
|
178
|
+
|
|
168
179
|
def outbound_call_price
|
|
169
180
|
@properties['outbound_call_price']
|
|
170
181
|
end
|
|
171
|
-
|
|
172
|
-
##
|
|
173
|
-
# @return [String] The inbound_call_price
|
|
182
|
+
|
|
174
183
|
def inbound_call_price
|
|
175
184
|
@properties['inbound_call_price']
|
|
176
185
|
end
|
|
177
|
-
|
|
178
|
-
##
|
|
179
|
-
# @return [String] The price_unit
|
|
186
|
+
|
|
180
187
|
def price_unit
|
|
181
188
|
@properties['price_unit']
|
|
182
189
|
end
|
|
183
|
-
|
|
184
|
-
##
|
|
185
|
-
# @return [String] The url
|
|
190
|
+
|
|
186
191
|
def url
|
|
187
192
|
@properties['url']
|
|
188
193
|
end
|
|
189
|
-
|
|
194
|
+
|
|
190
195
|
##
|
|
191
196
|
# Fetch a NumberInstance
|
|
192
197
|
# @return [NumberInstance] Fetched NumberInstance
|
|
193
198
|
def fetch
|
|
194
|
-
context.fetch
|
|
199
|
+
@context.fetch()
|
|
195
200
|
end
|
|
196
|
-
|
|
201
|
+
|
|
197
202
|
##
|
|
198
203
|
# Provide a user friendly representation
|
|
199
204
|
def to_s
|
|
200
|
-
|
|
201
|
-
"<Twilio.Pricing.V1.NumberInstance #{
|
|
205
|
+
context = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
|
|
206
|
+
"<Twilio.Pricing.V1.NumberInstance #{context}>"
|
|
202
207
|
end
|
|
203
208
|
end
|
|
204
209
|
end
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# This code was generated by
|
|
3
3
|
# \ / _ _ _| _ _
|
|
4
4
|
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
|
5
|
-
# / /
|
|
5
|
+
# / /
|
|
6
6
|
|
|
7
7
|
module Twilio
|
|
8
8
|
module REST
|
|
@@ -11,29 +11,25 @@ module Twilio
|
|
|
11
11
|
# Initialize the Taskrouter Domain
|
|
12
12
|
def initialize(twilio)
|
|
13
13
|
super
|
|
14
|
-
|
|
14
|
+
|
|
15
15
|
@base_url = 'https://taskrouter.twilio.com'
|
|
16
16
|
@host = 'taskrouter.twilio.com'
|
|
17
17
|
@port = 443
|
|
18
|
-
|
|
18
|
+
|
|
19
19
|
# Versions
|
|
20
20
|
@v1 = nil
|
|
21
21
|
end
|
|
22
|
-
|
|
22
|
+
|
|
23
23
|
##
|
|
24
24
|
# Version v1 of taskrouter
|
|
25
25
|
def v1
|
|
26
26
|
@v1 ||= V1.new self
|
|
27
27
|
end
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
# @return [Twilio::REST::Taskrouter::V1::WorkspaceInstance] if sid was passed.
|
|
32
|
-
# @return [Twilio::REST::Taskrouter::V1::WorkspaceList]
|
|
33
|
-
def workspaces(sid=:unset)
|
|
34
|
-
self.v1.workspaces(sid)
|
|
28
|
+
|
|
29
|
+
def workspaces
|
|
30
|
+
self.v1.workspaces
|
|
35
31
|
end
|
|
36
|
-
|
|
32
|
+
|
|
37
33
|
##
|
|
38
34
|
# Provide a user friendly representation
|
|
39
35
|
def to_s
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# This code was generated by
|
|
3
3
|
# \ / _ _ _| _ _
|
|
4
4
|
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
|
5
|
-
# / /
|
|
5
|
+
# / /
|
|
6
6
|
|
|
7
7
|
module Twilio
|
|
8
8
|
module REST
|
|
@@ -15,25 +15,19 @@ module Twilio
|
|
|
15
15
|
@version = 'v1'
|
|
16
16
|
@workspaces = nil
|
|
17
17
|
end
|
|
18
|
-
|
|
19
|
-
##
|
|
20
|
-
# @param [String] sid The sid
|
|
21
|
-
# @return [Twilio::REST::Taskrouter::V1::WorkspaceInstance] if sid was passed.
|
|
22
|
-
# @return [Twilio::REST::Taskrouter::V1::WorkspaceList]
|
|
18
|
+
|
|
23
19
|
def workspaces(sid=:unset)
|
|
24
|
-
if sid
|
|
25
|
-
raise ArgumentError, 'sid cannot be nil'
|
|
26
|
-
elsif sid == :unset
|
|
20
|
+
if sid == :unset
|
|
27
21
|
@workspaces ||= WorkspaceList.new self
|
|
28
22
|
else
|
|
29
23
|
WorkspaceContext.new(self, sid)
|
|
30
24
|
end
|
|
31
25
|
end
|
|
32
|
-
|
|
26
|
+
|
|
33
27
|
##
|
|
34
28
|
# Provide a user friendly representation
|
|
35
29
|
def to_s
|
|
36
|
-
|
|
30
|
+
#<Twilio::REST::Taskrouter::V1>
|
|
37
31
|
end
|
|
38
32
|
end
|
|
39
33
|
end
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# This code was generated by
|
|
3
3
|
# \ / _ _ _| _ _
|
|
4
4
|
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
|
5
|
-
# / /
|
|
5
|
+
# / /
|
|
6
6
|
|
|
7
7
|
module Twilio
|
|
8
8
|
module REST
|
|
@@ -12,15 +12,16 @@ module Twilio
|
|
|
12
12
|
##
|
|
13
13
|
# Initialize the WorkspaceList
|
|
14
14
|
# @param [Version] version Version that contains the resource
|
|
15
|
+
|
|
15
16
|
# @return [WorkspaceList] WorkspaceList
|
|
16
17
|
def initialize(version)
|
|
17
18
|
super(version)
|
|
18
|
-
|
|
19
|
+
|
|
19
20
|
# Path Solution
|
|
20
21
|
@solution = {}
|
|
21
22
|
@uri = "/Workspaces"
|
|
22
23
|
end
|
|
23
|
-
|
|
24
|
+
|
|
24
25
|
##
|
|
25
26
|
# Lists WorkspaceInstance records from the API as a list.
|
|
26
27
|
# Unlike stream(), this operation is eager and will load `limit` records into
|
|
@@ -32,15 +33,16 @@ module Twilio
|
|
|
32
33
|
# the default value of 50 records. If no page_size is defined
|
|
33
34
|
# but a limit is defined, stream() will attempt to read the
|
|
34
35
|
# limit with the most efficient page size, i.e. min(limit, 1000)
|
|
36
|
+
|
|
35
37
|
# @return [Array] Array of up to limit results
|
|
36
|
-
def list(friendly_name:
|
|
38
|
+
def list(friendly_name: nil, limit: nil, page_size: nil)
|
|
37
39
|
self.stream(
|
|
38
40
|
friendly_name: friendly_name,
|
|
39
41
|
limit: limit,
|
|
40
42
|
page_size: page_size
|
|
41
43
|
).entries
|
|
42
44
|
end
|
|
43
|
-
|
|
45
|
+
|
|
44
46
|
##
|
|
45
47
|
# Streams WorkspaceInstance records from the API as an Enumerable.
|
|
46
48
|
# This operation lazily loads records as efficiently as possible until the limit
|
|
@@ -52,34 +54,42 @@ module Twilio
|
|
|
52
54
|
# the default value of 50 records. If no page_size is defined
|
|
53
55
|
# but a limit is defined, stream() will attempt to read the
|
|
54
56
|
# limit with the most efficient page size, i.e. min(limit, 1000)
|
|
57
|
+
|
|
55
58
|
# @return [Enumerable] Enumerable that will yield up to limit results
|
|
56
|
-
def stream(friendly_name:
|
|
59
|
+
def stream(friendly_name: nil, limit: nil, page_size: nil)
|
|
57
60
|
limits = @version.read_limits(limit, page_size)
|
|
58
|
-
|
|
61
|
+
|
|
59
62
|
page = self.page(
|
|
60
63
|
friendly_name: friendly_name,
|
|
61
|
-
page_size: limits[
|
|
64
|
+
page_size: limits['page_size'],
|
|
62
65
|
)
|
|
63
|
-
|
|
64
|
-
@version.stream(page, limit: limits[
|
|
66
|
+
|
|
67
|
+
@version.stream(page, limit: limits['limit'], page_limit: limits['page_limit'])
|
|
65
68
|
end
|
|
66
|
-
|
|
69
|
+
|
|
67
70
|
##
|
|
68
71
|
# When passed a block, yields WorkspaceInstance records from the API.
|
|
69
72
|
# This operation lazily loads records as efficiently as possible until the limit
|
|
70
73
|
# is reached.
|
|
74
|
+
# @param [String] friendly_name The friendly_name
|
|
75
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
|
76
|
+
# guarantees to never return more than limit. Default is no limit
|
|
77
|
+
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
|
78
|
+
# the default value of 50 records. If no page_size is defined
|
|
79
|
+
# but a limit is defined, stream() will attempt to read the
|
|
80
|
+
# limit with the most efficient page size, i.e. min(limit, 1000)
|
|
71
81
|
def each
|
|
72
82
|
limits = @version.read_limits
|
|
73
|
-
|
|
83
|
+
|
|
74
84
|
page = self.page(
|
|
75
|
-
page_size: limits[
|
|
85
|
+
page_size: limits['page_size'],
|
|
76
86
|
)
|
|
77
|
-
|
|
87
|
+
|
|
78
88
|
@version.stream(page,
|
|
79
|
-
limit: limits[
|
|
80
|
-
page_limit: limits[
|
|
89
|
+
limit: limits['limit'],
|
|
90
|
+
page_limit: limits['page_limit']).each {|x| yield x}
|
|
81
91
|
end
|
|
82
|
-
|
|
92
|
+
|
|
83
93
|
##
|
|
84
94
|
# Retrieve a single page of WorkspaceInstance records from the API.
|
|
85
95
|
# Request is executed immediately.
|
|
@@ -87,121 +97,119 @@ module Twilio
|
|
|
87
97
|
# @param [String] page_token PageToken provided by the API
|
|
88
98
|
# @param [Integer] page_number Page Number, this value is simply for client state
|
|
89
99
|
# @param [Integer] page_size Number of records to return, defaults to 50
|
|
100
|
+
|
|
90
101
|
# @return [Page] Page of WorkspaceInstance
|
|
91
|
-
def page(friendly_name:
|
|
92
|
-
params =
|
|
102
|
+
def page(friendly_name: nil, page_token: nil, page_number: nil, page_size: nil)
|
|
103
|
+
params = {
|
|
93
104
|
'FriendlyName' => friendly_name,
|
|
94
105
|
'PageToken' => page_token,
|
|
95
106
|
'Page' => page_number,
|
|
96
107
|
'PageSize' => page_size,
|
|
97
|
-
}
|
|
108
|
+
}
|
|
98
109
|
response = @version.page(
|
|
99
110
|
'GET',
|
|
100
111
|
@uri,
|
|
101
112
|
params
|
|
102
113
|
)
|
|
103
|
-
WorkspacePage.new(@version, response, @solution)
|
|
114
|
+
return WorkspacePage.new(@version, response, @solution)
|
|
104
115
|
end
|
|
105
|
-
|
|
106
|
-
##
|
|
107
|
-
# Retrieve a single page of WorkspaceInstance records from the API.
|
|
108
|
-
# Request is executed immediately.
|
|
109
|
-
# @param [String] target_url API-generated URL for the requested results page
|
|
110
|
-
# @return [Page] Page of WorkspaceInstance
|
|
111
|
-
def get_page(target_url)
|
|
112
|
-
response = @version.domain.request(
|
|
113
|
-
'GET',
|
|
114
|
-
target_url
|
|
115
|
-
)
|
|
116
|
-
WorkspacePage.new(@version, response, @solution)
|
|
117
|
-
end
|
|
118
|
-
|
|
116
|
+
|
|
119
117
|
##
|
|
120
118
|
# Retrieve a single page of WorkspaceInstance records from the API.
|
|
121
119
|
# Request is executed immediately.
|
|
122
120
|
# @param [String] friendly_name The friendly_name
|
|
123
121
|
# @param [String] event_callback_url The event_callback_url
|
|
124
|
-
# @param [String] events_filter The events_filter
|
|
125
|
-
# @param [Boolean] multi_task_enabled The multi_task_enabled
|
|
126
122
|
# @param [String] template The template
|
|
127
|
-
|
|
123
|
+
|
|
128
124
|
# @return [WorkspaceInstance] Newly created WorkspaceInstance
|
|
129
|
-
def create(friendly_name: nil, event_callback_url:
|
|
130
|
-
data =
|
|
125
|
+
def create(friendly_name: nil, event_callback_url: nil, template: nil)
|
|
126
|
+
data = {
|
|
131
127
|
'FriendlyName' => friendly_name,
|
|
132
128
|
'EventCallbackUrl' => event_callback_url,
|
|
133
|
-
'EventsFilter' => events_filter,
|
|
134
|
-
'MultiTaskEnabled' => multi_task_enabled,
|
|
135
129
|
'Template' => template,
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
130
|
+
}
|
|
131
|
+
|
|
139
132
|
payload = @version.create(
|
|
140
133
|
'POST',
|
|
141
134
|
@uri,
|
|
142
135
|
data: data
|
|
143
136
|
)
|
|
144
|
-
|
|
145
|
-
WorkspaceInstance.new(
|
|
137
|
+
|
|
138
|
+
return WorkspaceInstance.new(
|
|
146
139
|
@version,
|
|
147
140
|
payload,
|
|
148
141
|
)
|
|
149
142
|
end
|
|
150
|
-
|
|
143
|
+
|
|
144
|
+
##
|
|
145
|
+
# Constructs a WorkspaceContext
|
|
146
|
+
# @param [String] sid The sid
|
|
147
|
+
|
|
148
|
+
# @return [WorkspaceContext] WorkspaceContext
|
|
149
|
+
def get(sid)
|
|
150
|
+
WorkspaceContext.new(
|
|
151
|
+
@version,
|
|
152
|
+
sid: sid,
|
|
153
|
+
)
|
|
154
|
+
end
|
|
155
|
+
|
|
151
156
|
##
|
|
152
157
|
# Provide a user friendly representation
|
|
153
158
|
def to_s
|
|
154
159
|
'#<Twilio.Taskrouter.V1.WorkspaceList>'
|
|
155
160
|
end
|
|
156
161
|
end
|
|
157
|
-
|
|
162
|
+
|
|
158
163
|
class WorkspacePage < Page
|
|
159
164
|
##
|
|
160
165
|
# Initialize the WorkspacePage
|
|
161
166
|
# @param [Version] version Version that contains the resource
|
|
162
167
|
# @param [Response] response Response from the API
|
|
163
168
|
# @param [Hash] solution Path solution for the resource
|
|
169
|
+
|
|
164
170
|
# @return [WorkspacePage] WorkspacePage
|
|
165
171
|
def initialize(version, response, solution)
|
|
166
172
|
super(version, response)
|
|
167
|
-
|
|
173
|
+
|
|
168
174
|
# Path Solution
|
|
169
175
|
@solution = solution
|
|
170
176
|
end
|
|
171
|
-
|
|
177
|
+
|
|
172
178
|
##
|
|
173
179
|
# Build an instance of WorkspaceInstance
|
|
174
180
|
# @param [Hash] payload Payload response from the API
|
|
181
|
+
|
|
175
182
|
# @return [WorkspaceInstance] WorkspaceInstance
|
|
176
183
|
def get_instance(payload)
|
|
177
|
-
WorkspaceInstance.new(
|
|
184
|
+
return WorkspaceInstance.new(
|
|
178
185
|
@version,
|
|
179
186
|
payload,
|
|
180
187
|
)
|
|
181
188
|
end
|
|
182
|
-
|
|
189
|
+
|
|
183
190
|
##
|
|
184
191
|
# Provide a user friendly representation
|
|
185
192
|
def to_s
|
|
186
193
|
'<Twilio.Taskrouter.V1.WorkspacePage>'
|
|
187
194
|
end
|
|
188
195
|
end
|
|
189
|
-
|
|
196
|
+
|
|
190
197
|
class WorkspaceContext < InstanceContext
|
|
191
198
|
##
|
|
192
199
|
# Initialize the WorkspaceContext
|
|
193
200
|
# @param [Version] version Version that contains the resource
|
|
194
201
|
# @param [String] sid The sid
|
|
202
|
+
|
|
195
203
|
# @return [WorkspaceContext] WorkspaceContext
|
|
196
204
|
def initialize(version, sid)
|
|
197
205
|
super(version)
|
|
198
|
-
|
|
206
|
+
|
|
199
207
|
# Path Solution
|
|
200
208
|
@solution = {
|
|
201
209
|
sid: sid,
|
|
202
210
|
}
|
|
203
211
|
@uri = "/Workspaces/#{@solution[:sid]}"
|
|
204
|
-
|
|
212
|
+
|
|
205
213
|
# Dependents
|
|
206
214
|
@activities = nil
|
|
207
215
|
@events = nil
|
|
@@ -210,76 +218,67 @@ module Twilio
|
|
|
210
218
|
@workers = nil
|
|
211
219
|
@workflows = nil
|
|
212
220
|
@statistics = nil
|
|
213
|
-
@task_channels = nil
|
|
214
221
|
end
|
|
215
|
-
|
|
222
|
+
|
|
216
223
|
##
|
|
217
224
|
# Fetch a WorkspaceInstance
|
|
218
225
|
# @return [WorkspaceInstance] Fetched WorkspaceInstance
|
|
219
226
|
def fetch
|
|
220
|
-
params =
|
|
221
|
-
|
|
227
|
+
params = {}
|
|
228
|
+
|
|
222
229
|
payload = @version.fetch(
|
|
223
230
|
'GET',
|
|
224
231
|
@uri,
|
|
225
232
|
params,
|
|
226
233
|
)
|
|
227
|
-
|
|
228
|
-
WorkspaceInstance.new(
|
|
234
|
+
|
|
235
|
+
return WorkspaceInstance.new(
|
|
229
236
|
@version,
|
|
230
237
|
payload,
|
|
231
|
-
sid: @solution[
|
|
238
|
+
sid: @solution['sid'],
|
|
232
239
|
)
|
|
233
240
|
end
|
|
234
|
-
|
|
241
|
+
|
|
235
242
|
##
|
|
236
243
|
# Update the WorkspaceInstance
|
|
237
244
|
# @param [String] default_activity_sid The default_activity_sid
|
|
238
245
|
# @param [String] event_callback_url The event_callback_url
|
|
239
|
-
# @param [String] events_filter The events_filter
|
|
240
246
|
# @param [String] friendly_name The friendly_name
|
|
241
|
-
# @param [Boolean] multi_task_enabled The multi_task_enabled
|
|
242
247
|
# @param [String] timeout_activity_sid The timeout_activity_sid
|
|
243
|
-
|
|
248
|
+
|
|
244
249
|
# @return [WorkspaceInstance] Updated WorkspaceInstance
|
|
245
|
-
def update(default_activity_sid:
|
|
246
|
-
data =
|
|
250
|
+
def update(default_activity_sid: nil, event_callback_url: nil, friendly_name: nil, timeout_activity_sid: nil)
|
|
251
|
+
data = {
|
|
247
252
|
'DefaultActivitySid' => default_activity_sid,
|
|
248
253
|
'EventCallbackUrl' => event_callback_url,
|
|
249
|
-
'EventsFilter' => events_filter,
|
|
250
254
|
'FriendlyName' => friendly_name,
|
|
251
|
-
'MultiTaskEnabled' => multi_task_enabled,
|
|
252
255
|
'TimeoutActivitySid' => timeout_activity_sid,
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
+
}
|
|
257
|
+
|
|
256
258
|
payload = @version.update(
|
|
257
259
|
'POST',
|
|
258
260
|
@uri,
|
|
259
261
|
data: data,
|
|
260
262
|
)
|
|
261
|
-
|
|
262
|
-
WorkspaceInstance.new(
|
|
263
|
+
|
|
264
|
+
return WorkspaceInstance.new(
|
|
263
265
|
@version,
|
|
264
266
|
payload,
|
|
265
|
-
sid: @solution[
|
|
267
|
+
sid: @solution['sid'],
|
|
266
268
|
)
|
|
267
269
|
end
|
|
268
|
-
|
|
270
|
+
|
|
269
271
|
##
|
|
270
272
|
# Deletes the WorkspaceInstance
|
|
271
273
|
# @return [Boolean] true if delete succeeds, true otherwise
|
|
272
274
|
def delete
|
|
273
|
-
@version.delete('delete', @uri)
|
|
275
|
+
return @version.delete('delete', @uri)
|
|
274
276
|
end
|
|
275
|
-
|
|
277
|
+
|
|
276
278
|
##
|
|
277
279
|
# Access the activities
|
|
278
|
-
# @return [ActivityList]
|
|
279
|
-
# @return [ActivityContext] if sid was passed.
|
|
280
|
+
# @return [ActivityList] ActivityList
|
|
280
281
|
def activities(sid=:unset)
|
|
281
|
-
raise ArgumentError, 'sid cannot be nil' if sid.nil?
|
|
282
|
-
|
|
283
282
|
if sid != :unset
|
|
284
283
|
return ActivityContext.new(
|
|
285
284
|
@version,
|
|
@@ -287,24 +286,21 @@ module Twilio
|
|
|
287
286
|
sid,
|
|
288
287
|
)
|
|
289
288
|
end
|
|
290
|
-
|
|
289
|
+
|
|
291
290
|
unless @activities
|
|
292
291
|
@activities = ActivityList.new(
|
|
293
292
|
@version,
|
|
294
293
|
workspace_sid: @solution[:sid],
|
|
295
294
|
)
|
|
296
295
|
end
|
|
297
|
-
|
|
296
|
+
|
|
298
297
|
@activities
|
|
299
298
|
end
|
|
300
|
-
|
|
299
|
+
|
|
301
300
|
##
|
|
302
301
|
# Access the events
|
|
303
|
-
# @return [EventList]
|
|
304
|
-
# @return [EventContext] if sid was passed.
|
|
302
|
+
# @return [EventList] EventList
|
|
305
303
|
def events(sid=:unset)
|
|
306
|
-
raise ArgumentError, 'sid cannot be nil' if sid.nil?
|
|
307
|
-
|
|
308
304
|
if sid != :unset
|
|
309
305
|
return EventContext.new(
|
|
310
306
|
@version,
|
|
@@ -312,24 +308,21 @@ module Twilio
|
|
|
312
308
|
sid,
|
|
313
309
|
)
|
|
314
310
|
end
|
|
315
|
-
|
|
311
|
+
|
|
316
312
|
unless @events
|
|
317
313
|
@events = EventList.new(
|
|
318
314
|
@version,
|
|
319
315
|
workspace_sid: @solution[:sid],
|
|
320
316
|
)
|
|
321
317
|
end
|
|
322
|
-
|
|
318
|
+
|
|
323
319
|
@events
|
|
324
320
|
end
|
|
325
|
-
|
|
321
|
+
|
|
326
322
|
##
|
|
327
323
|
# Access the tasks
|
|
328
|
-
# @return [TaskList]
|
|
329
|
-
# @return [TaskContext] if sid was passed.
|
|
324
|
+
# @return [TaskList] TaskList
|
|
330
325
|
def tasks(sid=:unset)
|
|
331
|
-
raise ArgumentError, 'sid cannot be nil' if sid.nil?
|
|
332
|
-
|
|
333
326
|
if sid != :unset
|
|
334
327
|
return TaskContext.new(
|
|
335
328
|
@version,
|
|
@@ -337,24 +330,21 @@ module Twilio
|
|
|
337
330
|
sid,
|
|
338
331
|
)
|
|
339
332
|
end
|
|
340
|
-
|
|
333
|
+
|
|
341
334
|
unless @tasks
|
|
342
335
|
@tasks = TaskList.new(
|
|
343
336
|
@version,
|
|
344
337
|
workspace_sid: @solution[:sid],
|
|
345
338
|
)
|
|
346
339
|
end
|
|
347
|
-
|
|
340
|
+
|
|
348
341
|
@tasks
|
|
349
342
|
end
|
|
350
|
-
|
|
343
|
+
|
|
351
344
|
##
|
|
352
345
|
# Access the task_queues
|
|
353
|
-
# @return [TaskQueueList]
|
|
354
|
-
# @return [TaskQueueContext] if sid was passed.
|
|
346
|
+
# @return [TaskQueueList] TaskQueueList
|
|
355
347
|
def task_queues(sid=:unset)
|
|
356
|
-
raise ArgumentError, 'sid cannot be nil' if sid.nil?
|
|
357
|
-
|
|
358
348
|
if sid != :unset
|
|
359
349
|
return TaskQueueContext.new(
|
|
360
350
|
@version,
|
|
@@ -362,24 +352,21 @@ module Twilio
|
|
|
362
352
|
sid,
|
|
363
353
|
)
|
|
364
354
|
end
|
|
365
|
-
|
|
355
|
+
|
|
366
356
|
unless @task_queues
|
|
367
357
|
@task_queues = TaskQueueList.new(
|
|
368
358
|
@version,
|
|
369
359
|
workspace_sid: @solution[:sid],
|
|
370
360
|
)
|
|
371
361
|
end
|
|
372
|
-
|
|
362
|
+
|
|
373
363
|
@task_queues
|
|
374
364
|
end
|
|
375
|
-
|
|
365
|
+
|
|
376
366
|
##
|
|
377
367
|
# Access the workers
|
|
378
|
-
# @return [WorkerList]
|
|
379
|
-
# @return [WorkerContext] if sid was passed.
|
|
368
|
+
# @return [WorkerList] WorkerList
|
|
380
369
|
def workers(sid=:unset)
|
|
381
|
-
raise ArgumentError, 'sid cannot be nil' if sid.nil?
|
|
382
|
-
|
|
383
370
|
if sid != :unset
|
|
384
371
|
return WorkerContext.new(
|
|
385
372
|
@version,
|
|
@@ -387,24 +374,21 @@ module Twilio
|
|
|
387
374
|
sid,
|
|
388
375
|
)
|
|
389
376
|
end
|
|
390
|
-
|
|
377
|
+
|
|
391
378
|
unless @workers
|
|
392
379
|
@workers = WorkerList.new(
|
|
393
380
|
@version,
|
|
394
381
|
workspace_sid: @solution[:sid],
|
|
395
382
|
)
|
|
396
383
|
end
|
|
397
|
-
|
|
384
|
+
|
|
398
385
|
@workers
|
|
399
386
|
end
|
|
400
|
-
|
|
387
|
+
|
|
401
388
|
##
|
|
402
389
|
# Access the workflows
|
|
403
|
-
# @return [WorkflowList]
|
|
404
|
-
# @return [WorkflowContext] if sid was passed.
|
|
390
|
+
# @return [WorkflowList] WorkflowList
|
|
405
391
|
def workflows(sid=:unset)
|
|
406
|
-
raise ArgumentError, 'sid cannot be nil' if sid.nil?
|
|
407
|
-
|
|
408
392
|
if sid != :unset
|
|
409
393
|
return WorkflowContext.new(
|
|
410
394
|
@version,
|
|
@@ -412,53 +396,27 @@ module Twilio
|
|
|
412
396
|
sid,
|
|
413
397
|
)
|
|
414
398
|
end
|
|
415
|
-
|
|
399
|
+
|
|
416
400
|
unless @workflows
|
|
417
401
|
@workflows = WorkflowList.new(
|
|
418
402
|
@version,
|
|
419
403
|
workspace_sid: @solution[:sid],
|
|
420
404
|
)
|
|
421
405
|
end
|
|
422
|
-
|
|
406
|
+
|
|
423
407
|
@workflows
|
|
424
408
|
end
|
|
425
|
-
|
|
409
|
+
|
|
426
410
|
##
|
|
427
411
|
# Access the statistics
|
|
428
|
-
# @return [WorkspaceStatisticsList]
|
|
429
|
-
# @return [WorkspaceStatisticsContext]
|
|
412
|
+
# @return [WorkspaceStatisticsList] WorkspaceStatisticsList
|
|
430
413
|
def statistics
|
|
431
|
-
WorkspaceStatisticsContext.new(
|
|
414
|
+
return WorkspaceStatisticsContext.new(
|
|
432
415
|
@version,
|
|
433
416
|
@solution[:sid],
|
|
434
417
|
)
|
|
435
418
|
end
|
|
436
|
-
|
|
437
|
-
##
|
|
438
|
-
# Access the task_channels
|
|
439
|
-
# @return [TaskChannelList]
|
|
440
|
-
# @return [TaskChannelContext] if sid was passed.
|
|
441
|
-
def task_channels(sid=:unset)
|
|
442
|
-
raise ArgumentError, 'sid cannot be nil' if sid.nil?
|
|
443
|
-
|
|
444
|
-
if sid != :unset
|
|
445
|
-
return TaskChannelContext.new(
|
|
446
|
-
@version,
|
|
447
|
-
@solution[:sid],
|
|
448
|
-
sid,
|
|
449
|
-
)
|
|
450
|
-
end
|
|
451
|
-
|
|
452
|
-
unless @task_channels
|
|
453
|
-
@task_channels = TaskChannelList.new(
|
|
454
|
-
@version,
|
|
455
|
-
workspace_sid: @solution[:sid],
|
|
456
|
-
)
|
|
457
|
-
end
|
|
458
|
-
|
|
459
|
-
@task_channels
|
|
460
|
-
end
|
|
461
|
-
|
|
419
|
+
|
|
462
420
|
##
|
|
463
421
|
# Provide a user friendly representation
|
|
464
422
|
def to_s
|
|
@@ -466,46 +424,44 @@ module Twilio
|
|
|
466
424
|
"#<Twilio.Taskrouter.V1.WorkspaceContext #{context}>"
|
|
467
425
|
end
|
|
468
426
|
end
|
|
469
|
-
|
|
427
|
+
|
|
470
428
|
class WorkspaceInstance < InstanceResource
|
|
471
429
|
##
|
|
472
430
|
# Initialize the WorkspaceInstance
|
|
473
431
|
# @param [Version] version Version that contains the resource
|
|
474
432
|
# @param [Hash] payload payload that contains response from Twilio
|
|
475
433
|
# @param [String] sid The sid
|
|
434
|
+
|
|
476
435
|
# @return [WorkspaceInstance] WorkspaceInstance
|
|
477
436
|
def initialize(version, payload, sid: nil)
|
|
478
437
|
super(version)
|
|
479
|
-
|
|
438
|
+
|
|
480
439
|
# Marshaled Properties
|
|
481
440
|
@properties = {
|
|
482
441
|
'account_sid' => payload['account_sid'],
|
|
483
|
-
'date_created' => Twilio.
|
|
484
|
-
'date_updated' => Twilio.
|
|
442
|
+
'date_created' => Twilio.deserialize_iso8601(payload['date_created']),
|
|
443
|
+
'date_updated' => Twilio.deserialize_iso8601(payload['date_updated']),
|
|
485
444
|
'default_activity_name' => payload['default_activity_name'],
|
|
486
445
|
'default_activity_sid' => payload['default_activity_sid'],
|
|
487
446
|
'event_callback_url' => payload['event_callback_url'],
|
|
488
|
-
'events_filter' => payload['events_filter'],
|
|
489
447
|
'friendly_name' => payload['friendly_name'],
|
|
490
|
-
'multi_task_enabled' => payload['multi_task_enabled'],
|
|
491
448
|
'sid' => payload['sid'],
|
|
492
449
|
'timeout_activity_name' => payload['timeout_activity_name'],
|
|
493
450
|
'timeout_activity_sid' => payload['timeout_activity_sid'],
|
|
494
|
-
'prioritize_queue_order' => payload['prioritize_queue_order'],
|
|
495
|
-
'url' => payload['url'],
|
|
496
|
-
'links' => payload['links'],
|
|
497
451
|
}
|
|
498
|
-
|
|
452
|
+
|
|
499
453
|
# Context
|
|
500
454
|
@instance_context = nil
|
|
501
455
|
@params = {
|
|
502
456
|
'sid' => sid || @properties['sid'],
|
|
503
457
|
}
|
|
504
458
|
end
|
|
505
|
-
|
|
459
|
+
|
|
506
460
|
##
|
|
507
461
|
# Generate an instance context for the instance, the context is capable of
|
|
508
462
|
# performing various actions. All instance actions are proxied to the context
|
|
463
|
+
# @param [Version] version Version that contains the resource
|
|
464
|
+
|
|
509
465
|
# @return [WorkspaceContext] WorkspaceContext for this WorkspaceInstance
|
|
510
466
|
def context
|
|
511
467
|
unless @instance_context
|
|
@@ -516,194 +472,131 @@ module Twilio
|
|
|
516
472
|
end
|
|
517
473
|
@instance_context
|
|
518
474
|
end
|
|
519
|
-
|
|
520
|
-
##
|
|
521
|
-
# @return [String] The account_sid
|
|
475
|
+
|
|
522
476
|
def account_sid
|
|
523
477
|
@properties['account_sid']
|
|
524
478
|
end
|
|
525
|
-
|
|
526
|
-
##
|
|
527
|
-
# @return [Time] The date_created
|
|
479
|
+
|
|
528
480
|
def date_created
|
|
529
481
|
@properties['date_created']
|
|
530
482
|
end
|
|
531
|
-
|
|
532
|
-
##
|
|
533
|
-
# @return [Time] The date_updated
|
|
483
|
+
|
|
534
484
|
def date_updated
|
|
535
485
|
@properties['date_updated']
|
|
536
486
|
end
|
|
537
|
-
|
|
538
|
-
##
|
|
539
|
-
# @return [String] The default_activity_name
|
|
487
|
+
|
|
540
488
|
def default_activity_name
|
|
541
489
|
@properties['default_activity_name']
|
|
542
490
|
end
|
|
543
|
-
|
|
544
|
-
##
|
|
545
|
-
# @return [String] The default_activity_sid
|
|
491
|
+
|
|
546
492
|
def default_activity_sid
|
|
547
493
|
@properties['default_activity_sid']
|
|
548
494
|
end
|
|
549
|
-
|
|
550
|
-
##
|
|
551
|
-
# @return [String] The event_callback_url
|
|
495
|
+
|
|
552
496
|
def event_callback_url
|
|
553
497
|
@properties['event_callback_url']
|
|
554
498
|
end
|
|
555
|
-
|
|
556
|
-
##
|
|
557
|
-
# @return [String] The events_filter
|
|
558
|
-
def events_filter
|
|
559
|
-
@properties['events_filter']
|
|
560
|
-
end
|
|
561
|
-
|
|
562
|
-
##
|
|
563
|
-
# @return [String] The friendly_name
|
|
499
|
+
|
|
564
500
|
def friendly_name
|
|
565
501
|
@properties['friendly_name']
|
|
566
502
|
end
|
|
567
|
-
|
|
568
|
-
##
|
|
569
|
-
# @return [Boolean] The multi_task_enabled
|
|
570
|
-
def multi_task_enabled
|
|
571
|
-
@properties['multi_task_enabled']
|
|
572
|
-
end
|
|
573
|
-
|
|
574
|
-
##
|
|
575
|
-
# @return [String] The sid
|
|
503
|
+
|
|
576
504
|
def sid
|
|
577
505
|
@properties['sid']
|
|
578
506
|
end
|
|
579
|
-
|
|
580
|
-
##
|
|
581
|
-
# @return [String] The timeout_activity_name
|
|
507
|
+
|
|
582
508
|
def timeout_activity_name
|
|
583
509
|
@properties['timeout_activity_name']
|
|
584
510
|
end
|
|
585
|
-
|
|
586
|
-
##
|
|
587
|
-
# @return [String] The timeout_activity_sid
|
|
511
|
+
|
|
588
512
|
def timeout_activity_sid
|
|
589
513
|
@properties['timeout_activity_sid']
|
|
590
514
|
end
|
|
591
|
-
|
|
592
|
-
##
|
|
593
|
-
# @return [workspace.QueueOrder] The prioritize_queue_order
|
|
594
|
-
def prioritize_queue_order
|
|
595
|
-
@properties['prioritize_queue_order']
|
|
596
|
-
end
|
|
597
|
-
|
|
598
|
-
##
|
|
599
|
-
# @return [String] The url
|
|
600
|
-
def url
|
|
601
|
-
@properties['url']
|
|
602
|
-
end
|
|
603
|
-
|
|
604
|
-
##
|
|
605
|
-
# @return [String] The links
|
|
606
|
-
def links
|
|
607
|
-
@properties['links']
|
|
608
|
-
end
|
|
609
|
-
|
|
515
|
+
|
|
610
516
|
##
|
|
611
517
|
# Fetch a WorkspaceInstance
|
|
612
518
|
# @return [WorkspaceInstance] Fetched WorkspaceInstance
|
|
613
519
|
def fetch
|
|
614
|
-
context.fetch
|
|
520
|
+
@context.fetch()
|
|
615
521
|
end
|
|
616
|
-
|
|
522
|
+
|
|
617
523
|
##
|
|
618
524
|
# Update the WorkspaceInstance
|
|
619
525
|
# @param [String] default_activity_sid The default_activity_sid
|
|
620
526
|
# @param [String] event_callback_url The event_callback_url
|
|
621
|
-
# @param [String] events_filter The events_filter
|
|
622
527
|
# @param [String] friendly_name The friendly_name
|
|
623
|
-
# @param [Boolean] multi_task_enabled The multi_task_enabled
|
|
624
528
|
# @param [String] timeout_activity_sid The timeout_activity_sid
|
|
625
|
-
|
|
529
|
+
|
|
626
530
|
# @return [WorkspaceInstance] Updated WorkspaceInstance
|
|
627
|
-
def update(default_activity_sid:
|
|
628
|
-
context.update(
|
|
629
|
-
default_activity_sid: default_activity_sid,
|
|
531
|
+
def update(default_activity_sid: nil, event_callback_url: nil, friendly_name: nil, timeout_activity_sid: nil)
|
|
532
|
+
@context.update(
|
|
630
533
|
event_callback_url: event_callback_url,
|
|
631
|
-
events_filter: events_filter,
|
|
632
534
|
friendly_name: friendly_name,
|
|
633
|
-
multi_task_enabled: multi_task_enabled,
|
|
634
535
|
timeout_activity_sid: timeout_activity_sid,
|
|
635
|
-
prioritize_queue_order: prioritize_queue_order,
|
|
636
536
|
)
|
|
637
537
|
end
|
|
638
|
-
|
|
538
|
+
|
|
639
539
|
##
|
|
640
540
|
# Deletes the WorkspaceInstance
|
|
641
541
|
# @return [Boolean] true if delete succeeds, true otherwise
|
|
642
542
|
def delete
|
|
643
|
-
context.delete
|
|
543
|
+
@context.delete()
|
|
644
544
|
end
|
|
645
|
-
|
|
545
|
+
|
|
646
546
|
##
|
|
647
547
|
# Access the activities
|
|
648
548
|
# @return [activities] activities
|
|
649
549
|
def activities
|
|
650
|
-
context.activities
|
|
550
|
+
@context.activities
|
|
651
551
|
end
|
|
652
|
-
|
|
552
|
+
|
|
653
553
|
##
|
|
654
554
|
# Access the events
|
|
655
555
|
# @return [events] events
|
|
656
556
|
def events
|
|
657
|
-
context.events
|
|
557
|
+
@context.events
|
|
658
558
|
end
|
|
659
|
-
|
|
559
|
+
|
|
660
560
|
##
|
|
661
561
|
# Access the tasks
|
|
662
562
|
# @return [tasks] tasks
|
|
663
563
|
def tasks
|
|
664
|
-
context.tasks
|
|
564
|
+
@context.tasks
|
|
665
565
|
end
|
|
666
|
-
|
|
566
|
+
|
|
667
567
|
##
|
|
668
568
|
# Access the task_queues
|
|
669
569
|
# @return [task_queues] task_queues
|
|
670
570
|
def task_queues
|
|
671
|
-
context.task_queues
|
|
571
|
+
@context.task_queues
|
|
672
572
|
end
|
|
673
|
-
|
|
573
|
+
|
|
674
574
|
##
|
|
675
575
|
# Access the workers
|
|
676
576
|
# @return [workers] workers
|
|
677
577
|
def workers
|
|
678
|
-
context.workers
|
|
578
|
+
@context.workers
|
|
679
579
|
end
|
|
680
|
-
|
|
580
|
+
|
|
681
581
|
##
|
|
682
582
|
# Access the workflows
|
|
683
583
|
# @return [workflows] workflows
|
|
684
584
|
def workflows
|
|
685
|
-
context.workflows
|
|
585
|
+
@context.workflows
|
|
686
586
|
end
|
|
687
|
-
|
|
587
|
+
|
|
688
588
|
##
|
|
689
589
|
# Access the statistics
|
|
690
590
|
# @return [statistics] statistics
|
|
691
591
|
def statistics
|
|
692
|
-
context.statistics
|
|
592
|
+
@context.statistics
|
|
693
593
|
end
|
|
694
|
-
|
|
695
|
-
##
|
|
696
|
-
# Access the task_channels
|
|
697
|
-
# @return [task_channels] task_channels
|
|
698
|
-
def task_channels
|
|
699
|
-
context.task_channels
|
|
700
|
-
end
|
|
701
|
-
|
|
594
|
+
|
|
702
595
|
##
|
|
703
596
|
# Provide a user friendly representation
|
|
704
597
|
def to_s
|
|
705
|
-
|
|
706
|
-
"<Twilio.Taskrouter.V1.WorkspaceInstance #{
|
|
598
|
+
context = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
|
|
599
|
+
"<Twilio.Taskrouter.V1.WorkspaceInstance #{context}>"
|
|
707
600
|
end
|
|
708
601
|
end
|
|
709
602
|
end
|