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,435 +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
|
-
class Wireless < Version
|
|
11
|
-
class RatePlanList < ListResource
|
|
12
|
-
##
|
|
13
|
-
# Initialize the RatePlanList
|
|
14
|
-
# @param [Version] version Version that contains the resource
|
|
15
|
-
# @return [RatePlanList] RatePlanList
|
|
16
|
-
def initialize(version)
|
|
17
|
-
super(version)
|
|
18
|
-
|
|
19
|
-
# Path Solution
|
|
20
|
-
@solution = {}
|
|
21
|
-
@uri = "/RatePlans"
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
##
|
|
25
|
-
# Lists RatePlanInstance records from the API as a list.
|
|
26
|
-
# Unlike stream(), this operation is eager and will load `limit` records into
|
|
27
|
-
# memory before returning.
|
|
28
|
-
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
|
29
|
-
# guarantees to never return more than limit. Default is no limit
|
|
30
|
-
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
|
31
|
-
# the default value of 50 records. If no page_size is defined
|
|
32
|
-
# but a limit is defined, stream() will attempt to read the
|
|
33
|
-
# limit with the most efficient page size, i.e. min(limit, 1000)
|
|
34
|
-
# @return [Array] Array of up to limit results
|
|
35
|
-
def list(limit: nil, page_size: nil)
|
|
36
|
-
self.stream(
|
|
37
|
-
limit: limit,
|
|
38
|
-
page_size: page_size
|
|
39
|
-
).entries
|
|
40
|
-
end
|
|
41
|
-
|
|
42
|
-
##
|
|
43
|
-
# Streams RatePlanInstance records from the API as an Enumerable.
|
|
44
|
-
# This operation lazily loads records as efficiently as possible until the limit
|
|
45
|
-
# is reached.
|
|
46
|
-
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
|
47
|
-
# guarantees to never return more than limit. Default is no limit
|
|
48
|
-
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
|
49
|
-
# the default value of 50 records. If no page_size is defined
|
|
50
|
-
# but a limit is defined, stream() will attempt to read the
|
|
51
|
-
# limit with the most efficient page size, i.e. min(limit, 1000)
|
|
52
|
-
# @return [Enumerable] Enumerable that will yield up to limit results
|
|
53
|
-
def stream(limit: nil, page_size: nil)
|
|
54
|
-
limits = @version.read_limits(limit, page_size)
|
|
55
|
-
|
|
56
|
-
page = self.page(
|
|
57
|
-
page_size: limits[:page_size],
|
|
58
|
-
)
|
|
59
|
-
|
|
60
|
-
@version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
|
|
61
|
-
end
|
|
62
|
-
|
|
63
|
-
##
|
|
64
|
-
# When passed a block, yields RatePlanInstance records from the API.
|
|
65
|
-
# This operation lazily loads records as efficiently as possible until the limit
|
|
66
|
-
# is reached.
|
|
67
|
-
def each
|
|
68
|
-
limits = @version.read_limits
|
|
69
|
-
|
|
70
|
-
page = self.page(
|
|
71
|
-
page_size: limits[:page_size],
|
|
72
|
-
)
|
|
73
|
-
|
|
74
|
-
@version.stream(page,
|
|
75
|
-
limit: limits[:limit],
|
|
76
|
-
page_limit: limits[:page_limit]).each {|x| yield x}
|
|
77
|
-
end
|
|
78
|
-
|
|
79
|
-
##
|
|
80
|
-
# Retrieve a single page of RatePlanInstance records from the API.
|
|
81
|
-
# Request is executed immediately.
|
|
82
|
-
# @param [String] page_token PageToken provided by the API
|
|
83
|
-
# @param [Integer] page_number Page Number, this value is simply for client state
|
|
84
|
-
# @param [Integer] page_size Number of records to return, defaults to 50
|
|
85
|
-
# @return [Page] Page of RatePlanInstance
|
|
86
|
-
def page(page_token: :unset, page_number: :unset, page_size: :unset)
|
|
87
|
-
params = Twilio::Values.of({
|
|
88
|
-
'PageToken' => page_token,
|
|
89
|
-
'Page' => page_number,
|
|
90
|
-
'PageSize' => page_size,
|
|
91
|
-
})
|
|
92
|
-
response = @version.page(
|
|
93
|
-
'GET',
|
|
94
|
-
@uri,
|
|
95
|
-
params
|
|
96
|
-
)
|
|
97
|
-
RatePlanPage.new(@version, response, @solution)
|
|
98
|
-
end
|
|
99
|
-
|
|
100
|
-
##
|
|
101
|
-
# Retrieve a single page of RatePlanInstance records from the API.
|
|
102
|
-
# Request is executed immediately.
|
|
103
|
-
# @param [String] target_url API-generated URL for the requested results page
|
|
104
|
-
# @return [Page] Page of RatePlanInstance
|
|
105
|
-
def get_page(target_url)
|
|
106
|
-
response = @version.domain.request(
|
|
107
|
-
'GET',
|
|
108
|
-
target_url
|
|
109
|
-
)
|
|
110
|
-
RatePlanPage.new(@version, response, @solution)
|
|
111
|
-
end
|
|
112
|
-
|
|
113
|
-
##
|
|
114
|
-
# Retrieve a single page of RatePlanInstance records from the API.
|
|
115
|
-
# Request is executed immediately.
|
|
116
|
-
# @param [String] unique_name The unique_name
|
|
117
|
-
# @param [String] friendly_name The friendly_name
|
|
118
|
-
# @param [Boolean] data_enabled The data_enabled
|
|
119
|
-
# @param [String] data_limit The data_limit
|
|
120
|
-
# @param [String] data_metering The data_metering
|
|
121
|
-
# @param [Boolean] messaging_enabled The messaging_enabled
|
|
122
|
-
# @param [Boolean] voice_enabled The voice_enabled
|
|
123
|
-
# @param [Boolean] commands_enabled The commands_enabled
|
|
124
|
-
# @param [Boolean] national_roaming_enabled The national_roaming_enabled
|
|
125
|
-
# @param [String] international_roaming The international_roaming
|
|
126
|
-
# @return [RatePlanInstance] Newly created RatePlanInstance
|
|
127
|
-
def create(unique_name: :unset, friendly_name: :unset, data_enabled: :unset, data_limit: :unset, data_metering: :unset, messaging_enabled: :unset, voice_enabled: :unset, commands_enabled: :unset, national_roaming_enabled: :unset, international_roaming: :unset)
|
|
128
|
-
data = Twilio::Values.of({
|
|
129
|
-
'UniqueName' => unique_name,
|
|
130
|
-
'FriendlyName' => friendly_name,
|
|
131
|
-
'DataEnabled' => data_enabled,
|
|
132
|
-
'DataLimit' => data_limit,
|
|
133
|
-
'DataMetering' => data_metering,
|
|
134
|
-
'MessagingEnabled' => messaging_enabled,
|
|
135
|
-
'VoiceEnabled' => voice_enabled,
|
|
136
|
-
'CommandsEnabled' => commands_enabled,
|
|
137
|
-
'NationalRoamingEnabled' => national_roaming_enabled,
|
|
138
|
-
'InternationalRoaming' => international_roaming,
|
|
139
|
-
})
|
|
140
|
-
|
|
141
|
-
payload = @version.create(
|
|
142
|
-
'POST',
|
|
143
|
-
@uri,
|
|
144
|
-
data: data
|
|
145
|
-
)
|
|
146
|
-
|
|
147
|
-
RatePlanInstance.new(
|
|
148
|
-
@version,
|
|
149
|
-
payload,
|
|
150
|
-
)
|
|
151
|
-
end
|
|
152
|
-
|
|
153
|
-
##
|
|
154
|
-
# Provide a user friendly representation
|
|
155
|
-
def to_s
|
|
156
|
-
'#<Twilio.Preview.Wireless.RatePlanList>'
|
|
157
|
-
end
|
|
158
|
-
end
|
|
159
|
-
|
|
160
|
-
class RatePlanPage < Page
|
|
161
|
-
##
|
|
162
|
-
# Initialize the RatePlanPage
|
|
163
|
-
# @param [Version] version Version that contains the resource
|
|
164
|
-
# @param [Response] response Response from the API
|
|
165
|
-
# @param [Hash] solution Path solution for the resource
|
|
166
|
-
# @return [RatePlanPage] RatePlanPage
|
|
167
|
-
def initialize(version, response, solution)
|
|
168
|
-
super(version, response)
|
|
169
|
-
|
|
170
|
-
# Path Solution
|
|
171
|
-
@solution = solution
|
|
172
|
-
end
|
|
173
|
-
|
|
174
|
-
##
|
|
175
|
-
# Build an instance of RatePlanInstance
|
|
176
|
-
# @param [Hash] payload Payload response from the API
|
|
177
|
-
# @return [RatePlanInstance] RatePlanInstance
|
|
178
|
-
def get_instance(payload)
|
|
179
|
-
RatePlanInstance.new(
|
|
180
|
-
@version,
|
|
181
|
-
payload,
|
|
182
|
-
)
|
|
183
|
-
end
|
|
184
|
-
|
|
185
|
-
##
|
|
186
|
-
# Provide a user friendly representation
|
|
187
|
-
def to_s
|
|
188
|
-
'<Twilio.Preview.Wireless.RatePlanPage>'
|
|
189
|
-
end
|
|
190
|
-
end
|
|
191
|
-
|
|
192
|
-
class RatePlanContext < InstanceContext
|
|
193
|
-
##
|
|
194
|
-
# Initialize the RatePlanContext
|
|
195
|
-
# @param [Version] version Version that contains the resource
|
|
196
|
-
# @param [String] sid The sid
|
|
197
|
-
# @return [RatePlanContext] RatePlanContext
|
|
198
|
-
def initialize(version, sid)
|
|
199
|
-
super(version)
|
|
200
|
-
|
|
201
|
-
# Path Solution
|
|
202
|
-
@solution = {
|
|
203
|
-
sid: sid,
|
|
204
|
-
}
|
|
205
|
-
@uri = "/RatePlans/#{@solution[:sid]}"
|
|
206
|
-
end
|
|
207
|
-
|
|
208
|
-
##
|
|
209
|
-
# Fetch a RatePlanInstance
|
|
210
|
-
# @return [RatePlanInstance] Fetched RatePlanInstance
|
|
211
|
-
def fetch
|
|
212
|
-
params = Twilio::Values.of({})
|
|
213
|
-
|
|
214
|
-
payload = @version.fetch(
|
|
215
|
-
'GET',
|
|
216
|
-
@uri,
|
|
217
|
-
params,
|
|
218
|
-
)
|
|
219
|
-
|
|
220
|
-
RatePlanInstance.new(
|
|
221
|
-
@version,
|
|
222
|
-
payload,
|
|
223
|
-
sid: @solution[:sid],
|
|
224
|
-
)
|
|
225
|
-
end
|
|
226
|
-
|
|
227
|
-
##
|
|
228
|
-
# Update the RatePlanInstance
|
|
229
|
-
# @param [String] unique_name The unique_name
|
|
230
|
-
# @param [String] friendly_name The friendly_name
|
|
231
|
-
# @return [RatePlanInstance] Updated RatePlanInstance
|
|
232
|
-
def update(unique_name: :unset, friendly_name: :unset)
|
|
233
|
-
data = Twilio::Values.of({
|
|
234
|
-
'UniqueName' => unique_name,
|
|
235
|
-
'FriendlyName' => friendly_name,
|
|
236
|
-
})
|
|
237
|
-
|
|
238
|
-
payload = @version.update(
|
|
239
|
-
'POST',
|
|
240
|
-
@uri,
|
|
241
|
-
data: data,
|
|
242
|
-
)
|
|
243
|
-
|
|
244
|
-
RatePlanInstance.new(
|
|
245
|
-
@version,
|
|
246
|
-
payload,
|
|
247
|
-
sid: @solution[:sid],
|
|
248
|
-
)
|
|
249
|
-
end
|
|
250
|
-
|
|
251
|
-
##
|
|
252
|
-
# Deletes the RatePlanInstance
|
|
253
|
-
# @return [Boolean] true if delete succeeds, true otherwise
|
|
254
|
-
def delete
|
|
255
|
-
@version.delete('delete', @uri)
|
|
256
|
-
end
|
|
257
|
-
|
|
258
|
-
##
|
|
259
|
-
# Provide a user friendly representation
|
|
260
|
-
def to_s
|
|
261
|
-
context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
|
|
262
|
-
"#<Twilio.Preview.Wireless.RatePlanContext #{context}>"
|
|
263
|
-
end
|
|
264
|
-
end
|
|
265
|
-
|
|
266
|
-
class RatePlanInstance < InstanceResource
|
|
267
|
-
##
|
|
268
|
-
# Initialize the RatePlanInstance
|
|
269
|
-
# @param [Version] version Version that contains the resource
|
|
270
|
-
# @param [Hash] payload payload that contains response from Twilio
|
|
271
|
-
# @param [String] sid The sid
|
|
272
|
-
# @return [RatePlanInstance] RatePlanInstance
|
|
273
|
-
def initialize(version, payload, sid: nil)
|
|
274
|
-
super(version)
|
|
275
|
-
|
|
276
|
-
# Marshaled Properties
|
|
277
|
-
@properties = {
|
|
278
|
-
'sid' => payload['sid'],
|
|
279
|
-
'unique_name' => payload['unique_name'],
|
|
280
|
-
'account_sid' => payload['account_sid'],
|
|
281
|
-
'friendly_name' => payload['friendly_name'],
|
|
282
|
-
'data_enabled' => payload['data_enabled'],
|
|
283
|
-
'data_metering' => payload['data_metering'],
|
|
284
|
-
'data_limit' => payload['data_limit'].to_i,
|
|
285
|
-
'messaging_enabled' => payload['messaging_enabled'],
|
|
286
|
-
'voice_enabled' => payload['voice_enabled'],
|
|
287
|
-
'national_roaming_enabled' => payload['national_roaming_enabled'],
|
|
288
|
-
'international_roaming' => payload['international_roaming'],
|
|
289
|
-
'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
|
|
290
|
-
'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
|
|
291
|
-
'url' => payload['url'],
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
# Context
|
|
295
|
-
@instance_context = nil
|
|
296
|
-
@params = {
|
|
297
|
-
'sid' => sid || @properties['sid'],
|
|
298
|
-
}
|
|
299
|
-
end
|
|
300
|
-
|
|
301
|
-
##
|
|
302
|
-
# Generate an instance context for the instance, the context is capable of
|
|
303
|
-
# performing various actions. All instance actions are proxied to the context
|
|
304
|
-
# @return [RatePlanContext] RatePlanContext for this RatePlanInstance
|
|
305
|
-
def context
|
|
306
|
-
unless @instance_context
|
|
307
|
-
@instance_context = RatePlanContext.new(
|
|
308
|
-
@version,
|
|
309
|
-
@params['sid'],
|
|
310
|
-
)
|
|
311
|
-
end
|
|
312
|
-
@instance_context
|
|
313
|
-
end
|
|
314
|
-
|
|
315
|
-
##
|
|
316
|
-
# @return [String] The sid
|
|
317
|
-
def sid
|
|
318
|
-
@properties['sid']
|
|
319
|
-
end
|
|
320
|
-
|
|
321
|
-
##
|
|
322
|
-
# @return [String] The unique_name
|
|
323
|
-
def unique_name
|
|
324
|
-
@properties['unique_name']
|
|
325
|
-
end
|
|
326
|
-
|
|
327
|
-
##
|
|
328
|
-
# @return [String] The account_sid
|
|
329
|
-
def account_sid
|
|
330
|
-
@properties['account_sid']
|
|
331
|
-
end
|
|
332
|
-
|
|
333
|
-
##
|
|
334
|
-
# @return [String] The friendly_name
|
|
335
|
-
def friendly_name
|
|
336
|
-
@properties['friendly_name']
|
|
337
|
-
end
|
|
338
|
-
|
|
339
|
-
##
|
|
340
|
-
# @return [Boolean] The data_enabled
|
|
341
|
-
def data_enabled
|
|
342
|
-
@properties['data_enabled']
|
|
343
|
-
end
|
|
344
|
-
|
|
345
|
-
##
|
|
346
|
-
# @return [String] The data_metering
|
|
347
|
-
def data_metering
|
|
348
|
-
@properties['data_metering']
|
|
349
|
-
end
|
|
350
|
-
|
|
351
|
-
##
|
|
352
|
-
# @return [String] The data_limit
|
|
353
|
-
def data_limit
|
|
354
|
-
@properties['data_limit']
|
|
355
|
-
end
|
|
356
|
-
|
|
357
|
-
##
|
|
358
|
-
# @return [Boolean] The messaging_enabled
|
|
359
|
-
def messaging_enabled
|
|
360
|
-
@properties['messaging_enabled']
|
|
361
|
-
end
|
|
362
|
-
|
|
363
|
-
##
|
|
364
|
-
# @return [Boolean] The voice_enabled
|
|
365
|
-
def voice_enabled
|
|
366
|
-
@properties['voice_enabled']
|
|
367
|
-
end
|
|
368
|
-
|
|
369
|
-
##
|
|
370
|
-
# @return [Boolean] The national_roaming_enabled
|
|
371
|
-
def national_roaming_enabled
|
|
372
|
-
@properties['national_roaming_enabled']
|
|
373
|
-
end
|
|
374
|
-
|
|
375
|
-
##
|
|
376
|
-
# @return [String] The international_roaming
|
|
377
|
-
def international_roaming
|
|
378
|
-
@properties['international_roaming']
|
|
379
|
-
end
|
|
380
|
-
|
|
381
|
-
##
|
|
382
|
-
# @return [Time] The date_created
|
|
383
|
-
def date_created
|
|
384
|
-
@properties['date_created']
|
|
385
|
-
end
|
|
386
|
-
|
|
387
|
-
##
|
|
388
|
-
# @return [Time] The date_updated
|
|
389
|
-
def date_updated
|
|
390
|
-
@properties['date_updated']
|
|
391
|
-
end
|
|
392
|
-
|
|
393
|
-
##
|
|
394
|
-
# @return [String] The url
|
|
395
|
-
def url
|
|
396
|
-
@properties['url']
|
|
397
|
-
end
|
|
398
|
-
|
|
399
|
-
##
|
|
400
|
-
# Fetch a RatePlanInstance
|
|
401
|
-
# @return [RatePlanInstance] Fetched RatePlanInstance
|
|
402
|
-
def fetch
|
|
403
|
-
context.fetch
|
|
404
|
-
end
|
|
405
|
-
|
|
406
|
-
##
|
|
407
|
-
# Update the RatePlanInstance
|
|
408
|
-
# @param [String] unique_name The unique_name
|
|
409
|
-
# @param [String] friendly_name The friendly_name
|
|
410
|
-
# @return [RatePlanInstance] Updated RatePlanInstance
|
|
411
|
-
def update(unique_name: :unset, friendly_name: :unset)
|
|
412
|
-
context.update(
|
|
413
|
-
unique_name: unique_name,
|
|
414
|
-
friendly_name: friendly_name,
|
|
415
|
-
)
|
|
416
|
-
end
|
|
417
|
-
|
|
418
|
-
##
|
|
419
|
-
# Deletes the RatePlanInstance
|
|
420
|
-
# @return [Boolean] true if delete succeeds, true otherwise
|
|
421
|
-
def delete
|
|
422
|
-
context.delete
|
|
423
|
-
end
|
|
424
|
-
|
|
425
|
-
##
|
|
426
|
-
# Provide a user friendly representation
|
|
427
|
-
def to_s
|
|
428
|
-
values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
|
|
429
|
-
"<Twilio.Preview.Wireless.RatePlanInstance #{values}>"
|
|
430
|
-
end
|
|
431
|
-
end
|
|
432
|
-
end
|
|
433
|
-
end
|
|
434
|
-
end
|
|
435
|
-
end
|
|
@@ -1,544 +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
|
-
class Wireless < Version
|
|
11
|
-
class SimList < ListResource
|
|
12
|
-
##
|
|
13
|
-
# Initialize the SimList
|
|
14
|
-
# @param [Version] version Version that contains the resource
|
|
15
|
-
# @return [SimList] SimList
|
|
16
|
-
def initialize(version)
|
|
17
|
-
super(version)
|
|
18
|
-
|
|
19
|
-
# Path Solution
|
|
20
|
-
@solution = {}
|
|
21
|
-
@uri = "/Sims"
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
##
|
|
25
|
-
# Lists SimInstance records from the API as a list.
|
|
26
|
-
# Unlike stream(), this operation is eager and will load `limit` records into
|
|
27
|
-
# memory before returning.
|
|
28
|
-
# @param [String] status The status
|
|
29
|
-
# @param [String] iccid The iccid
|
|
30
|
-
# @param [String] rate_plan The rate_plan
|
|
31
|
-
# @param [String] e_id The e_id
|
|
32
|
-
# @param [String] sim_registration_code The sim_registration_code
|
|
33
|
-
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
|
34
|
-
# guarantees to never return more than limit. Default is no limit
|
|
35
|
-
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
|
36
|
-
# the default value of 50 records. If no page_size is defined
|
|
37
|
-
# but a limit is defined, stream() will attempt to read the
|
|
38
|
-
# limit with the most efficient page size, i.e. min(limit, 1000)
|
|
39
|
-
# @return [Array] Array of up to limit results
|
|
40
|
-
def list(status: :unset, iccid: :unset, rate_plan: :unset, e_id: :unset, sim_registration_code: :unset, limit: nil, page_size: nil)
|
|
41
|
-
self.stream(
|
|
42
|
-
status: status,
|
|
43
|
-
iccid: iccid,
|
|
44
|
-
rate_plan: rate_plan,
|
|
45
|
-
e_id: e_id,
|
|
46
|
-
sim_registration_code: sim_registration_code,
|
|
47
|
-
limit: limit,
|
|
48
|
-
page_size: page_size
|
|
49
|
-
).entries
|
|
50
|
-
end
|
|
51
|
-
|
|
52
|
-
##
|
|
53
|
-
# Streams SimInstance records from the API as an Enumerable.
|
|
54
|
-
# This operation lazily loads records as efficiently as possible until the limit
|
|
55
|
-
# is reached.
|
|
56
|
-
# @param [String] status The status
|
|
57
|
-
# @param [String] iccid The iccid
|
|
58
|
-
# @param [String] rate_plan The rate_plan
|
|
59
|
-
# @param [String] e_id The e_id
|
|
60
|
-
# @param [String] sim_registration_code The sim_registration_code
|
|
61
|
-
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
|
62
|
-
# guarantees to never return more than limit. Default is no limit
|
|
63
|
-
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
|
64
|
-
# the default value of 50 records. If no page_size is defined
|
|
65
|
-
# but a limit is defined, stream() will attempt to read the
|
|
66
|
-
# limit with the most efficient page size, i.e. min(limit, 1000)
|
|
67
|
-
# @return [Enumerable] Enumerable that will yield up to limit results
|
|
68
|
-
def stream(status: :unset, iccid: :unset, rate_plan: :unset, e_id: :unset, sim_registration_code: :unset, limit: nil, page_size: nil)
|
|
69
|
-
limits = @version.read_limits(limit, page_size)
|
|
70
|
-
|
|
71
|
-
page = self.page(
|
|
72
|
-
status: status,
|
|
73
|
-
iccid: iccid,
|
|
74
|
-
rate_plan: rate_plan,
|
|
75
|
-
e_id: e_id,
|
|
76
|
-
sim_registration_code: sim_registration_code,
|
|
77
|
-
page_size: limits[:page_size],
|
|
78
|
-
)
|
|
79
|
-
|
|
80
|
-
@version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
|
|
81
|
-
end
|
|
82
|
-
|
|
83
|
-
##
|
|
84
|
-
# When passed a block, yields SimInstance records from the API.
|
|
85
|
-
# This operation lazily loads records as efficiently as possible until the limit
|
|
86
|
-
# is reached.
|
|
87
|
-
def each
|
|
88
|
-
limits = @version.read_limits
|
|
89
|
-
|
|
90
|
-
page = self.page(
|
|
91
|
-
page_size: limits[:page_size],
|
|
92
|
-
)
|
|
93
|
-
|
|
94
|
-
@version.stream(page,
|
|
95
|
-
limit: limits[:limit],
|
|
96
|
-
page_limit: limits[:page_limit]).each {|x| yield x}
|
|
97
|
-
end
|
|
98
|
-
|
|
99
|
-
##
|
|
100
|
-
# Retrieve a single page of SimInstance records from the API.
|
|
101
|
-
# Request is executed immediately.
|
|
102
|
-
# @param [String] status The status
|
|
103
|
-
# @param [String] iccid The iccid
|
|
104
|
-
# @param [String] rate_plan The rate_plan
|
|
105
|
-
# @param [String] e_id The e_id
|
|
106
|
-
# @param [String] sim_registration_code The sim_registration_code
|
|
107
|
-
# @param [String] page_token PageToken provided by the API
|
|
108
|
-
# @param [Integer] page_number Page Number, this value is simply for client state
|
|
109
|
-
# @param [Integer] page_size Number of records to return, defaults to 50
|
|
110
|
-
# @return [Page] Page of SimInstance
|
|
111
|
-
def page(status: :unset, iccid: :unset, rate_plan: :unset, e_id: :unset, sim_registration_code: :unset, page_token: :unset, page_number: :unset, page_size: :unset)
|
|
112
|
-
params = Twilio::Values.of({
|
|
113
|
-
'Status' => status,
|
|
114
|
-
'Iccid' => iccid,
|
|
115
|
-
'RatePlan' => rate_plan,
|
|
116
|
-
'EId' => e_id,
|
|
117
|
-
'SimRegistrationCode' => sim_registration_code,
|
|
118
|
-
'PageToken' => page_token,
|
|
119
|
-
'Page' => page_number,
|
|
120
|
-
'PageSize' => page_size,
|
|
121
|
-
})
|
|
122
|
-
response = @version.page(
|
|
123
|
-
'GET',
|
|
124
|
-
@uri,
|
|
125
|
-
params
|
|
126
|
-
)
|
|
127
|
-
SimPage.new(@version, response, @solution)
|
|
128
|
-
end
|
|
129
|
-
|
|
130
|
-
##
|
|
131
|
-
# Retrieve a single page of SimInstance records from the API.
|
|
132
|
-
# Request is executed immediately.
|
|
133
|
-
# @param [String] target_url API-generated URL for the requested results page
|
|
134
|
-
# @return [Page] Page of SimInstance
|
|
135
|
-
def get_page(target_url)
|
|
136
|
-
response = @version.domain.request(
|
|
137
|
-
'GET',
|
|
138
|
-
target_url
|
|
139
|
-
)
|
|
140
|
-
SimPage.new(@version, response, @solution)
|
|
141
|
-
end
|
|
142
|
-
|
|
143
|
-
##
|
|
144
|
-
# Provide a user friendly representation
|
|
145
|
-
def to_s
|
|
146
|
-
'#<Twilio.Preview.Wireless.SimList>'
|
|
147
|
-
end
|
|
148
|
-
end
|
|
149
|
-
|
|
150
|
-
class SimPage < Page
|
|
151
|
-
##
|
|
152
|
-
# Initialize the SimPage
|
|
153
|
-
# @param [Version] version Version that contains the resource
|
|
154
|
-
# @param [Response] response Response from the API
|
|
155
|
-
# @param [Hash] solution Path solution for the resource
|
|
156
|
-
# @return [SimPage] SimPage
|
|
157
|
-
def initialize(version, response, solution)
|
|
158
|
-
super(version, response)
|
|
159
|
-
|
|
160
|
-
# Path Solution
|
|
161
|
-
@solution = solution
|
|
162
|
-
end
|
|
163
|
-
|
|
164
|
-
##
|
|
165
|
-
# Build an instance of SimInstance
|
|
166
|
-
# @param [Hash] payload Payload response from the API
|
|
167
|
-
# @return [SimInstance] SimInstance
|
|
168
|
-
def get_instance(payload)
|
|
169
|
-
SimInstance.new(
|
|
170
|
-
@version,
|
|
171
|
-
payload,
|
|
172
|
-
)
|
|
173
|
-
end
|
|
174
|
-
|
|
175
|
-
##
|
|
176
|
-
# Provide a user friendly representation
|
|
177
|
-
def to_s
|
|
178
|
-
'<Twilio.Preview.Wireless.SimPage>'
|
|
179
|
-
end
|
|
180
|
-
end
|
|
181
|
-
|
|
182
|
-
class SimContext < InstanceContext
|
|
183
|
-
##
|
|
184
|
-
# Initialize the SimContext
|
|
185
|
-
# @param [Version] version Version that contains the resource
|
|
186
|
-
# @param [String] sid The sid
|
|
187
|
-
# @return [SimContext] SimContext
|
|
188
|
-
def initialize(version, sid)
|
|
189
|
-
super(version)
|
|
190
|
-
|
|
191
|
-
# Path Solution
|
|
192
|
-
@solution = {
|
|
193
|
-
sid: sid,
|
|
194
|
-
}
|
|
195
|
-
@uri = "/Sims/#{@solution[:sid]}"
|
|
196
|
-
|
|
197
|
-
# Dependents
|
|
198
|
-
@usage = nil
|
|
199
|
-
end
|
|
200
|
-
|
|
201
|
-
##
|
|
202
|
-
# Fetch a SimInstance
|
|
203
|
-
# @return [SimInstance] Fetched SimInstance
|
|
204
|
-
def fetch
|
|
205
|
-
params = Twilio::Values.of({})
|
|
206
|
-
|
|
207
|
-
payload = @version.fetch(
|
|
208
|
-
'GET',
|
|
209
|
-
@uri,
|
|
210
|
-
params,
|
|
211
|
-
)
|
|
212
|
-
|
|
213
|
-
SimInstance.new(
|
|
214
|
-
@version,
|
|
215
|
-
payload,
|
|
216
|
-
sid: @solution[:sid],
|
|
217
|
-
)
|
|
218
|
-
end
|
|
219
|
-
|
|
220
|
-
##
|
|
221
|
-
# Update the SimInstance
|
|
222
|
-
# @param [String] unique_name The unique_name
|
|
223
|
-
# @param [String] callback_method The callback_method
|
|
224
|
-
# @param [String] callback_url The callback_url
|
|
225
|
-
# @param [String] friendly_name The friendly_name
|
|
226
|
-
# @param [String] rate_plan The rate_plan
|
|
227
|
-
# @param [String] status The status
|
|
228
|
-
# @param [String] commands_callback_method The commands_callback_method
|
|
229
|
-
# @param [String] commands_callback_url The commands_callback_url
|
|
230
|
-
# @param [String] sms_fallback_method The sms_fallback_method
|
|
231
|
-
# @param [String] sms_fallback_url The sms_fallback_url
|
|
232
|
-
# @param [String] sms_method The sms_method
|
|
233
|
-
# @param [String] sms_url The sms_url
|
|
234
|
-
# @param [String] voice_fallback_method The voice_fallback_method
|
|
235
|
-
# @param [String] voice_fallback_url The voice_fallback_url
|
|
236
|
-
# @param [String] voice_method The voice_method
|
|
237
|
-
# @param [String] voice_url The voice_url
|
|
238
|
-
# @return [SimInstance] Updated SimInstance
|
|
239
|
-
def update(unique_name: :unset, callback_method: :unset, callback_url: :unset, friendly_name: :unset, rate_plan: :unset, status: :unset, commands_callback_method: :unset, commands_callback_url: :unset, sms_fallback_method: :unset, sms_fallback_url: :unset, sms_method: :unset, sms_url: :unset, voice_fallback_method: :unset, voice_fallback_url: :unset, voice_method: :unset, voice_url: :unset)
|
|
240
|
-
data = Twilio::Values.of({
|
|
241
|
-
'UniqueName' => unique_name,
|
|
242
|
-
'CallbackMethod' => callback_method,
|
|
243
|
-
'CallbackUrl' => callback_url,
|
|
244
|
-
'FriendlyName' => friendly_name,
|
|
245
|
-
'RatePlan' => rate_plan,
|
|
246
|
-
'Status' => status,
|
|
247
|
-
'CommandsCallbackMethod' => commands_callback_method,
|
|
248
|
-
'CommandsCallbackUrl' => commands_callback_url,
|
|
249
|
-
'SmsFallbackMethod' => sms_fallback_method,
|
|
250
|
-
'SmsFallbackUrl' => sms_fallback_url,
|
|
251
|
-
'SmsMethod' => sms_method,
|
|
252
|
-
'SmsUrl' => sms_url,
|
|
253
|
-
'VoiceFallbackMethod' => voice_fallback_method,
|
|
254
|
-
'VoiceFallbackUrl' => voice_fallback_url,
|
|
255
|
-
'VoiceMethod' => voice_method,
|
|
256
|
-
'VoiceUrl' => voice_url,
|
|
257
|
-
})
|
|
258
|
-
|
|
259
|
-
payload = @version.update(
|
|
260
|
-
'POST',
|
|
261
|
-
@uri,
|
|
262
|
-
data: data,
|
|
263
|
-
)
|
|
264
|
-
|
|
265
|
-
SimInstance.new(
|
|
266
|
-
@version,
|
|
267
|
-
payload,
|
|
268
|
-
sid: @solution[:sid],
|
|
269
|
-
)
|
|
270
|
-
end
|
|
271
|
-
|
|
272
|
-
##
|
|
273
|
-
# Access the usage
|
|
274
|
-
# @return [UsageList]
|
|
275
|
-
# @return [UsageContext]
|
|
276
|
-
def usage
|
|
277
|
-
UsageContext.new(
|
|
278
|
-
@version,
|
|
279
|
-
@solution[:sid],
|
|
280
|
-
)
|
|
281
|
-
end
|
|
282
|
-
|
|
283
|
-
##
|
|
284
|
-
# Provide a user friendly representation
|
|
285
|
-
def to_s
|
|
286
|
-
context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
|
|
287
|
-
"#<Twilio.Preview.Wireless.SimContext #{context}>"
|
|
288
|
-
end
|
|
289
|
-
end
|
|
290
|
-
|
|
291
|
-
class SimInstance < InstanceResource
|
|
292
|
-
##
|
|
293
|
-
# Initialize the SimInstance
|
|
294
|
-
# @param [Version] version Version that contains the resource
|
|
295
|
-
# @param [Hash] payload payload that contains response from Twilio
|
|
296
|
-
# @param [String] sid The sid
|
|
297
|
-
# @return [SimInstance] SimInstance
|
|
298
|
-
def initialize(version, payload, sid: nil)
|
|
299
|
-
super(version)
|
|
300
|
-
|
|
301
|
-
# Marshaled Properties
|
|
302
|
-
@properties = {
|
|
303
|
-
'sid' => payload['sid'],
|
|
304
|
-
'unique_name' => payload['unique_name'],
|
|
305
|
-
'account_sid' => payload['account_sid'],
|
|
306
|
-
'rate_plan_sid' => payload['rate_plan_sid'],
|
|
307
|
-
'friendly_name' => payload['friendly_name'],
|
|
308
|
-
'iccid' => payload['iccid'],
|
|
309
|
-
'e_id' => payload['e_id'],
|
|
310
|
-
'status' => payload['status'],
|
|
311
|
-
'commands_callback_url' => payload['commands_callback_url'],
|
|
312
|
-
'commands_callback_method' => payload['commands_callback_method'],
|
|
313
|
-
'sms_fallback_method' => payload['sms_fallback_method'],
|
|
314
|
-
'sms_fallback_url' => payload['sms_fallback_url'],
|
|
315
|
-
'sms_method' => payload['sms_method'],
|
|
316
|
-
'sms_url' => payload['sms_url'],
|
|
317
|
-
'voice_fallback_method' => payload['voice_fallback_method'],
|
|
318
|
-
'voice_fallback_url' => payload['voice_fallback_url'],
|
|
319
|
-
'voice_method' => payload['voice_method'],
|
|
320
|
-
'voice_url' => payload['voice_url'],
|
|
321
|
-
'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
|
|
322
|
-
'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
|
|
323
|
-
'url' => payload['url'],
|
|
324
|
-
'links' => payload['links'],
|
|
325
|
-
}
|
|
326
|
-
|
|
327
|
-
# Context
|
|
328
|
-
@instance_context = nil
|
|
329
|
-
@params = {
|
|
330
|
-
'sid' => sid || @properties['sid'],
|
|
331
|
-
}
|
|
332
|
-
end
|
|
333
|
-
|
|
334
|
-
##
|
|
335
|
-
# Generate an instance context for the instance, the context is capable of
|
|
336
|
-
# performing various actions. All instance actions are proxied to the context
|
|
337
|
-
# @return [SimContext] SimContext for this SimInstance
|
|
338
|
-
def context
|
|
339
|
-
unless @instance_context
|
|
340
|
-
@instance_context = SimContext.new(
|
|
341
|
-
@version,
|
|
342
|
-
@params['sid'],
|
|
343
|
-
)
|
|
344
|
-
end
|
|
345
|
-
@instance_context
|
|
346
|
-
end
|
|
347
|
-
|
|
348
|
-
##
|
|
349
|
-
# @return [String] The sid
|
|
350
|
-
def sid
|
|
351
|
-
@properties['sid']
|
|
352
|
-
end
|
|
353
|
-
|
|
354
|
-
##
|
|
355
|
-
# @return [String] The unique_name
|
|
356
|
-
def unique_name
|
|
357
|
-
@properties['unique_name']
|
|
358
|
-
end
|
|
359
|
-
|
|
360
|
-
##
|
|
361
|
-
# @return [String] The account_sid
|
|
362
|
-
def account_sid
|
|
363
|
-
@properties['account_sid']
|
|
364
|
-
end
|
|
365
|
-
|
|
366
|
-
##
|
|
367
|
-
# @return [String] The rate_plan_sid
|
|
368
|
-
def rate_plan_sid
|
|
369
|
-
@properties['rate_plan_sid']
|
|
370
|
-
end
|
|
371
|
-
|
|
372
|
-
##
|
|
373
|
-
# @return [String] The friendly_name
|
|
374
|
-
def friendly_name
|
|
375
|
-
@properties['friendly_name']
|
|
376
|
-
end
|
|
377
|
-
|
|
378
|
-
##
|
|
379
|
-
# @return [String] The iccid
|
|
380
|
-
def iccid
|
|
381
|
-
@properties['iccid']
|
|
382
|
-
end
|
|
383
|
-
|
|
384
|
-
##
|
|
385
|
-
# @return [String] The e_id
|
|
386
|
-
def e_id
|
|
387
|
-
@properties['e_id']
|
|
388
|
-
end
|
|
389
|
-
|
|
390
|
-
##
|
|
391
|
-
# @return [String] The status
|
|
392
|
-
def status
|
|
393
|
-
@properties['status']
|
|
394
|
-
end
|
|
395
|
-
|
|
396
|
-
##
|
|
397
|
-
# @return [String] The commands_callback_url
|
|
398
|
-
def commands_callback_url
|
|
399
|
-
@properties['commands_callback_url']
|
|
400
|
-
end
|
|
401
|
-
|
|
402
|
-
##
|
|
403
|
-
# @return [String] The commands_callback_method
|
|
404
|
-
def commands_callback_method
|
|
405
|
-
@properties['commands_callback_method']
|
|
406
|
-
end
|
|
407
|
-
|
|
408
|
-
##
|
|
409
|
-
# @return [String] The sms_fallback_method
|
|
410
|
-
def sms_fallback_method
|
|
411
|
-
@properties['sms_fallback_method']
|
|
412
|
-
end
|
|
413
|
-
|
|
414
|
-
##
|
|
415
|
-
# @return [String] The sms_fallback_url
|
|
416
|
-
def sms_fallback_url
|
|
417
|
-
@properties['sms_fallback_url']
|
|
418
|
-
end
|
|
419
|
-
|
|
420
|
-
##
|
|
421
|
-
# @return [String] The sms_method
|
|
422
|
-
def sms_method
|
|
423
|
-
@properties['sms_method']
|
|
424
|
-
end
|
|
425
|
-
|
|
426
|
-
##
|
|
427
|
-
# @return [String] The sms_url
|
|
428
|
-
def sms_url
|
|
429
|
-
@properties['sms_url']
|
|
430
|
-
end
|
|
431
|
-
|
|
432
|
-
##
|
|
433
|
-
# @return [String] The voice_fallback_method
|
|
434
|
-
def voice_fallback_method
|
|
435
|
-
@properties['voice_fallback_method']
|
|
436
|
-
end
|
|
437
|
-
|
|
438
|
-
##
|
|
439
|
-
# @return [String] The voice_fallback_url
|
|
440
|
-
def voice_fallback_url
|
|
441
|
-
@properties['voice_fallback_url']
|
|
442
|
-
end
|
|
443
|
-
|
|
444
|
-
##
|
|
445
|
-
# @return [String] The voice_method
|
|
446
|
-
def voice_method
|
|
447
|
-
@properties['voice_method']
|
|
448
|
-
end
|
|
449
|
-
|
|
450
|
-
##
|
|
451
|
-
# @return [String] The voice_url
|
|
452
|
-
def voice_url
|
|
453
|
-
@properties['voice_url']
|
|
454
|
-
end
|
|
455
|
-
|
|
456
|
-
##
|
|
457
|
-
# @return [Time] The date_created
|
|
458
|
-
def date_created
|
|
459
|
-
@properties['date_created']
|
|
460
|
-
end
|
|
461
|
-
|
|
462
|
-
##
|
|
463
|
-
# @return [Time] The date_updated
|
|
464
|
-
def date_updated
|
|
465
|
-
@properties['date_updated']
|
|
466
|
-
end
|
|
467
|
-
|
|
468
|
-
##
|
|
469
|
-
# @return [String] The url
|
|
470
|
-
def url
|
|
471
|
-
@properties['url']
|
|
472
|
-
end
|
|
473
|
-
|
|
474
|
-
##
|
|
475
|
-
# @return [String] The links
|
|
476
|
-
def links
|
|
477
|
-
@properties['links']
|
|
478
|
-
end
|
|
479
|
-
|
|
480
|
-
##
|
|
481
|
-
# Fetch a SimInstance
|
|
482
|
-
# @return [SimInstance] Fetched SimInstance
|
|
483
|
-
def fetch
|
|
484
|
-
context.fetch
|
|
485
|
-
end
|
|
486
|
-
|
|
487
|
-
##
|
|
488
|
-
# Update the SimInstance
|
|
489
|
-
# @param [String] unique_name The unique_name
|
|
490
|
-
# @param [String] callback_method The callback_method
|
|
491
|
-
# @param [String] callback_url The callback_url
|
|
492
|
-
# @param [String] friendly_name The friendly_name
|
|
493
|
-
# @param [String] rate_plan The rate_plan
|
|
494
|
-
# @param [String] status The status
|
|
495
|
-
# @param [String] commands_callback_method The commands_callback_method
|
|
496
|
-
# @param [String] commands_callback_url The commands_callback_url
|
|
497
|
-
# @param [String] sms_fallback_method The sms_fallback_method
|
|
498
|
-
# @param [String] sms_fallback_url The sms_fallback_url
|
|
499
|
-
# @param [String] sms_method The sms_method
|
|
500
|
-
# @param [String] sms_url The sms_url
|
|
501
|
-
# @param [String] voice_fallback_method The voice_fallback_method
|
|
502
|
-
# @param [String] voice_fallback_url The voice_fallback_url
|
|
503
|
-
# @param [String] voice_method The voice_method
|
|
504
|
-
# @param [String] voice_url The voice_url
|
|
505
|
-
# @return [SimInstance] Updated SimInstance
|
|
506
|
-
def update(unique_name: :unset, callback_method: :unset, callback_url: :unset, friendly_name: :unset, rate_plan: :unset, status: :unset, commands_callback_method: :unset, commands_callback_url: :unset, sms_fallback_method: :unset, sms_fallback_url: :unset, sms_method: :unset, sms_url: :unset, voice_fallback_method: :unset, voice_fallback_url: :unset, voice_method: :unset, voice_url: :unset)
|
|
507
|
-
context.update(
|
|
508
|
-
unique_name: unique_name,
|
|
509
|
-
callback_method: callback_method,
|
|
510
|
-
callback_url: callback_url,
|
|
511
|
-
friendly_name: friendly_name,
|
|
512
|
-
rate_plan: rate_plan,
|
|
513
|
-
status: status,
|
|
514
|
-
commands_callback_method: commands_callback_method,
|
|
515
|
-
commands_callback_url: commands_callback_url,
|
|
516
|
-
sms_fallback_method: sms_fallback_method,
|
|
517
|
-
sms_fallback_url: sms_fallback_url,
|
|
518
|
-
sms_method: sms_method,
|
|
519
|
-
sms_url: sms_url,
|
|
520
|
-
voice_fallback_method: voice_fallback_method,
|
|
521
|
-
voice_fallback_url: voice_fallback_url,
|
|
522
|
-
voice_method: voice_method,
|
|
523
|
-
voice_url: voice_url,
|
|
524
|
-
)
|
|
525
|
-
end
|
|
526
|
-
|
|
527
|
-
##
|
|
528
|
-
# Access the usage
|
|
529
|
-
# @return [usage] usage
|
|
530
|
-
def usage
|
|
531
|
-
context.usage
|
|
532
|
-
end
|
|
533
|
-
|
|
534
|
-
##
|
|
535
|
-
# Provide a user friendly representation
|
|
536
|
-
def to_s
|
|
537
|
-
values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
|
|
538
|
-
"<Twilio.Preview.Wireless.SimInstance #{values}>"
|
|
539
|
-
end
|
|
540
|
-
end
|
|
541
|
-
end
|
|
542
|
-
end
|
|
543
|
-
end
|
|
544
|
-
end
|