twilio-ruby 5.31.1 → 5.46.1
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/.rubocop.yml +19 -1
- data/.rubocop_todo.yml +8 -39
- data/.travis.yml +12 -2
- data/CHANGES.md +681 -1
- data/CODE_OF_CONDUCT.md +73 -0
- data/CONTRIBUTING.md +2 -2
- data/Gemfile +0 -9
- data/ISSUE_TEMPLATE.md +17 -13
- data/{LICENSE.md → LICENSE} +2 -2
- data/Makefile +6 -15
- data/PULL_REQUEST_TEMPLATE.md +31 -0
- data/README.md +57 -4
- data/Rakefile +0 -54
- data/githooks/pre-commit +0 -0
- data/lib/twilio-ruby.rb +9 -17
- data/lib/twilio-ruby/framework/error.rb +3 -3
- data/lib/twilio-ruby/framework/version.rb +7 -11
- data/lib/twilio-ruby/jwt/access_token.rb +7 -2
- data/lib/twilio-ruby/jwt/jwt.rb +6 -0
- data/lib/twilio-ruby/jwt/task_router.rb +2 -2
- data/lib/twilio-ruby/rest/accounts.rb +12 -0
- data/lib/twilio-ruby/rest/accounts/v1.rb +14 -0
- data/lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb +186 -0
- data/lib/twilio-ruby/rest/accounts/v1/credential/aws.rb +13 -30
- data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +13 -30
- data/lib/twilio-ruby/rest/accounts/v1/secondary_auth_token.rb +200 -0
- data/lib/twilio-ruby/rest/api.rb +1 -1
- data/lib/twilio-ruby/rest/api/v2010/account.rb +10 -27
- data/lib/twilio-ruby/rest/api/v2010/account/address.rb +16 -33
- data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +5 -7
- data/lib/twilio-ruby/rest/api/v2010/account/application.rb +22 -37
- data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +10 -18
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +9 -17
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +35 -28
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/machine_to_machine.rb +35 -28
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +35 -28
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/national.rb +35 -28
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/shared_cost.rb +35 -28
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +35 -28
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/voip.rb +35 -28
- data/lib/twilio-ruby/rest/api/v2010/account/balance.rb +2 -8
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +215 -142
- data/lib/twilio-ruby/rest/api/v2010/account/call/event.rb +201 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +25 -41
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +13 -24
- data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +12 -34
- data/lib/twilio-ruby/rest/api/v2010/account/call/payment.rb +375 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +38 -43
- data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +24 -22
- data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +98 -61
- data/lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb +13 -25
- data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +16 -28
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +37 -40
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +15 -28
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +9 -17
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +23 -16
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +23 -16
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +23 -16
- data/lib/twilio-ruby/rest/api/v2010/account/key.rb +11 -23
- data/lib/twilio-ruby/rest/api/v2010/account/message.rb +126 -127
- data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +9 -12
- data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +12 -20
- data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +3 -8
- data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +3 -8
- data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +9 -17
- data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +13 -25
- data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +45 -62
- data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +12 -24
- data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +15 -23
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +12 -20
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +12 -20
- data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +15 -23
- data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +10 -22
- data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +10 -22
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +13 -30
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +13 -30
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +96 -37
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types.rb +2 -2
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping.rb +2 -2
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_credential_list_mapping.rb +15 -28
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_ip_access_control_list_mapping.rb +15 -28
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping.rb +2 -2
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping/auth_registrations_credential_list_mapping.rb +15 -28
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +13 -26
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +12 -25
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +14 -31
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +14 -31
- data/lib/twilio-ruby/rest/api/v2010/account/token.rb +6 -11
- data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +12 -20
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +9 -11
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +9 -11
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +9 -11
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +9 -11
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +9 -11
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +9 -11
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +9 -11
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +9 -11
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +9 -11
- data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +32 -48
- data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +18 -23
- data/lib/twilio-ruby/rest/autopilot.rb +6 -0
- data/lib/twilio-ruby/rest/autopilot/v1.rb +7 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant.rb +25 -58
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/defaults.rb +7 -17
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/dialogue.rb +6 -12
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type.rb +16 -33
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb +27 -36
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb +16 -33
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb +61 -55
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb +7 -17
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb +19 -36
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb +21 -34
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb +44 -54
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_actions.rb +12 -22
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb +9 -15
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/webhook.rb +16 -33
- data/lib/twilio-ruby/rest/autopilot/v1/restore_assistant.rb +194 -0
- data/lib/twilio-ruby/rest/bulkexports.rb +56 -0
- data/lib/twilio-ruby/rest/bulkexports/v1.rb +60 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export.rb +251 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export/day.rb +294 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export/export_custom_job.rb +278 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export/job.rb +249 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb +234 -0
- data/lib/twilio-ruby/rest/chat/v1/credential.rb +13 -30
- data/lib/twilio-ruby/rest/chat/v1/service.rb +52 -69
- data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +22 -39
- data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +34 -47
- data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +44 -61
- data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +20 -37
- data/lib/twilio-ruby/rest/chat/v1/service/role.rb +27 -44
- data/lib/twilio-ruby/rest/chat/v1/service/user.rb +21 -38
- data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +5 -7
- data/lib/twilio-ruby/rest/chat/v2/credential.rb +13 -30
- data/lib/twilio-ruby/rest/chat/v2/service.rb +52 -69
- data/lib/twilio-ruby/rest/chat/v2/service/binding.rb +34 -42
- data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +55 -57
- data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +34 -47
- data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +91 -93
- data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +59 -61
- data/lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb +52 -66
- data/lib/twilio-ruby/rest/chat/v2/service/role.rb +27 -44
- data/lib/twilio-ruby/rest/chat/v2/service/user.rb +39 -43
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_binding.rb +34 -42
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +30 -42
- data/lib/twilio-ruby/rest/client.rb +90 -16
- data/lib/twilio-ruby/rest/conversations.rb +39 -3
- data/lib/twilio-ruby/rest/conversations/v1.rb +68 -5
- data/lib/twilio-ruby/rest/conversations/v1/configuration.rb +260 -0
- data/lib/twilio-ruby/rest/conversations/v1/configuration/webhook.rb +254 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +106 -56
- data/lib/twilio-ruby/rest/conversations/v1/conversation/message.rb +95 -56
- data/lib/twilio-ruby/rest/conversations/v1/conversation/message/delivery_receipt.rb +355 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb +136 -65
- data/lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb +36 -58
- data/lib/twilio-ruby/rest/conversations/v1/credential.rb +419 -0
- data/lib/twilio-ruby/rest/conversations/v1/role.rb +366 -0
- data/lib/twilio-ruby/rest/{authy → conversations}/v1/service.rb +139 -90
- data/lib/twilio-ruby/rest/conversations/v1/service/binding.rb +380 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/configuration.rb +278 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/configuration/notification.rb +307 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation.rb +588 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message.rb +541 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message/delivery_receipt.rb +386 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation/participant.rb +541 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation/webhook.rb +449 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/role.rb +387 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/user.rb +437 -0
- data/lib/twilio-ruby/rest/conversations/v1/user.rb +416 -0
- data/lib/twilio-ruby/rest/events.rb +72 -0
- data/lib/twilio-ruby/rest/events/v1.rb +90 -0
- data/lib/twilio-ruby/rest/events/v1/event_type.rb +291 -0
- data/lib/twilio-ruby/rest/events/v1/schema.rb +226 -0
- data/lib/twilio-ruby/rest/events/v1/schema/schema_version.rb +290 -0
- data/lib/twilio-ruby/rest/{preview/acc_security/service.rb → events/v1/sink.rb} +128 -142
- data/lib/twilio-ruby/rest/{preview/trusted_comms/business/insights.rb → events/v1/sink/sink_test.rb} +39 -35
- data/lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb +119 -0
- data/lib/twilio-ruby/rest/events/v1/subscription.rb +390 -0
- data/lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb +216 -0
- data/lib/twilio-ruby/rest/fax/v1/fax.rb +41 -57
- data/lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb +9 -17
- data/lib/twilio-ruby/rest/flex_api.rb +1 -1
- data/lib/twilio-ruby/rest/flex_api/v1.rb +1 -1
- data/lib/twilio-ruby/rest/flex_api/v1/channel.rb +18 -30
- data/lib/twilio-ruby/rest/flex_api/v1/configuration.rb +34 -31
- data/lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb +121 -111
- data/lib/twilio-ruby/rest/flex_api/v1/web_channel.rb +15 -32
- data/lib/twilio-ruby/rest/insights.rb +8 -0
- data/lib/twilio-ruby/rest/insights/v1.rb +15 -0
- data/lib/twilio-ruby/rest/insights/v1/call.rb +3 -9
- data/lib/twilio-ruby/rest/insights/v1/call/event.rb +3 -5
- data/lib/twilio-ruby/rest/insights/v1/call/metric.rb +3 -5
- data/lib/twilio-ruby/rest/insights/v1/call/summary.rb +18 -16
- data/lib/twilio-ruby/rest/insights/v1/room.rb +487 -0
- data/lib/twilio-ruby/rest/insights/v1/room/participant.rb +378 -0
- data/lib/twilio-ruby/rest/ip_messaging.rb +8 -10
- data/lib/twilio-ruby/rest/ip_messaging/v1.rb +6 -8
- data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +42 -98
- data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +211 -343
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +45 -89
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +35 -80
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +41 -101
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +44 -89
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +32 -69
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +42 -81
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +15 -23
- data/lib/twilio-ruby/rest/ip_messaging/v2.rb +6 -6
- data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +42 -96
- data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +129 -235
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/binding.rb +32 -67
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +75 -127
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +35 -75
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +76 -154
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +80 -136
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/webhook.rb +49 -119
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +32 -71
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +59 -87
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_binding.rb +32 -70
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +37 -78
- data/lib/twilio-ruby/rest/lookups.rb +1 -1
- data/lib/twilio-ruby/rest/lookups/v1.rb +1 -1
- data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +28 -32
- data/lib/twilio-ruby/rest/messaging.rb +6 -15
- data/lib/twilio-ruby/rest/messaging/v1.rb +7 -22
- data/lib/twilio-ruby/rest/messaging/v1/deactivation.rb +164 -0
- data/lib/twilio-ruby/rest/messaging/v1/service.rb +52 -66
- data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +16 -29
- data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +16 -29
- data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +16 -29
- data/lib/twilio-ruby/rest/monitor/v1/alert.rb +26 -34
- data/lib/twilio-ruby/rest/monitor/v1/event.rb +21 -29
- data/lib/twilio-ruby/rest/notify/v1/credential.rb +25 -36
- data/lib/twilio-ruby/rest/notify/v1/service.rb +57 -55
- data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +38 -50
- data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +42 -39
- data/lib/twilio-ruby/rest/numbers.rb +44 -0
- data/lib/twilio-ruby/rest/numbers/v2.rb +35 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance.rb +189 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb +512 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/evaluation.rb +309 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb +320 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user.rb +358 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb +273 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb +314 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document.rb +371 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document_type.rb +273 -0
- data/lib/twilio-ruby/rest/preview.rb +12 -30
- data/lib/twilio-ruby/rest/preview/bulk_exports.rb +4 -2
- data/lib/twilio-ruby/rest/preview/bulk_exports/export.rb +20 -17
- data/lib/twilio-ruby/rest/preview/bulk_exports/export/day.rb +96 -13
- data/lib/twilio-ruby/rest/preview/bulk_exports/export/export_custom_job.rb +32 -55
- data/lib/twilio-ruby/rest/preview/bulk_exports/export/job.rb +32 -15
- data/lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb +27 -27
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet.rb +13 -30
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb +13 -30
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/deployment.rb +13 -30
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/device.rb +13 -30
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/key.rb +13 -30
- data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document.rb +38 -50
- data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document/dependent_hosted_number_order.rb +14 -13
- data/lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb +22 -39
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +6 -14
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +6 -14
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +13 -30
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +7 -19
- data/lib/twilio-ruby/rest/preview/sync/service.rb +13 -30
- data/lib/twilio-ruby/rest/preview/sync/service/document.rb +26 -36
- data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +10 -22
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +12 -25
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +26 -36
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +10 -22
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +12 -25
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +26 -36
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +10 -22
- data/lib/twilio-ruby/rest/preview/trusted_comms.rb +14 -29
- data/lib/twilio-ruby/rest/preview/trusted_comms/{business.rb → branded_channel.rb} +65 -59
- data/lib/twilio-ruby/rest/preview/trusted_comms/branded_channel/channel.rb +165 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/brands_information.rb +195 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/cps.rb +11 -11
- data/lib/twilio-ruby/rest/preview/trusted_comms/current_call.rb +25 -11
- data/lib/twilio-ruby/rest/preview/understand/assistant.rb +13 -30
- data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_fallback_actions.rb +4 -14
- data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_initiation_actions.rb +4 -14
- data/lib/twilio-ruby/rest/preview/understand/assistant/dialogue.rb +3 -9
- data/lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb +13 -30
- data/lib/twilio-ruby/rest/preview/understand/assistant/field_type/field_value.rb +12 -25
- data/lib/twilio-ruby/rest/preview/understand/assistant/model_build.rb +13 -30
- data/lib/twilio-ruby/rest/preview/understand/assistant/query.rb +13 -30
- data/lib/twilio-ruby/rest/preview/understand/assistant/style_sheet.rb +4 -14
- data/lib/twilio-ruby/rest/preview/understand/assistant/task.rb +13 -30
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb +14 -27
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/sample.rb +13 -30
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb +4 -14
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_statistics.rb +3 -9
- data/lib/twilio-ruby/rest/preview/wireless/command.rb +9 -22
- data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +15 -32
- data/lib/twilio-ruby/rest/preview/wireless/sim.rb +7 -19
- data/lib/twilio-ruby/rest/preview/wireless/sim/usage.rb +3 -7
- data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +2 -2
- data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +12 -20
- data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +2 -2
- data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +11 -19
- data/lib/twilio-ruby/rest/pricing/v1/voice.rb +2 -2
- data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +12 -20
- data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +3 -9
- data/lib/twilio-ruby/rest/pricing/v2/voice.rb +3 -3
- data/lib/twilio-ruby/rest/pricing/v2/voice/country.rb +12 -20
- data/lib/twilio-ruby/rest/pricing/v2/voice/number.rb +8 -12
- data/lib/twilio-ruby/rest/proxy/v1/service.rb +28 -45
- data/lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb +26 -41
- data/lib/twilio-ruby/rest/proxy/v1/service/session.rb +65 -41
- data/lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb +15 -23
- data/lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb +32 -32
- data/lib/twilio-ruby/rest/proxy/v1/service/session/participant/message_interaction.rb +19 -32
- data/lib/twilio-ruby/rest/proxy/v1/service/short_code.rb +21 -38
- data/lib/twilio-ruby/rest/serverless/v1/service.rb +49 -47
- data/lib/twilio-ruby/rest/serverless/v1/service/asset.rb +23 -40
- data/lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb +15 -23
- data/lib/twilio-ruby/rest/serverless/v1/service/build.rb +50 -38
- data/lib/twilio-ruby/rest/serverless/v1/service/build/build_status.rb +219 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/environment.rb +22 -37
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb +22 -35
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb +47 -23
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb +31 -48
- data/lib/twilio-ruby/rest/serverless/v1/service/function.rb +21 -38
- data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb +47 -25
- data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version/function_version_content.rb +241 -0
- data/lib/twilio-ruby/rest/studio.rb +16 -3
- data/lib/twilio-ruby/rest/studio/v1/flow.rb +9 -17
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement.rb +12 -25
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb +3 -9
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step.rb +6 -14
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step/step_context.rb +3 -9
- data/lib/twilio-ruby/rest/studio/v1/flow/execution.rb +40 -31
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_context.rb +3 -9
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step.rb +6 -14
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step/execution_step_context.rb +3 -9
- data/lib/twilio-ruby/rest/studio/v2.rb +50 -0
- data/lib/twilio-ruby/rest/studio/v2/flow.rb +482 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/execution.rb +449 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb +211 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb +372 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step/execution_step_context.rb +228 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb +327 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/test_user.rb +199 -0
- data/lib/twilio-ruby/rest/studio/v2/flow_validate.rb +117 -0
- data/lib/twilio-ruby/rest/supersim.rb +88 -0
- data/lib/twilio-ruby/rest/supersim/v1.rb +110 -0
- data/lib/twilio-ruby/rest/supersim/v1/command.rb +368 -0
- data/lib/twilio-ruby/rest/supersim/v1/fleet.rb +442 -0
- data/lib/twilio-ruby/rest/supersim/v1/network.rb +307 -0
- data/lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb +361 -0
- data/lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb +339 -0
- data/lib/twilio-ruby/rest/supersim/v1/sim.rb +398 -0
- data/lib/twilio-ruby/rest/supersim/v1/usage_record.rb +338 -0
- data/lib/twilio-ruby/rest/sync/v1/service.rb +16 -33
- data/lib/twilio-ruby/rest/sync/v1/service/document.rb +39 -47
- data/lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb +16 -28
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +23 -38
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +41 -45
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb +16 -28
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +23 -38
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +48 -52
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb +17 -29
- data/lib/twilio-ruby/rest/sync/v1/service/sync_stream.rb +19 -36
- data/lib/twilio-ruby/rest/sync/v1/service/sync_stream/stream_message.rb +8 -13
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +17 -34
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +15 -31
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +21 -23
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +43 -49
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +33 -41
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +29 -46
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +21 -38
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics.rb +16 -13
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics.rb +18 -8
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +9 -13
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +12 -14
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +17 -37
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +33 -41
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +7 -19
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +7 -11
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_cumulative_statistics.rb +8 -12
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_real_time_statistics.rb +4 -8
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +9 -13
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +25 -42
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics.rb +7 -11
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_real_time_statistics.rb +3 -7
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +9 -13
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_cumulative_statistics.rb +7 -11
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_real_time_statistics.rb +4 -8
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +9 -13
- data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +70 -98
- data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +14 -27
- data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +15 -27
- data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +13 -30
- data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +15 -27
- data/lib/twilio-ruby/rest/trunking/v1/trunk/recording.rb +198 -0
- data/lib/twilio-ruby/rest/verify.rb +9 -0
- data/lib/twilio-ruby/rest/verify/v2.rb +16 -0
- data/lib/twilio-ruby/rest/{authy/v1 → verify/v2}/form.rb +19 -25
- data/lib/twilio-ruby/rest/verify/v2/service.rb +183 -36
- data/lib/twilio-ruby/rest/verify/v2/service/access_token.rb +124 -0
- data/lib/twilio-ruby/rest/{authy/v1 → verify/v2}/service/entity.rb +63 -41
- data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb +460 -0
- data/lib/twilio-ruby/rest/{authy/v1 → verify/v2}/service/entity/factor.rb +86 -108
- data/lib/twilio-ruby/rest/verify/v2/service/messaging_configuration.rb +25 -42
- data/lib/twilio-ruby/rest/verify/v2/service/rate_limit.rb +16 -33
- data/lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb +16 -33
- data/lib/twilio-ruby/rest/verify/v2/service/verification.rb +41 -38
- data/lib/twilio-ruby/rest/verify/v2/service/verification_check.rb +9 -15
- data/lib/twilio-ruby/rest/verify/v2/service/webhook.rb +408 -0
- data/lib/twilio-ruby/rest/video/v1/composition.rb +41 -48
- data/lib/twilio-ruby/rest/video/v1/composition_hook.rb +72 -80
- data/lib/twilio-ruby/rest/video/v1/composition_settings.rb +16 -32
- data/lib/twilio-ruby/rest/video/v1/recording.rb +21 -29
- data/lib/twilio-ruby/rest/video/v1/recording_settings.rb +16 -32
- data/lib/twilio-ruby/rest/video/v1/room.rb +47 -39
- data/lib/twilio-ruby/rest/video/v1/room/recording.rb +15 -23
- data/lib/twilio-ruby/rest/video/v1/room/room_participant.rb +16 -28
- data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_published_track.rb +6 -14
- data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb +6 -22
- data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribed_track.rb +6 -14
- data/lib/twilio-ruby/rest/video/v1/room/room_recording_rule.rb +150 -0
- data/lib/twilio-ruby/rest/voice.rb +36 -0
- data/lib/twilio-ruby/rest/voice/v1.rb +64 -0
- data/lib/twilio-ruby/rest/voice/v1/byoc_trunk.rb +496 -0
- data/lib/twilio-ruby/rest/voice/v1/connection_policy.rb +362 -0
- data/lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb +441 -0
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions.rb +3 -6
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb +3 -8
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb +29 -37
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country/highrisk_special_prefix.rb +7 -9
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/settings.rb +4 -14
- data/lib/twilio-ruby/rest/voice/v1/ip_record.rb +349 -0
- data/lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb +329 -0
- data/lib/twilio-ruby/rest/wireless/v1/command.rb +19 -32
- data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +25 -41
- data/lib/twilio-ruby/rest/wireless/v1/sim.rb +32 -44
- data/lib/twilio-ruby/rest/wireless/v1/sim/data_session.rb +12 -28
- data/lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb +13 -15
- data/lib/twilio-ruby/rest/wireless/v1/usage_record.rb +9 -11
- data/lib/twilio-ruby/twiml/twiml.rb +4 -0
- data/lib/twilio-ruby/twiml/voice_response.rb +33 -18
- data/lib/twilio-ruby/util/configuration.rb +13 -1
- data/lib/twilio-ruby/version.rb +1 -1
- data/spec/framework/version_spec.rb +219 -0
- data/spec/holodeck/holodeck.rb +14 -9
- data/spec/integration/accounts/v1/auth_token_promotion_spec.rb +44 -0
- data/spec/integration/accounts/v1/credential/aws_spec.rb +0 -4
- data/spec/integration/accounts/v1/credential/public_key_spec.rb +0 -4
- data/spec/integration/accounts/v1/secondary_auth_token_spec.rb +69 -0
- data/spec/integration/api/v2010/account/address/dependent_phone_number_spec.rb +0 -1
- data/spec/integration/api/v2010/account/address_spec.rb +0 -4
- data/spec/integration/api/v2010/account/application_spec.rb +0 -5
- data/spec/integration/api/v2010/account/authorized_connect_app_spec.rb +0 -2
- data/spec/integration/api/v2010/account/available_phone_number/local_spec.rb +0 -1
- data/spec/integration/api/v2010/account/available_phone_number/machine_to_machine_spec.rb +0 -1
- data/spec/integration/api/v2010/account/available_phone_number/mobile_spec.rb +0 -1
- data/spec/integration/api/v2010/account/available_phone_number/national_spec.rb +0 -1
- data/spec/integration/api/v2010/account/available_phone_number/shared_cost_spec.rb +0 -1
- data/spec/integration/api/v2010/account/available_phone_number/toll_free_spec.rb +0 -1
- data/spec/integration/api/v2010/account/available_phone_number/voip_spec.rb +0 -1
- data/spec/integration/api/v2010/account/available_phone_number_spec.rb +0 -2
- data/spec/integration/api/v2010/account/balance_spec.rb +0 -1
- data/spec/integration/api/v2010/account/call/event_spec.rb +102 -0
- data/spec/integration/api/v2010/account/call/feedback_spec.rb +0 -1
- data/spec/integration/api/v2010/account/call/feedback_summary_spec.rb +0 -2
- data/spec/integration/api/v2010/account/call/notification_spec.rb +8 -46
- data/spec/integration/api/v2010/account/call/payment_spec.rb +135 -0
- data/spec/integration/api/v2010/account/call/recording_spec.rb +4 -4
- data/spec/integration/api/v2010/account/call_spec.rb +60 -24
- data/spec/integration/api/v2010/account/conference/participant_spec.rb +295 -4
- data/spec/integration/api/v2010/account/conference/recording_spec.rb +0 -3
- data/spec/integration/api/v2010/account/conference_spec.rb +42 -17
- data/spec/integration/api/v2010/account/connect_app_spec.rb +0 -4
- data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb +0 -2
- data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb +0 -3
- data/spec/integration/api/v2010/account/incoming_phone_number/local_spec.rb +35 -37
- data/spec/integration/api/v2010/account/incoming_phone_number/mobile_spec.rb +39 -41
- data/spec/integration/api/v2010/account/incoming_phone_number/toll_free_spec.rb +35 -37
- data/spec/integration/api/v2010/account/incoming_phone_number_spec.rb +68 -43
- data/spec/integration/api/v2010/account/key_spec.rb +0 -4
- data/spec/integration/api/v2010/account/message/feedback_spec.rb +0 -1
- data/spec/integration/api/v2010/account/message/media_spec.rb +0 -3
- data/spec/integration/api/v2010/account/message_spec.rb +38 -4
- data/spec/integration/api/v2010/account/new_key_spec.rb +0 -1
- data/spec/integration/api/v2010/account/new_signing_key_spec.rb +0 -1
- data/spec/integration/api/v2010/account/notification_spec.rb +1 -3
- data/spec/integration/api/v2010/account/outgoing_caller_id_spec.rb +8 -18
- data/spec/integration/api/v2010/account/queue/member_spec.rb +0 -2
- data/spec/integration/api/v2010/account/queue_spec.rb +0 -4
- data/spec/integration/api/v2010/account/recording/add_on_result/payload_spec.rb +0 -3
- data/spec/integration/api/v2010/account/recording/add_on_result_spec.rb +0 -3
- data/spec/integration/api/v2010/account/recording/transcription_spec.rb +0 -3
- data/spec/integration/api/v2010/account/recording_spec.rb +0 -3
- data/spec/integration/api/v2010/account/short_code_spec.rb +0 -3
- data/spec/integration/api/v2010/account/signing_key_spec.rb +0 -4
- data/spec/integration/api/v2010/account/sip/credential_list/credential_spec.rb +0 -4
- data/spec/integration/api/v2010/account/sip/credential_list_spec.rb +0 -3
- data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_credential_list_mapping_spec.rb +0 -3
- data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_ip_access_control_list_mapping_spec.rb +0 -3
- data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping/auth_registrations_credential_list_mapping_spec.rb +0 -3
- data/spec/integration/api/v2010/account/sip/domain/credential_list_mapping_spec.rb +0 -3
- data/spec/integration/api/v2010/account/sip/domain/ip_access_control_list_mapping_spec.rb +0 -3
- data/spec/integration/api/v2010/account/sip/domain_spec.rb +16 -8
- data/spec/integration/api/v2010/account/sip/ip_access_control_list/ip_address_spec.rb +0 -4
- data/spec/integration/api/v2010/account/sip/ip_access_control_list_spec.rb +0 -3
- data/spec/integration/api/v2010/account/token_spec.rb +23 -12
- data/spec/integration/api/v2010/account/transcription_spec.rb +0 -3
- data/spec/integration/api/v2010/account/usage/record/all_time_spec.rb +0 -1
- data/spec/integration/api/v2010/account/usage/record/daily_spec.rb +0 -1
- data/spec/integration/api/v2010/account/usage/record/last_month_spec.rb +0 -1
- data/spec/integration/api/v2010/account/usage/record/monthly_spec.rb +0 -1
- data/spec/integration/api/v2010/account/usage/record/this_month_spec.rb +0 -1
- data/spec/integration/api/v2010/account/usage/record/today_spec.rb +0 -1
- data/spec/integration/api/v2010/account/usage/record/yearly_spec.rb +0 -1
- data/spec/integration/api/v2010/account/usage/record/yesterday_spec.rb +0 -1
- data/spec/integration/api/v2010/account/usage/record_spec.rb +0 -1
- data/spec/integration/api/v2010/account/usage/trigger_spec.rb +0 -4
- data/spec/integration/api/v2010/account/validation_request_spec.rb +1 -1
- data/spec/integration/api/v2010/account_spec.rb +45 -4
- data/spec/integration/autopilot/v1/assistant/defaults_spec.rb +0 -2
- data/spec/integration/autopilot/v1/assistant/dialogue_spec.rb +0 -1
- data/spec/integration/autopilot/v1/assistant/field_type/field_value_spec.rb +0 -3
- data/spec/integration/autopilot/v1/assistant/field_type_spec.rb +0 -4
- data/spec/integration/autopilot/v1/assistant/model_build_spec.rb +0 -5
- data/spec/integration/autopilot/v1/assistant/query_spec.rb +12 -12
- data/spec/integration/autopilot/v1/assistant/style_sheet_spec.rb +0 -2
- data/spec/integration/autopilot/v1/assistant/task/field_spec.rb +0 -3
- data/spec/integration/autopilot/v1/assistant/task/sample_spec.rb +0 -4
- data/spec/integration/autopilot/v1/assistant/task/task_actions_spec.rb +0 -2
- data/spec/integration/autopilot/v1/assistant/task/task_statistics_spec.rb +0 -1
- data/spec/integration/autopilot/v1/assistant/task_spec.rb +0 -4
- data/spec/integration/autopilot/v1/assistant/webhook_spec.rb +0 -4
- data/spec/integration/autopilot/v1/assistant_spec.rb +4 -13
- data/spec/integration/autopilot/v1/restore_assistant_spec.rb +53 -0
- data/spec/integration/bulkexports/v1/export/day_spec.rb +115 -0
- data/spec/integration/bulkexports/v1/export/export_custom_job_spec.rb +129 -0
- data/spec/integration/bulkexports/v1/export/job_spec.rb +78 -0
- data/spec/integration/bulkexports/v1/export_configuration_spec.rb +77 -0
- data/spec/integration/bulkexports/v1/export_spec.rb +44 -0
- data/spec/integration/chat/v1/credential_spec.rb +0 -4
- data/spec/integration/chat/v1/service/channel/invite_spec.rb +0 -3
- data/spec/integration/chat/v1/service/channel/member_spec.rb +0 -4
- data/spec/integration/chat/v1/service/channel/message_spec.rb +0 -4
- data/spec/integration/chat/v1/service/channel_spec.rb +0 -5
- data/spec/integration/chat/v1/service/role_spec.rb +0 -3
- data/spec/integration/chat/v1/service/user/user_channel_spec.rb +0 -1
- data/spec/integration/chat/v1/service/user_spec.rb +0 -4
- data/spec/integration/chat/v1/service_spec.rb +0 -4
- data/spec/integration/chat/v2/credential_spec.rb +0 -4
- data/spec/integration/chat/v2/service/binding_spec.rb +0 -3
- data/spec/integration/chat/v2/service/channel/invite_spec.rb +0 -3
- data/spec/integration/chat/v2/service/channel/member_spec.rb +9 -7
- data/spec/integration/chat/v2/service/channel/message_spec.rb +9 -8
- data/spec/integration/chat/v2/service/channel/webhook_spec.rb +0 -4
- data/spec/integration/chat/v2/service/channel_spec.rb +9 -8
- data/spec/integration/chat/v2/service/role_spec.rb +0 -3
- data/spec/integration/chat/v2/service/user/user_binding_spec.rb +0 -3
- data/spec/integration/chat/v2/service/user/user_channel_spec.rb +0 -4
- data/spec/integration/chat/v2/service/user_spec.rb +6 -6
- data/spec/integration/chat/v2/service_spec.rb +0 -4
- data/spec/integration/conversations/v1/{webhook_spec.rb → configuration/webhook_spec.rb} +12 -10
- data/spec/integration/conversations/v1/configuration_spec.rb +87 -0
- data/spec/integration/conversations/v1/conversation/message/delivery_receipt_spec.rb +136 -0
- data/spec/integration/conversations/v1/conversation/message_spec.rb +131 -15
- data/spec/integration/conversations/v1/conversation/participant_spec.rb +131 -19
- data/spec/integration/conversations/v1/conversation/webhook_spec.rb +0 -4
- data/spec/integration/conversations/v1/conversation_spec.rb +64 -8
- data/spec/integration/conversations/v1/credential_spec.rb +219 -0
- data/spec/integration/conversations/v1/role_spec.rb +249 -0
- data/spec/integration/conversations/v1/service/binding_spec.rb +166 -0
- data/spec/integration/conversations/v1/service/configuration/notification_spec.rb +115 -0
- data/spec/integration/conversations/v1/service/configuration_spec.rb +89 -0
- data/spec/integration/conversations/v1/service/conversation/message/delivery_receipt_spec.rb +144 -0
- data/spec/integration/conversations/v1/service/conversation/message_spec.rb +429 -0
- data/spec/integration/conversations/v1/service/conversation/participant_spec.rb +427 -0
- data/spec/integration/conversations/v1/service/conversation/webhook_spec.rb +299 -0
- data/spec/integration/conversations/v1/service/conversation_spec.rb +289 -0
- data/spec/integration/conversations/v1/service/role_spec.rb +260 -0
- data/spec/integration/conversations/v1/service/user_spec.rb +241 -0
- data/spec/integration/conversations/v1/service_spec.rb +174 -0
- data/spec/integration/conversations/v1/user_spec.rb +231 -0
- data/spec/integration/events/v1/event_type_spec.rb +133 -0
- data/spec/integration/events/v1/schema/schema_version_spec.rb +126 -0
- data/spec/integration/events/v1/schema_spec.rb +46 -0
- data/spec/integration/events/v1/sink/sink_test_spec.rb +42 -0
- data/spec/integration/events/v1/sink/sink_validate_spec.rb +44 -0
- data/spec/integration/events/v1/sink_spec.rb +231 -0
- data/spec/integration/events/v1/subscription/subscribed_event_spec.rb +91 -0
- data/spec/integration/events/v1/subscription_spec.rb +292 -0
- data/spec/integration/fax/v1/fax/fax_media_spec.rb +0 -3
- data/spec/integration/fax/v1/fax_spec.rb +0 -4
- data/spec/integration/flex_api/v1/channel_spec.rb +0 -3
- data/spec/integration/flex_api/v1/configuration_spec.rb +108 -3
- data/spec/integration/flex_api/v1/flex_flow_spec.rb +0 -4
- data/spec/integration/flex_api/v1/web_channel_spec.rb +0 -4
- data/spec/integration/insights/v1/call/event_spec.rb +0 -1
- data/spec/integration/insights/v1/call/metric_spec.rb +0 -1
- data/spec/integration/insights/v1/call/summary_spec.rb +2 -1
- data/spec/integration/insights/v1/call_spec.rb +0 -1
- data/spec/integration/insights/v1/room/participant_spec.rb +147 -0
- data/spec/integration/insights/v1/room_spec.rb +164 -0
- data/spec/integration/ip_messaging/v1/credential_spec.rb +13 -17
- data/spec/integration/ip_messaging/v1/service/channel/invite_spec.rb +11 -14
- data/spec/integration/ip_messaging/v1/service/channel/member_spec.rb +14 -18
- data/spec/integration/ip_messaging/v1/service/channel/message_spec.rb +14 -18
- data/spec/integration/ip_messaging/v1/service/channel_spec.rb +25 -30
- data/spec/integration/ip_messaging/v1/service/role_spec.rb +13 -16
- data/spec/integration/ip_messaging/v1/service/user/user_channel_spec.rb +7 -8
- data/spec/integration/ip_messaging/v1/service/user_spec.rb +17 -21
- data/spec/integration/ip_messaging/v1/service_spec.rb +9 -13
- data/spec/integration/ip_messaging/v2/credential_spec.rb +13 -17
- data/spec/integration/ip_messaging/v2/service/binding_spec.rb +11 -14
- data/spec/integration/ip_messaging/v2/service/channel/invite_spec.rb +11 -14
- data/spec/integration/ip_messaging/v2/service/channel/member_spec.rb +22 -20
- data/spec/integration/ip_messaging/v2/service/channel/message_spec.rb +26 -25
- data/spec/integration/ip_messaging/v2/service/channel/webhook_spec.rb +15 -19
- data/spec/integration/ip_messaging/v2/service/channel_spec.rb +38 -37
- data/spec/integration/ip_messaging/v2/service/role_spec.rb +13 -16
- data/spec/integration/ip_messaging/v2/service/user/user_binding_spec.rb +9 -12
- data/spec/integration/ip_messaging/v2/service/user/user_channel_spec.rb +20 -24
- data/spec/integration/ip_messaging/v2/service/user_spec.rb +27 -27
- data/spec/integration/ip_messaging/v2/service_spec.rb +29 -33
- data/spec/integration/lookups/v1/phone_number_spec.rb +7 -8
- data/spec/integration/messaging/v1/deactivation_spec.rb +40 -0
- data/spec/integration/messaging/v1/service/alpha_sender_spec.rb +9 -6
- data/spec/integration/messaging/v1/service/phone_number_spec.rb +0 -3
- data/spec/integration/messaging/v1/service/short_code_spec.rb +0 -3
- data/spec/integration/messaging/v1/service_spec.rb +0 -4
- data/spec/integration/monitor/v1/alert_spec.rb +0 -2
- data/spec/integration/monitor/v1/event_spec.rb +0 -2
- data/spec/integration/notify/v1/credential_spec.rb +0 -4
- data/spec/integration/notify/v1/service/binding_spec.rb +0 -3
- data/spec/integration/notify/v1/service/notification_spec.rb +0 -1
- data/spec/integration/notify/v1/service_spec.rb +0 -5
- data/spec/integration/numbers/v2/regulatory_compliance/bundle/evaluation_spec.rb +620 -0
- data/spec/integration/numbers/v2/regulatory_compliance/bundle/item_assignment_spec.rb +195 -0
- data/spec/integration/numbers/v2/regulatory_compliance/bundle_spec.rb +258 -0
- data/spec/integration/numbers/v2/regulatory_compliance/end_user_spec.rb +238 -0
- data/spec/integration/numbers/v2/regulatory_compliance/end_user_type_spec.rb +141 -0
- data/spec/integration/numbers/v2/regulatory_compliance/regulation_spec.rb +181 -0
- data/spec/integration/numbers/v2/regulatory_compliance/supporting_document_spec.rb +250 -0
- data/spec/integration/numbers/v2/regulatory_compliance/supporting_document_type_spec.rb +131 -0
- data/spec/integration/{preview/trusted_comms/business/insights_spec.rb → numbers/v2/regulatory_compliance_spec.rb} +1 -1
- data/spec/integration/preview/bulk_exports/export/day_spec.rb +66 -9
- data/spec/integration/preview/bulk_exports/export/export_custom_job_spec.rb +4 -4
- data/spec/integration/preview/bulk_exports/export/job_spec.rb +3 -2
- data/spec/integration/preview/bulk_exports/export_configuration_spec.rb +0 -2
- data/spec/integration/preview/bulk_exports/export_spec.rb +0 -1
- data/spec/integration/preview/deployed_devices/fleet/certificate_spec.rb +0 -4
- data/spec/integration/preview/deployed_devices/fleet/deployment_spec.rb +0 -5
- data/spec/integration/preview/deployed_devices/fleet/device_spec.rb +0 -5
- data/spec/integration/preview/deployed_devices/fleet/key_spec.rb +0 -5
- data/spec/integration/preview/deployed_devices/fleet_spec.rb +0 -5
- data/spec/integration/preview/hosted_numbers/authorization_document/dependent_hosted_number_order_spec.rb +0 -1
- data/spec/integration/preview/hosted_numbers/authorization_document_spec.rb +0 -3
- data/spec/integration/preview/hosted_numbers/hosted_number_order_spec.rb +0 -4
- data/spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb +0 -2
- data/spec/integration/preview/marketplace/available_add_on_spec.rb +0 -2
- data/spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb +0 -2
- data/spec/integration/preview/marketplace/installed_add_on_spec.rb +0 -4
- data/spec/integration/preview/sync/service/document/document_permission_spec.rb +0 -3
- data/spec/integration/preview/sync/service/document_spec.rb +6 -6
- data/spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb +6 -5
- data/spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb +0 -3
- data/spec/integration/preview/sync/service/sync_list_spec.rb +0 -4
- data/spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb +6 -5
- data/spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb +0 -3
- data/spec/integration/preview/sync/service/sync_map_spec.rb +0 -4
- data/spec/integration/preview/sync/service_spec.rb +0 -5
- data/spec/integration/preview/trusted_comms/branded_channel/channel_spec.rb +50 -0
- data/spec/integration/preview/trusted_comms/branded_channel_spec.rb +47 -0
- data/spec/integration/preview/trusted_comms/brands_information_spec.rb +45 -0
- data/spec/integration/preview/trusted_comms/cps_spec.rb +3 -2
- data/spec/integration/preview/trusted_comms/current_call_spec.rb +6 -2
- data/spec/integration/preview/understand/assistant/assistant_fallback_actions_spec.rb +0 -2
- data/spec/integration/preview/understand/assistant/assistant_initiation_actions_spec.rb +0 -2
- data/spec/integration/preview/understand/assistant/dialogue_spec.rb +0 -1
- data/spec/integration/preview/understand/assistant/field_type/field_value_spec.rb +0 -3
- data/spec/integration/preview/understand/assistant/field_type_spec.rb +0 -4
- data/spec/integration/preview/understand/assistant/model_build_spec.rb +0 -5
- data/spec/integration/preview/understand/assistant/query_spec.rb +0 -4
- data/spec/integration/preview/understand/assistant/style_sheet_spec.rb +0 -2
- data/spec/integration/preview/understand/assistant/task/field_spec.rb +0 -3
- data/spec/integration/preview/understand/assistant/task/sample_spec.rb +0 -4
- data/spec/integration/preview/understand/assistant/task/task_actions_spec.rb +0 -2
- data/spec/integration/preview/understand/assistant/task/task_statistics_spec.rb +0 -1
- data/spec/integration/preview/understand/assistant/task_spec.rb +0 -4
- data/spec/integration/preview/understand/assistant_spec.rb +0 -5
- data/spec/integration/preview/wireless/command_spec.rb +0 -2
- data/spec/integration/preview/wireless/rate_plan_spec.rb +0 -5
- data/spec/integration/preview/wireless/sim/usage_spec.rb +0 -1
- data/spec/integration/preview/wireless/sim_spec.rb +0 -3
- data/spec/integration/pricing/v1/messaging/country_spec.rb +0 -2
- data/spec/integration/pricing/v1/phone_number/country_spec.rb +0 -2
- data/spec/integration/pricing/v1/voice/country_spec.rb +0 -2
- data/spec/integration/pricing/v1/voice/number_spec.rb +0 -1
- data/spec/integration/pricing/v2/voice/country_spec.rb +0 -2
- data/spec/integration/pricing/v2/voice/number_spec.rb +0 -1
- data/spec/integration/proxy/v1/service/phone_number_spec.rb +0 -5
- data/spec/integration/proxy/v1/service/session/interaction_spec.rb +0 -3
- data/spec/integration/proxy/v1/service/session/participant/message_interaction_spec.rb +0 -3
- data/spec/integration/proxy/v1/service/session/participant_spec.rb +0 -3
- data/spec/integration/proxy/v1/service/session_spec.rb +0 -5
- data/spec/integration/proxy/v1/service/short_code_spec.rb +0 -4
- data/spec/integration/proxy/v1/service_spec.rb +0 -4
- data/spec/integration/serverless/v1/service/asset/asset_version_spec.rb +1 -3
- data/spec/integration/serverless/v1/service/asset_spec.rb +0 -3
- data/spec/integration/serverless/v1/service/build/build_status_spec.rb +48 -0
- data/spec/integration/serverless/v1/service/build_spec.rb +12 -10
- data/spec/integration/serverless/v1/service/environment/deployment_spec.rb +2 -6
- data/spec/integration/serverless/v1/service/environment/log_spec.rb +3 -4
- data/spec/integration/serverless/v1/service/environment/variable_spec.rb +0 -4
- data/spec/integration/serverless/v1/service/environment_spec.rb +0 -3
- data/spec/integration/serverless/v1/service/function/function_version/function_version_content_spec.rb +51 -0
- data/spec/integration/serverless/v1/service/function/function_version_spec.rb +5 -4
- data/spec/integration/serverless/v1/service/function_spec.rb +0 -3
- data/spec/integration/serverless/v1/service_spec.rb +3 -4
- data/spec/integration/studio/v1/flow/engagement/engagement_context_spec.rb +0 -1
- data/spec/integration/studio/v1/flow/engagement/step/step_context_spec.rb +0 -1
- data/spec/integration/studio/v1/flow/engagement/step_spec.rb +0 -2
- data/spec/integration/studio/v1/flow/engagement_spec.rb +0 -3
- data/spec/integration/studio/v1/flow/execution/execution_context_spec.rb +0 -1
- data/spec/integration/studio/v1/flow/execution/execution_step/execution_step_context_spec.rb +0 -1
- data/spec/integration/studio/v1/flow/execution/execution_step_spec.rb +1 -2
- data/spec/integration/studio/v1/flow/execution_spec.rb +46 -3
- data/spec/integration/studio/v1/flow_spec.rb +0 -3
- data/spec/integration/studio/v2/flow/execution/execution_context_spec.rb +50 -0
- data/spec/integration/studio/v2/flow/execution/execution_step/execution_step_context_spec.rb +53 -0
- data/spec/integration/studio/v2/flow/execution/execution_step_spec.rb +100 -0
- data/spec/integration/studio/v2/flow/execution_spec.rb +211 -0
- data/spec/integration/studio/v2/flow/flow_revision_spec.rb +110 -0
- data/spec/integration/studio/v2/flow/test_user_spec.rb +85 -0
- data/spec/integration/studio/v2/flow_spec.rb +251 -0
- data/spec/integration/studio/v2/flow_validate_spec.rb +46 -0
- data/spec/integration/supersim/v1/command_spec.rb +184 -0
- data/spec/integration/supersim/v1/fleet_spec.rb +214 -0
- data/spec/integration/supersim/v1/network_access_profile/network_access_profile_network_spec.rb +176 -0
- data/spec/integration/supersim/v1/network_access_profile_spec.rb +219 -0
- data/spec/integration/supersim/v1/network_spec.rb +137 -0
- data/spec/integration/supersim/v1/sim_spec.rb +323 -0
- data/spec/integration/supersim/v1/usage_record_spec.rb +647 -0
- data/spec/integration/sync/v1/service/document/document_permission_spec.rb +0 -3
- data/spec/integration/sync/v1/service/document_spec.rb +6 -7
- data/spec/integration/sync/v1/service/sync_list/sync_list_item_spec.rb +6 -6
- data/spec/integration/sync/v1/service/sync_list/sync_list_permission_spec.rb +0 -3
- data/spec/integration/sync/v1/service/sync_list_spec.rb +0 -5
- data/spec/integration/sync/v1/service/sync_map/sync_map_item_spec.rb +6 -6
- data/spec/integration/sync/v1/service/sync_map/sync_map_permission_spec.rb +0 -3
- data/spec/integration/sync/v1/service/sync_map_spec.rb +0 -5
- data/spec/integration/sync/v1/service/sync_stream_spec.rb +0 -5
- data/spec/integration/sync/v1/service_spec.rb +0 -5
- data/spec/integration/taskrouter/v1/workspace/activity_spec.rb +0 -4
- data/spec/integration/taskrouter/v1/workspace/event_spec.rb +0 -2
- data/spec/integration/taskrouter/v1/workspace/task/reservation_spec.rb +0 -3
- data/spec/integration/taskrouter/v1/workspace/task_channel_spec.rb +0 -4
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics_spec.rb +6 -1
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics_spec.rb +2 -1
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_statistics_spec.rb +0 -1
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queues_statistics_spec.rb +0 -1
- data/spec/integration/taskrouter/v1/workspace/task_queue_spec.rb +0 -4
- data/spec/integration/taskrouter/v1/workspace/task_spec.rb +4 -5
- data/spec/integration/taskrouter/v1/workspace/worker/reservation_spec.rb +0 -3
- data/spec/integration/taskrouter/v1/workspace/worker/worker_channel_spec.rb +1 -4
- data/spec/integration/taskrouter/v1/workspace/worker/worker_statistics_spec.rb +0 -1
- data/spec/integration/taskrouter/v1/workspace/worker/workers_cumulative_statistics_spec.rb +0 -1
- data/spec/integration/taskrouter/v1/workspace/worker/workers_real_time_statistics_spec.rb +0 -1
- data/spec/integration/taskrouter/v1/workspace/worker/workers_statistics_spec.rb +0 -1
- data/spec/integration/taskrouter/v1/workspace/worker_spec.rb +0 -4
- data/spec/integration/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics_spec.rb +0 -1
- data/spec/integration/taskrouter/v1/workspace/workflow/workflow_real_time_statistics_spec.rb +0 -1
- data/spec/integration/taskrouter/v1/workspace/workflow/workflow_statistics_spec.rb +0 -1
- data/spec/integration/taskrouter/v1/workspace/workflow_spec.rb +0 -4
- data/spec/integration/taskrouter/v1/workspace/workspace_cumulative_statistics_spec.rb +0 -1
- data/spec/integration/taskrouter/v1/workspace/workspace_real_time_statistics_spec.rb +0 -1
- data/spec/integration/taskrouter/v1/workspace/workspace_statistics_spec.rb +0 -1
- data/spec/integration/taskrouter/v1/workspace_spec.rb +0 -4
- data/spec/integration/trunking/v1/trunk/credential_list_spec.rb +13 -16
- data/spec/integration/trunking/v1/trunk/ip_access_control_list_spec.rb +23 -26
- data/spec/integration/trunking/v1/trunk/origination_url_spec.rb +28 -32
- data/spec/integration/trunking/v1/trunk/phone_number_spec.rb +17 -20
- data/spec/integration/trunking/v1/trunk/recording_spec.rb +75 -0
- data/spec/integration/trunking/v1/trunk_spec.rb +37 -124
- data/spec/integration/{authy/v1 → verify/v2}/form_spec.rb +5 -6
- data/spec/integration/verify/v2/service/access_token_spec.rb +44 -0
- data/spec/integration/verify/v2/service/entity/challenge_spec.rb +288 -0
- data/spec/integration/verify/v2/service/entity/factor_spec.rb +277 -0
- data/spec/integration/verify/v2/service/entity_spec.rb +201 -0
- data/spec/integration/verify/v2/service/messaging_configuration_spec.rb +0 -3
- data/spec/integration/verify/v2/service/rate_limit/bucket_spec.rb +0 -4
- data/spec/integration/verify/v2/service/rate_limit_spec.rb +0 -4
- data/spec/integration/verify/v2/service/verification_check_spec.rb +26 -0
- data/spec/integration/verify/v2/service/verification_spec.rb +42 -1
- data/spec/integration/verify/v2/service/webhook_spec.rb +258 -0
- data/spec/integration/verify/v2/service_spec.rb +44 -8
- data/spec/integration/video/v1/composition_hook_spec.rb +0 -3
- data/spec/integration/video/v1/composition_settings_spec.rb +2 -3
- data/spec/integration/video/v1/composition_spec.rb +0 -3
- data/spec/integration/video/v1/recording_settings_spec.rb +2 -3
- data/spec/integration/video/v1/recording_spec.rb +2 -5
- data/spec/integration/video/v1/room/recording_spec.rb +2 -5
- data/spec/integration/video/v1/room/room_participant/room_participant_published_track_spec.rb +0 -2
- data/spec/integration/video/v1/room/room_participant/room_participant_subscribe_rule_spec.rb +1 -3
- data/spec/integration/video/v1/room/room_participant/room_participant_subscribed_track_spec.rb +0 -2
- data/spec/integration/video/v1/room/room_participant_spec.rb +0 -3
- data/spec/integration/video/v1/room/room_recording_rule_spec.rb +89 -0
- data/spec/integration/video/v1/room_spec.rb +51 -7
- data/spec/integration/voice/v1/byoc_trunk_spec.rb +245 -0
- data/spec/integration/voice/v1/connection_policy/connection_policy_target_spec.rb +242 -0
- data/spec/integration/voice/v1/connection_policy_spec.rb +221 -0
- data/spec/integration/voice/v1/dialing_permissions/country/highrisk_special_prefix_spec.rb +0 -1
- data/spec/integration/voice/v1/dialing_permissions/country_spec.rb +0 -2
- data/spec/integration/voice/v1/dialing_permissions/settings_spec.rb +1 -3
- data/spec/integration/voice/v1/ip_record_spec.rb +219 -0
- data/spec/integration/voice/v1/source_ip_mapping_spec.rb +216 -0
- data/spec/integration/wireless/v1/command_spec.rb +0 -3
- data/spec/integration/wireless/v1/rate_plan_spec.rb +0 -5
- data/spec/integration/wireless/v1/sim/data_session_spec.rb +2 -3
- data/spec/integration/wireless/v1/sim/usage_record_spec.rb +0 -1
- data/spec/integration/wireless/v1/sim_spec.rb +0 -4
- data/spec/integration/wireless/v1/usage_record_spec.rb +0 -1
- data/spec/jwt/access_token_spec.rb +9 -1
- data/spec/rest/client_spec.rb +194 -22
- data/spec/spec_helper.rb +1 -1
- data/spec/twiml/voice_response_spec.rb +1 -1
- data/spec/util/configuration_spec.rb +12 -0
- data/twilio-ruby.gemspec +11 -5
- metadata +353 -79
- data/lib/twilio-ruby/rest/authy.rb +0 -55
- data/lib/twilio-ruby/rest/authy/v1.rb +0 -59
- data/lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb +0 -412
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/export_assistant.rb +0 -222
- data/lib/twilio-ruby/rest/conversations/v1/webhook.rb +0 -272
- data/lib/twilio-ruby/rest/messaging/v1/session.rb +0 -513
- data/lib/twilio-ruby/rest/messaging/v1/session/message.rb +0 -439
- data/lib/twilio-ruby/rest/messaging/v1/session/participant.rb +0 -458
- data/lib/twilio-ruby/rest/messaging/v1/session/webhook.rb +0 -444
- data/lib/twilio-ruby/rest/messaging/v1/webhook.rb +0 -299
- data/lib/twilio-ruby/rest/preview/acc_security.rb +0 -43
- data/lib/twilio-ruby/rest/preview/acc_security/service/verification.rb +0 -185
- data/lib/twilio-ruby/rest/preview/acc_security/service/verification_check.rb +0 -182
- data/lib/twilio-ruby/rest/preview/trusted_comms/branded_call.rb +0 -248
- data/lib/twilio-ruby/rest/preview/trusted_comms/business/insights/success_rate.rb +0 -264
- data/lib/twilio-ruby/rest/preview/trusted_comms/device.rb +0 -146
- data/lib/twilio-ruby/rest/preview/trusted_comms/phone_call.rb +0 -347
- data/lib/twilio-ruby/rest/trunking/v1/trunk/terminating_sip_domain.rb +0 -418
- data/spec/integration/authy/v1/service/entity/factor/challenge_spec.rb +0 -267
- data/spec/integration/authy/v1/service/entity/factor_spec.rb +0 -273
- data/spec/integration/authy/v1/service/entity_spec.rb +0 -201
- data/spec/integration/authy/v1/service_spec.rb +0 -227
- data/spec/integration/autopilot/v1/assistant/export_assistant_spec.rb +0 -49
- data/spec/integration/messaging/v1/session/message_spec.rb +0 -238
- data/spec/integration/messaging/v1/session/participant_spec.rb +0 -256
- data/spec/integration/messaging/v1/session/webhook_spec.rb +0 -300
- data/spec/integration/messaging/v1/session_spec.rb +0 -227
- data/spec/integration/messaging/v1/webhook_spec.rb +0 -94
- data/spec/integration/preview/acc_security/service/verification_check_spec.rb +0 -52
- data/spec/integration/preview/acc_security/service/verification_spec.rb +0 -52
- data/spec/integration/preview/acc_security/service_spec.rb +0 -185
- data/spec/integration/preview/trusted_comms/branded_call_spec.rb +0 -59
- data/spec/integration/preview/trusted_comms/business/insights/success_rate_spec.rb +0 -58
- data/spec/integration/preview/trusted_comms/business_spec.rb +0 -46
- data/spec/integration/preview/trusted_comms/device_spec.rb +0 -45
- data/spec/integration/preview/trusted_comms/phone_call_spec.rb +0 -59
- data/spec/integration/trunking/v1/trunk/terminating_sip_domain_spec.rb +0 -231
@@ -18,8 +18,8 @@ module Twilio
|
|
18
18
|
##
|
19
19
|
# Initialize the SyncListItemList
|
20
20
|
# @param [Version] version Version that contains the resource
|
21
|
-
# @param [String] service_sid The SID of the
|
22
|
-
# Service
|
21
|
+
# @param [String] service_sid The SID of the {Sync
|
22
|
+
# Service}[https://www.twilio.com/docs/sync/api/service] the resource is
|
23
23
|
# associated with.
|
24
24
|
# @param [String] list_sid The SID of the Sync List that contains the List Item.
|
25
25
|
# @return [SyncListItemList] SyncListItemList
|
@@ -32,10 +32,9 @@ module Twilio
|
|
32
32
|
end
|
33
33
|
|
34
34
|
##
|
35
|
-
#
|
36
|
-
# Request is executed immediately.
|
35
|
+
# Create the SyncListItemInstance
|
37
36
|
# @param [Hash] data A JSON string that represents an arbitrary, schema-less
|
38
|
-
# object that the List Item stores. Can be up to
|
37
|
+
# object that the List Item stores. Can be up to 16 KiB in length.
|
39
38
|
# @param [String] ttl An alias for `item_ttl`. If both parameters are provided,
|
40
39
|
# this value is ignored.
|
41
40
|
# @param [String] item_ttl How long, in seconds, before the List Item expires
|
@@ -49,7 +48,7 @@ module Twilio
|
|
49
48
|
# List does not expire. The Sync List will be deleted automatically after it
|
50
49
|
# expires, but there can be a delay between the expiration time and the
|
51
50
|
# resources's deletion.
|
52
|
-
# @return [SyncListItemInstance]
|
51
|
+
# @return [SyncListItemInstance] Created SyncListItemInstance
|
53
52
|
def create(data: nil, ttl: :unset, item_ttl: :unset, collection_ttl: :unset)
|
54
53
|
data = Twilio::Values.of({
|
55
54
|
'Data' => Twilio.serialize_object(data),
|
@@ -58,11 +57,7 @@ module Twilio
|
|
58
57
|
'CollectionTtl' => collection_ttl,
|
59
58
|
})
|
60
59
|
|
61
|
-
payload = @version.create(
|
62
|
-
'POST',
|
63
|
-
@uri,
|
64
|
-
data: data
|
65
|
-
)
|
60
|
+
payload = @version.create('POST', @uri, data: data)
|
66
61
|
|
67
62
|
SyncListItemInstance.new(
|
68
63
|
@version,
|
@@ -163,11 +158,9 @@ module Twilio
|
|
163
158
|
'Page' => page_number,
|
164
159
|
'PageSize' => page_size,
|
165
160
|
})
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
params
|
170
|
-
)
|
161
|
+
|
162
|
+
response = @version.page('GET', @uri, params: params)
|
163
|
+
|
171
164
|
SyncListItemPage.new(@version, response, @solution)
|
172
165
|
end
|
173
166
|
|
@@ -233,8 +226,8 @@ module Twilio
|
|
233
226
|
##
|
234
227
|
# Initialize the SyncListItemContext
|
235
228
|
# @param [Version] version Version that contains the resource
|
236
|
-
# @param [String] service_sid The SID of the
|
237
|
-
# Service
|
229
|
+
# @param [String] service_sid The SID of the {Sync
|
230
|
+
# Service}[https://www.twilio.com/docs/sync/api/service] with the Sync List Item
|
238
231
|
# resource to fetch.
|
239
232
|
# @param [String] list_sid The SID of the Sync List with the Sync List Item
|
240
233
|
# resource to fetch. Can be the Sync List resource's `sid` or its `unique_name`.
|
@@ -249,16 +242,10 @@ module Twilio
|
|
249
242
|
end
|
250
243
|
|
251
244
|
##
|
252
|
-
# Fetch
|
245
|
+
# Fetch the SyncListItemInstance
|
253
246
|
# @return [SyncListItemInstance] Fetched SyncListItemInstance
|
254
247
|
def fetch
|
255
|
-
|
256
|
-
|
257
|
-
payload = @version.fetch(
|
258
|
-
'GET',
|
259
|
-
@uri,
|
260
|
-
params,
|
261
|
-
)
|
248
|
+
payload = @version.fetch('GET', @uri)
|
262
249
|
|
263
250
|
SyncListItemInstance.new(
|
264
251
|
@version,
|
@@ -270,16 +257,19 @@ module Twilio
|
|
270
257
|
end
|
271
258
|
|
272
259
|
##
|
273
|
-
#
|
260
|
+
# Delete the SyncListItemInstance
|
261
|
+
# @param [String] if_match The If-Match HTTP request header
|
274
262
|
# @return [Boolean] true if delete succeeds, false otherwise
|
275
|
-
def delete
|
276
|
-
|
263
|
+
def delete(if_match: :unset)
|
264
|
+
headers = Twilio::Values.of({'If-Match' => if_match, })
|
265
|
+
|
266
|
+
@version.delete('DELETE', @uri, headers: headers)
|
277
267
|
end
|
278
268
|
|
279
269
|
##
|
280
270
|
# Update the SyncListItemInstance
|
281
271
|
# @param [Hash] data A JSON string that represents an arbitrary, schema-less
|
282
|
-
# object that the List Item stores. Can be up to
|
272
|
+
# object that the List Item stores. Can be up to 16 KiB in length.
|
283
273
|
# @param [String] ttl An alias for `item_ttl`. If both parameters are provided,
|
284
274
|
# this value is ignored.
|
285
275
|
# @param [String] item_ttl How long, in seconds, before the List Item expires
|
@@ -293,20 +283,18 @@ module Twilio
|
|
293
283
|
# List does not expire. The Sync List will be deleted automatically after it
|
294
284
|
# expires, but there can be a delay between the expiration time and the
|
295
285
|
# resources's deletion.
|
286
|
+
# @param [String] if_match The If-Match HTTP request header
|
296
287
|
# @return [SyncListItemInstance] Updated SyncListItemInstance
|
297
|
-
def update(data: :unset, ttl: :unset, item_ttl: :unset, collection_ttl: :unset)
|
288
|
+
def update(data: :unset, ttl: :unset, item_ttl: :unset, collection_ttl: :unset, if_match: :unset)
|
298
289
|
data = Twilio::Values.of({
|
299
290
|
'Data' => Twilio.serialize_object(data),
|
300
291
|
'Ttl' => ttl,
|
301
292
|
'ItemTtl' => item_ttl,
|
302
293
|
'CollectionTtl' => collection_ttl,
|
303
294
|
})
|
295
|
+
headers = Twilio::Values.of({'If-Match' => if_match, })
|
304
296
|
|
305
|
-
payload = @version.update(
|
306
|
-
'POST',
|
307
|
-
@uri,
|
308
|
-
data: data,
|
309
|
-
)
|
297
|
+
payload = @version.update('POST', @uri, data: data, headers: headers)
|
310
298
|
|
311
299
|
SyncListItemInstance.new(
|
312
300
|
@version,
|
@@ -339,8 +327,8 @@ module Twilio
|
|
339
327
|
# Initialize the SyncListItemInstance
|
340
328
|
# @param [Version] version Version that contains the resource
|
341
329
|
# @param [Hash] payload payload that contains response from Twilio
|
342
|
-
# @param [String] service_sid The SID of the
|
343
|
-
# Service
|
330
|
+
# @param [String] service_sid The SID of the {Sync
|
331
|
+
# Service}[https://www.twilio.com/docs/sync/api/service] the resource is
|
344
332
|
# associated with.
|
345
333
|
# @param [String] list_sid The SID of the Sync List that contains the List Item.
|
346
334
|
# @param [String] index The index of the Sync List Item resource to fetch.
|
@@ -455,23 +443,24 @@ module Twilio
|
|
455
443
|
end
|
456
444
|
|
457
445
|
##
|
458
|
-
# Fetch
|
446
|
+
# Fetch the SyncListItemInstance
|
459
447
|
# @return [SyncListItemInstance] Fetched SyncListItemInstance
|
460
448
|
def fetch
|
461
449
|
context.fetch
|
462
450
|
end
|
463
451
|
|
464
452
|
##
|
465
|
-
#
|
453
|
+
# Delete the SyncListItemInstance
|
454
|
+
# @param [String] if_match The If-Match HTTP request header
|
466
455
|
# @return [Boolean] true if delete succeeds, false otherwise
|
467
|
-
def delete
|
468
|
-
context.delete
|
456
|
+
def delete(if_match: :unset)
|
457
|
+
context.delete(if_match: if_match, )
|
469
458
|
end
|
470
459
|
|
471
460
|
##
|
472
461
|
# Update the SyncListItemInstance
|
473
462
|
# @param [Hash] data A JSON string that represents an arbitrary, schema-less
|
474
|
-
# object that the List Item stores. Can be up to
|
463
|
+
# object that the List Item stores. Can be up to 16 KiB in length.
|
475
464
|
# @param [String] ttl An alias for `item_ttl`. If both parameters are provided,
|
476
465
|
# this value is ignored.
|
477
466
|
# @param [String] item_ttl How long, in seconds, before the List Item expires
|
@@ -485,9 +474,16 @@ module Twilio
|
|
485
474
|
# List does not expire. The Sync List will be deleted automatically after it
|
486
475
|
# expires, but there can be a delay between the expiration time and the
|
487
476
|
# resources's deletion.
|
477
|
+
# @param [String] if_match The If-Match HTTP request header
|
488
478
|
# @return [SyncListItemInstance] Updated SyncListItemInstance
|
489
|
-
def update(data: :unset, ttl: :unset, item_ttl: :unset, collection_ttl: :unset)
|
490
|
-
context.update(
|
479
|
+
def update(data: :unset, ttl: :unset, item_ttl: :unset, collection_ttl: :unset, if_match: :unset)
|
480
|
+
context.update(
|
481
|
+
data: data,
|
482
|
+
ttl: ttl,
|
483
|
+
item_ttl: item_ttl,
|
484
|
+
collection_ttl: collection_ttl,
|
485
|
+
if_match: if_match,
|
486
|
+
)
|
491
487
|
end
|
492
488
|
|
493
489
|
##
|
@@ -18,8 +18,8 @@ module Twilio
|
|
18
18
|
##
|
19
19
|
# Initialize the SyncListPermissionList
|
20
20
|
# @param [Version] version Version that contains the resource
|
21
|
-
# @param [String] service_sid The SID of the
|
22
|
-
# Service
|
21
|
+
# @param [String] service_sid The SID of the {Sync
|
22
|
+
# Service}[https://www.twilio.com/docs/sync/api/service] the resource is
|
23
23
|
# associated with.
|
24
24
|
# @param [String] list_sid The SID of the Sync List to which the Permission
|
25
25
|
# applies.
|
@@ -93,11 +93,9 @@ module Twilio
|
|
93
93
|
'Page' => page_number,
|
94
94
|
'PageSize' => page_size,
|
95
95
|
})
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
params
|
100
|
-
)
|
96
|
+
|
97
|
+
response = @version.page('GET', @uri, params: params)
|
98
|
+
|
101
99
|
SyncListPermissionPage.new(@version, response, @solution)
|
102
100
|
end
|
103
101
|
|
@@ -163,8 +161,8 @@ module Twilio
|
|
163
161
|
##
|
164
162
|
# Initialize the SyncListPermissionContext
|
165
163
|
# @param [Version] version Version that contains the resource
|
166
|
-
# @param [String] service_sid The SID of the
|
167
|
-
# Service
|
164
|
+
# @param [String] service_sid The SID of the {Sync
|
165
|
+
# Service}[https://www.twilio.com/docs/sync/api/service] with the Sync List
|
168
166
|
# Permission resource to fetch.
|
169
167
|
# @param [String] list_sid The SID of the Sync List with the Sync List Permission
|
170
168
|
# resource to fetch. Can be the Sync List resource's `sid` or its `unique_name`.
|
@@ -180,16 +178,10 @@ module Twilio
|
|
180
178
|
end
|
181
179
|
|
182
180
|
##
|
183
|
-
# Fetch
|
181
|
+
# Fetch the SyncListPermissionInstance
|
184
182
|
# @return [SyncListPermissionInstance] Fetched SyncListPermissionInstance
|
185
183
|
def fetch
|
186
|
-
|
187
|
-
|
188
|
-
payload = @version.fetch(
|
189
|
-
'GET',
|
190
|
-
@uri,
|
191
|
-
params,
|
192
|
-
)
|
184
|
+
payload = @version.fetch('GET', @uri)
|
193
185
|
|
194
186
|
SyncListPermissionInstance.new(
|
195
187
|
@version,
|
@@ -201,10 +193,10 @@ module Twilio
|
|
201
193
|
end
|
202
194
|
|
203
195
|
##
|
204
|
-
#
|
196
|
+
# Delete the SyncListPermissionInstance
|
205
197
|
# @return [Boolean] true if delete succeeds, false otherwise
|
206
198
|
def delete
|
207
|
-
|
199
|
+
@version.delete('DELETE', @uri)
|
208
200
|
end
|
209
201
|
|
210
202
|
##
|
@@ -219,11 +211,7 @@ module Twilio
|
|
219
211
|
def update(read: nil, write: nil, manage: nil)
|
220
212
|
data = Twilio::Values.of({'Read' => read, 'Write' => write, 'Manage' => manage, })
|
221
213
|
|
222
|
-
payload = @version.update(
|
223
|
-
'POST',
|
224
|
-
@uri,
|
225
|
-
data: data,
|
226
|
-
)
|
214
|
+
payload = @version.update('POST', @uri, data: data)
|
227
215
|
|
228
216
|
SyncListPermissionInstance.new(
|
229
217
|
@version,
|
@@ -256,8 +244,8 @@ module Twilio
|
|
256
244
|
# Initialize the SyncListPermissionInstance
|
257
245
|
# @param [Version] version Version that contains the resource
|
258
246
|
# @param [Hash] payload payload that contains response from Twilio
|
259
|
-
# @param [String] service_sid The SID of the
|
260
|
-
# Service
|
247
|
+
# @param [String] service_sid The SID of the {Sync
|
248
|
+
# Service}[https://www.twilio.com/docs/sync/api/service] the resource is
|
261
249
|
# associated with.
|
262
250
|
# @param [String] list_sid The SID of the Sync List to which the Permission
|
263
251
|
# applies.
|
@@ -353,14 +341,14 @@ module Twilio
|
|
353
341
|
end
|
354
342
|
|
355
343
|
##
|
356
|
-
# Fetch
|
344
|
+
# Fetch the SyncListPermissionInstance
|
357
345
|
# @return [SyncListPermissionInstance] Fetched SyncListPermissionInstance
|
358
346
|
def fetch
|
359
347
|
context.fetch
|
360
348
|
end
|
361
349
|
|
362
350
|
##
|
363
|
-
#
|
351
|
+
# Delete the SyncListPermissionInstance
|
364
352
|
# @return [Boolean] true if delete succeeds, false otherwise
|
365
353
|
def delete
|
366
354
|
context.delete
|
@@ -17,8 +17,8 @@ module Twilio
|
|
17
17
|
##
|
18
18
|
# Initialize the SyncMapList
|
19
19
|
# @param [Version] version Version that contains the resource
|
20
|
-
# @param [String] service_sid The SID of the
|
21
|
-
# Service
|
20
|
+
# @param [String] service_sid The SID of the {Sync
|
21
|
+
# Service}[https://www.twilio.com/docs/sync/api/service] the resource is
|
22
22
|
# associated with.
|
23
23
|
# @return [SyncMapList] SyncMapList
|
24
24
|
def initialize(version, service_sid: nil)
|
@@ -30,8 +30,7 @@ module Twilio
|
|
30
30
|
end
|
31
31
|
|
32
32
|
##
|
33
|
-
#
|
34
|
-
# Request is executed immediately.
|
33
|
+
# Create the SyncMapInstance
|
35
34
|
# @param [String] unique_name An application-defined string that uniquely
|
36
35
|
# identifies the resource. It can be used as an alternative to the `sid` in the
|
37
36
|
# URL path to address the resource.
|
@@ -42,7 +41,7 @@ module Twilio
|
|
42
41
|
# The default value is `0`, which means the Sync Map does not expire. The Sync Map
|
43
42
|
# will be deleted automatically after it expires, but there can be a delay between
|
44
43
|
# the expiration time and the resources's deletion.
|
45
|
-
# @return [SyncMapInstance]
|
44
|
+
# @return [SyncMapInstance] Created SyncMapInstance
|
46
45
|
def create(unique_name: :unset, ttl: :unset, collection_ttl: :unset)
|
47
46
|
data = Twilio::Values.of({
|
48
47
|
'UniqueName' => unique_name,
|
@@ -50,11 +49,7 @@ module Twilio
|
|
50
49
|
'CollectionTtl' => collection_ttl,
|
51
50
|
})
|
52
51
|
|
53
|
-
payload = @version.create(
|
54
|
-
'POST',
|
55
|
-
@uri,
|
56
|
-
data: data
|
57
|
-
)
|
52
|
+
payload = @version.create('POST', @uri, data: data)
|
58
53
|
|
59
54
|
SyncMapInstance.new(@version, payload, service_sid: @solution[:service_sid], )
|
60
55
|
end
|
@@ -120,11 +115,9 @@ module Twilio
|
|
120
115
|
'Page' => page_number,
|
121
116
|
'PageSize' => page_size,
|
122
117
|
})
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
params
|
127
|
-
)
|
118
|
+
|
119
|
+
response = @version.page('GET', @uri, params: params)
|
120
|
+
|
128
121
|
SyncMapPage.new(@version, response, @solution)
|
129
122
|
end
|
130
123
|
|
@@ -185,10 +178,11 @@ module Twilio
|
|
185
178
|
##
|
186
179
|
# Initialize the SyncMapContext
|
187
180
|
# @param [Version] version Version that contains the resource
|
188
|
-
# @param [String] service_sid The SID of the
|
189
|
-
# Service
|
181
|
+
# @param [String] service_sid The SID of the {Sync
|
182
|
+
# Service}[https://www.twilio.com/docs/sync/api/service] with the Sync Map
|
190
183
|
# resource to fetch.
|
191
|
-
# @param [String] sid The SID of the Sync Map resource to fetch.
|
184
|
+
# @param [String] sid The SID of the Sync Map resource to fetch. Can be the Sync
|
185
|
+
# Map's `sid` or its `unique_name`.
|
192
186
|
# @return [SyncMapContext] SyncMapContext
|
193
187
|
def initialize(version, service_sid, sid)
|
194
188
|
super(version)
|
@@ -203,25 +197,19 @@ module Twilio
|
|
203
197
|
end
|
204
198
|
|
205
199
|
##
|
206
|
-
# Fetch
|
200
|
+
# Fetch the SyncMapInstance
|
207
201
|
# @return [SyncMapInstance] Fetched SyncMapInstance
|
208
202
|
def fetch
|
209
|
-
|
210
|
-
|
211
|
-
payload = @version.fetch(
|
212
|
-
'GET',
|
213
|
-
@uri,
|
214
|
-
params,
|
215
|
-
)
|
203
|
+
payload = @version.fetch('GET', @uri)
|
216
204
|
|
217
205
|
SyncMapInstance.new(@version, payload, service_sid: @solution[:service_sid], sid: @solution[:sid], )
|
218
206
|
end
|
219
207
|
|
220
208
|
##
|
221
|
-
#
|
209
|
+
# Delete the SyncMapInstance
|
222
210
|
# @return [Boolean] true if delete succeeds, false otherwise
|
223
211
|
def delete
|
224
|
-
|
212
|
+
@version.delete('DELETE', @uri)
|
225
213
|
end
|
226
214
|
|
227
215
|
##
|
@@ -237,11 +225,7 @@ module Twilio
|
|
237
225
|
def update(ttl: :unset, collection_ttl: :unset)
|
238
226
|
data = Twilio::Values.of({'Ttl' => ttl, 'CollectionTtl' => collection_ttl, })
|
239
227
|
|
240
|
-
payload = @version.update(
|
241
|
-
'POST',
|
242
|
-
@uri,
|
243
|
-
data: data,
|
244
|
-
)
|
228
|
+
payload = @version.update('POST', @uri, data: data)
|
245
229
|
|
246
230
|
SyncMapInstance.new(@version, payload, service_sid: @solution[:service_sid], sid: @solution[:sid], )
|
247
231
|
end
|
@@ -312,10 +296,11 @@ module Twilio
|
|
312
296
|
# Initialize the SyncMapInstance
|
313
297
|
# @param [Version] version Version that contains the resource
|
314
298
|
# @param [Hash] payload payload that contains response from Twilio
|
315
|
-
# @param [String] service_sid The SID of the
|
316
|
-
# Service
|
299
|
+
# @param [String] service_sid The SID of the {Sync
|
300
|
+
# Service}[https://www.twilio.com/docs/sync/api/service] the resource is
|
317
301
|
# associated with.
|
318
|
-
# @param [String] sid The SID of the Sync Map resource to fetch.
|
302
|
+
# @param [String] sid The SID of the Sync Map resource to fetch. Can be the Sync
|
303
|
+
# Map's `sid` or its `unique_name`.
|
319
304
|
# @return [SyncMapInstance] SyncMapInstance
|
320
305
|
def initialize(version, payload, service_sid: nil, sid: nil)
|
321
306
|
super(version)
|
@@ -418,14 +403,14 @@ module Twilio
|
|
418
403
|
end
|
419
404
|
|
420
405
|
##
|
421
|
-
# Fetch
|
406
|
+
# Fetch the SyncMapInstance
|
422
407
|
# @return [SyncMapInstance] Fetched SyncMapInstance
|
423
408
|
def fetch
|
424
409
|
context.fetch
|
425
410
|
end
|
426
411
|
|
427
412
|
##
|
428
|
-
#
|
413
|
+
# Delete the SyncMapInstance
|
429
414
|
# @return [Boolean] true if delete succeeds, false otherwise
|
430
415
|
def delete
|
431
416
|
context.delete
|
@@ -18,8 +18,8 @@ module Twilio
|
|
18
18
|
##
|
19
19
|
# Initialize the SyncMapItemList
|
20
20
|
# @param [Version] version Version that contains the resource
|
21
|
-
# @param [String] service_sid The SID of the
|
22
|
-
# Service
|
21
|
+
# @param [String] service_sid The SID of the {Sync
|
22
|
+
# Service}[https://www.twilio.com/docs/sync/api/service] the resource is
|
23
23
|
# associated with.
|
24
24
|
# @param [String] map_sid The SID of the Sync Map that contains the Map Item.
|
25
25
|
# @return [SyncMapItemList] SyncMapItemList
|
@@ -32,12 +32,11 @@ module Twilio
|
|
32
32
|
end
|
33
33
|
|
34
34
|
##
|
35
|
-
#
|
36
|
-
# Request is executed immediately.
|
35
|
+
# Create the SyncMapItemInstance
|
37
36
|
# @param [String] key The unique, user-defined key for the Map Item. Can be up to
|
38
37
|
# 320 characters long.
|
39
38
|
# @param [Hash] data A JSON string that represents an arbitrary, schema-less
|
40
|
-
# object that the Map Item stores. Can be up to
|
39
|
+
# object that the Map Item stores. Can be up to 16 KiB in length.
|
41
40
|
# @param [String] ttl An alias for `item_ttl`. If both parameters are provided,
|
42
41
|
# this value is ignored.
|
43
42
|
# @param [String] item_ttl How long, in seconds, before the Map Item expires
|
@@ -51,7 +50,7 @@ module Twilio
|
|
51
50
|
# Map does not expire. The Sync Map will be deleted automatically after it
|
52
51
|
# expires, but there can be a delay between the expiration time and the
|
53
52
|
# resources's deletion.
|
54
|
-
# @return [SyncMapItemInstance]
|
53
|
+
# @return [SyncMapItemInstance] Created SyncMapItemInstance
|
55
54
|
def create(key: nil, data: nil, ttl: :unset, item_ttl: :unset, collection_ttl: :unset)
|
56
55
|
data = Twilio::Values.of({
|
57
56
|
'Key' => key,
|
@@ -61,11 +60,7 @@ module Twilio
|
|
61
60
|
'CollectionTtl' => collection_ttl,
|
62
61
|
})
|
63
62
|
|
64
|
-
payload = @version.create(
|
65
|
-
'POST',
|
66
|
-
@uri,
|
67
|
-
data: data
|
68
|
-
)
|
63
|
+
payload = @version.create('POST', @uri, data: data)
|
69
64
|
|
70
65
|
SyncMapItemInstance.new(
|
71
66
|
@version,
|
@@ -81,8 +76,8 @@ module Twilio
|
|
81
76
|
# memory before returning.
|
82
77
|
# @param [sync_map_item.QueryResultOrder] order How to order the Map Items
|
83
78
|
# returned by their `key` value. Can be: `asc` (ascending) or `desc` (descending)
|
84
|
-
# and the default is ascending. Map Items are
|
85
|
-
# lexicographically
|
79
|
+
# and the default is ascending. Map Items are {ordered
|
80
|
+
# lexicographically}[https://en.wikipedia.org/wiki/Lexicographical_order] by Item
|
86
81
|
# key.
|
87
82
|
# @param [String] from The `key` of the first Sync Map Item resource to read. See
|
88
83
|
# also `bounds`.
|
@@ -107,8 +102,8 @@ module Twilio
|
|
107
102
|
# is reached.
|
108
103
|
# @param [sync_map_item.QueryResultOrder] order How to order the Map Items
|
109
104
|
# returned by their `key` value. Can be: `asc` (ascending) or `desc` (descending)
|
110
|
-
# and the default is ascending. Map Items are
|
111
|
-
# lexicographically
|
105
|
+
# and the default is ascending. Map Items are {ordered
|
106
|
+
# lexicographically}[https://en.wikipedia.org/wiki/Lexicographical_order] by Item
|
112
107
|
# key.
|
113
108
|
# @param [String] from The `key` of the first Sync Map Item resource to read. See
|
114
109
|
# also `bounds`.
|
@@ -150,8 +145,8 @@ module Twilio
|
|
150
145
|
# Request is executed immediately.
|
151
146
|
# @param [sync_map_item.QueryResultOrder] order How to order the Map Items
|
152
147
|
# returned by their `key` value. Can be: `asc` (ascending) or `desc` (descending)
|
153
|
-
# and the default is ascending. Map Items are
|
154
|
-
# lexicographically
|
148
|
+
# and the default is ascending. Map Items are {ordered
|
149
|
+
# lexicographically}[https://en.wikipedia.org/wiki/Lexicographical_order] by Item
|
155
150
|
# key.
|
156
151
|
# @param [String] from The `key` of the first Sync Map Item resource to read. See
|
157
152
|
# also `bounds`.
|
@@ -172,11 +167,9 @@ module Twilio
|
|
172
167
|
'Page' => page_number,
|
173
168
|
'PageSize' => page_size,
|
174
169
|
})
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
params
|
179
|
-
)
|
170
|
+
|
171
|
+
response = @version.page('GET', @uri, params: params)
|
172
|
+
|
180
173
|
SyncMapItemPage.new(@version, response, @solution)
|
181
174
|
end
|
182
175
|
|
@@ -242,11 +235,11 @@ module Twilio
|
|
242
235
|
##
|
243
236
|
# Initialize the SyncMapItemContext
|
244
237
|
# @param [Version] version Version that contains the resource
|
245
|
-
# @param [String] service_sid The SID of the
|
246
|
-
# Service
|
238
|
+
# @param [String] service_sid The SID of the {Sync
|
239
|
+
# Service}[https://www.twilio.com/docs/sync/api/service] with the Sync Map Item
|
247
240
|
# resource to fetch.
|
248
241
|
# @param [String] map_sid The SID of the Sync Map with the Sync Map Item resource
|
249
|
-
# to fetch. Can be the Sync Map's `sid` or its `unique_name`.
|
242
|
+
# to fetch. Can be the Sync Map resource's `sid` or its `unique_name`.
|
250
243
|
# @param [String] key The `key` value of the Sync Map Item resource to fetch.
|
251
244
|
# @return [SyncMapItemContext] SyncMapItemContext
|
252
245
|
def initialize(version, service_sid, map_sid, key)
|
@@ -258,16 +251,10 @@ module Twilio
|
|
258
251
|
end
|
259
252
|
|
260
253
|
##
|
261
|
-
# Fetch
|
254
|
+
# Fetch the SyncMapItemInstance
|
262
255
|
# @return [SyncMapItemInstance] Fetched SyncMapItemInstance
|
263
256
|
def fetch
|
264
|
-
|
265
|
-
|
266
|
-
payload = @version.fetch(
|
267
|
-
'GET',
|
268
|
-
@uri,
|
269
|
-
params,
|
270
|
-
)
|
257
|
+
payload = @version.fetch('GET', @uri)
|
271
258
|
|
272
259
|
SyncMapItemInstance.new(
|
273
260
|
@version,
|
@@ -279,16 +266,19 @@ module Twilio
|
|
279
266
|
end
|
280
267
|
|
281
268
|
##
|
282
|
-
#
|
269
|
+
# Delete the SyncMapItemInstance
|
270
|
+
# @param [String] if_match The If-Match HTTP request header
|
283
271
|
# @return [Boolean] true if delete succeeds, false otherwise
|
284
|
-
def delete
|
285
|
-
|
272
|
+
def delete(if_match: :unset)
|
273
|
+
headers = Twilio::Values.of({'If-Match' => if_match, })
|
274
|
+
|
275
|
+
@version.delete('DELETE', @uri, headers: headers)
|
286
276
|
end
|
287
277
|
|
288
278
|
##
|
289
279
|
# Update the SyncMapItemInstance
|
290
280
|
# @param [Hash] data A JSON string that represents an arbitrary, schema-less
|
291
|
-
# object that the Map Item stores. Can be up to
|
281
|
+
# object that the Map Item stores. Can be up to 16 KiB in length.
|
292
282
|
# @param [String] ttl An alias for `item_ttl`. If both parameters are provided,
|
293
283
|
# this value is ignored.
|
294
284
|
# @param [String] item_ttl How long, in seconds, before the Map Item expires
|
@@ -303,20 +293,18 @@ module Twilio
|
|
303
293
|
# or `ttl` is updated in the same request. The Sync Map will be deleted
|
304
294
|
# automatically after it expires, but there can be a delay between the expiration
|
305
295
|
# time and the resources's deletion.
|
296
|
+
# @param [String] if_match The If-Match HTTP request header
|
306
297
|
# @return [SyncMapItemInstance] Updated SyncMapItemInstance
|
307
|
-
def update(data: :unset, ttl: :unset, item_ttl: :unset, collection_ttl: :unset)
|
298
|
+
def update(data: :unset, ttl: :unset, item_ttl: :unset, collection_ttl: :unset, if_match: :unset)
|
308
299
|
data = Twilio::Values.of({
|
309
300
|
'Data' => Twilio.serialize_object(data),
|
310
301
|
'Ttl' => ttl,
|
311
302
|
'ItemTtl' => item_ttl,
|
312
303
|
'CollectionTtl' => collection_ttl,
|
313
304
|
})
|
305
|
+
headers = Twilio::Values.of({'If-Match' => if_match, })
|
314
306
|
|
315
|
-
payload = @version.update(
|
316
|
-
'POST',
|
317
|
-
@uri,
|
318
|
-
data: data,
|
319
|
-
)
|
307
|
+
payload = @version.update('POST', @uri, data: data, headers: headers)
|
320
308
|
|
321
309
|
SyncMapItemInstance.new(
|
322
310
|
@version,
|
@@ -349,8 +337,8 @@ module Twilio
|
|
349
337
|
# Initialize the SyncMapItemInstance
|
350
338
|
# @param [Version] version Version that contains the resource
|
351
339
|
# @param [Hash] payload payload that contains response from Twilio
|
352
|
-
# @param [String] service_sid The SID of the
|
353
|
-
# Service
|
340
|
+
# @param [String] service_sid The SID of the {Sync
|
341
|
+
# Service}[https://www.twilio.com/docs/sync/api/service] the resource is
|
354
342
|
# associated with.
|
355
343
|
# @param [String] map_sid The SID of the Sync Map that contains the Map Item.
|
356
344
|
# @param [String] key The `key` value of the Sync Map Item resource to fetch.
|
@@ -461,23 +449,24 @@ module Twilio
|
|
461
449
|
end
|
462
450
|
|
463
451
|
##
|
464
|
-
# Fetch
|
452
|
+
# Fetch the SyncMapItemInstance
|
465
453
|
# @return [SyncMapItemInstance] Fetched SyncMapItemInstance
|
466
454
|
def fetch
|
467
455
|
context.fetch
|
468
456
|
end
|
469
457
|
|
470
458
|
##
|
471
|
-
#
|
459
|
+
# Delete the SyncMapItemInstance
|
460
|
+
# @param [String] if_match The If-Match HTTP request header
|
472
461
|
# @return [Boolean] true if delete succeeds, false otherwise
|
473
|
-
def delete
|
474
|
-
context.delete
|
462
|
+
def delete(if_match: :unset)
|
463
|
+
context.delete(if_match: if_match, )
|
475
464
|
end
|
476
465
|
|
477
466
|
##
|
478
467
|
# Update the SyncMapItemInstance
|
479
468
|
# @param [Hash] data A JSON string that represents an arbitrary, schema-less
|
480
|
-
# object that the Map Item stores. Can be up to
|
469
|
+
# object that the Map Item stores. Can be up to 16 KiB in length.
|
481
470
|
# @param [String] ttl An alias for `item_ttl`. If both parameters are provided,
|
482
471
|
# this value is ignored.
|
483
472
|
# @param [String] item_ttl How long, in seconds, before the Map Item expires
|
@@ -492,9 +481,16 @@ module Twilio
|
|
492
481
|
# or `ttl` is updated in the same request. The Sync Map will be deleted
|
493
482
|
# automatically after it expires, but there can be a delay between the expiration
|
494
483
|
# time and the resources's deletion.
|
484
|
+
# @param [String] if_match The If-Match HTTP request header
|
495
485
|
# @return [SyncMapItemInstance] Updated SyncMapItemInstance
|
496
|
-
def update(data: :unset, ttl: :unset, item_ttl: :unset, collection_ttl: :unset)
|
497
|
-
context.update(
|
486
|
+
def update(data: :unset, ttl: :unset, item_ttl: :unset, collection_ttl: :unset, if_match: :unset)
|
487
|
+
context.update(
|
488
|
+
data: data,
|
489
|
+
ttl: ttl,
|
490
|
+
item_ttl: item_ttl,
|
491
|
+
collection_ttl: collection_ttl,
|
492
|
+
if_match: if_match,
|
493
|
+
)
|
498
494
|
end
|
499
495
|
|
500
496
|
##
|