twilio-ruby 5.39.2 → 5.40.3

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.
Files changed (164) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +1 -1
  3. data/CHANGES.md +107 -1
  4. data/CONTRIBUTING.md +2 -2
  5. data/ISSUE_TEMPLATE.md +5 -1
  6. data/PULL_REQUEST_TEMPLATE.md +1 -1
  7. data/README.md +4 -3
  8. data/lib/twilio-ruby/framework/version.rb +4 -8
  9. data/lib/twilio-ruby/rest/api/v2010/account/application.rb +6 -4
  10. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +12 -3
  11. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/machine_to_machine.rb +12 -3
  12. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +12 -3
  13. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/national.rb +12 -3
  14. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/shared_cost.rb +12 -3
  15. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +12 -3
  16. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/voip.rb +12 -3
  17. data/lib/twilio-ruby/rest/api/v2010/account/call.rb +2 -1
  18. data/lib/twilio-ruby/rest/api/v2010/account/call/payment.rb +85 -60
  19. data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +5 -2
  20. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +14 -0
  21. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +14 -0
  22. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +14 -0
  23. data/lib/twilio-ruby/rest/api/v2010/account/message.rb +8 -1
  24. data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +3 -1
  25. data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +2 -1
  26. data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb +8 -4
  27. data/lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb +11 -4
  28. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb +13 -6
  29. data/lib/twilio-ruby/rest/client.rb +7 -0
  30. data/lib/twilio-ruby/rest/conversations.rb +39 -3
  31. data/lib/twilio-ruby/rest/conversations/v1.rb +68 -5
  32. data/lib/twilio-ruby/rest/conversations/v1/configuration.rb +268 -0
  33. data/lib/twilio-ruby/rest/conversations/v1/configuration/webhook.rb +262 -0
  34. data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +21 -10
  35. data/lib/twilio-ruby/rest/conversations/v1/conversation/message.rb +13 -10
  36. data/lib/twilio-ruby/rest/conversations/v1/conversation/message/delivery_receipt.rb +34 -19
  37. data/lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb +48 -32
  38. data/lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb +14 -11
  39. data/lib/twilio-ruby/rest/conversations/v1/credential.rb +427 -0
  40. data/lib/twilio-ruby/rest/conversations/v1/role.rb +374 -0
  41. data/lib/twilio-ruby/rest/conversations/v1/service.rb +442 -0
  42. data/lib/twilio-ruby/rest/conversations/v1/service/binding.rb +388 -0
  43. data/lib/twilio-ruby/rest/conversations/v1/service/configuration.rb +271 -0
  44. data/lib/twilio-ruby/rest/conversations/v1/service/configuration/notification.rb +315 -0
  45. data/lib/twilio-ruby/rest/conversations/v1/service/conversation.rb +586 -0
  46. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message.rb +549 -0
  47. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message/delivery_receipt.rb +394 -0
  48. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/participant.rb +519 -0
  49. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/webhook.rb +457 -0
  50. data/lib/twilio-ruby/rest/conversations/v1/service/role.rb +395 -0
  51. data/lib/twilio-ruby/rest/conversations/v1/service/user.rb +419 -0
  52. data/lib/twilio-ruby/rest/conversations/v1/user.rb +398 -0
  53. data/lib/twilio-ruby/rest/events.rb +72 -0
  54. data/lib/twilio-ruby/rest/events/v1.rb +90 -0
  55. data/lib/twilio-ruby/rest/events/v1/event_type.rb +291 -0
  56. data/lib/twilio-ruby/rest/events/v1/schema.rb +226 -0
  57. data/lib/twilio-ruby/rest/events/v1/schema/schema_version.rb +290 -0
  58. data/lib/twilio-ruby/rest/events/v1/sink.rb +380 -0
  59. data/lib/twilio-ruby/rest/events/v1/sink/sink_test.rb +115 -0
  60. data/lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb +119 -0
  61. data/lib/twilio-ruby/rest/events/v1/subscription.rb +383 -0
  62. data/lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb +216 -0
  63. data/lib/twilio-ruby/rest/fax/v1/fax.rb +2 -1
  64. data/lib/twilio-ruby/rest/messaging.rb +6 -0
  65. data/lib/twilio-ruby/rest/messaging/v1.rb +7 -0
  66. data/lib/twilio-ruby/rest/messaging/v1/deactivation.rb +164 -0
  67. data/lib/twilio-ruby/rest/messaging/v1/service.rb +6 -3
  68. data/lib/twilio-ruby/rest/notify/v1/credential.rb +12 -6
  69. data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +10 -2
  70. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance.rb +3 -3
  71. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user.rb +16 -2
  72. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document.rb +18 -4
  73. data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document.rb +10 -5
  74. data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document/dependent_hosted_number_order.rb +6 -3
  75. data/lib/twilio-ruby/rest/preview/trusted_comms/business/insights.rb +1 -4
  76. data/lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb +3 -1
  77. data/lib/twilio-ruby/rest/proxy/v1/service/session.rb +45 -4
  78. data/lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb +14 -1
  79. data/lib/twilio-ruby/rest/serverless/v1/service.rb +13 -13
  80. data/lib/twilio-ruby/rest/serverless/v1/service/asset.rb +6 -6
  81. data/lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb +5 -5
  82. data/lib/twilio-ruby/rest/serverless/v1/service/build.rb +8 -8
  83. data/lib/twilio-ruby/rest/serverless/v1/service/environment.rb +6 -8
  84. data/lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb +8 -8
  85. data/lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb +14 -14
  86. data/lib/twilio-ruby/rest/serverless/v1/service/function.rb +4 -4
  87. data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb +7 -7
  88. data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version/function_version_content.rb +1 -1
  89. data/lib/twilio-ruby/rest/supersim/v1/fleet.rb +12 -11
  90. data/lib/twilio-ruby/rest/supersim/v1/sim.rb +17 -7
  91. data/lib/twilio-ruby/rest/supersim/v1/usage_record.rb +75 -9
  92. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +2 -1
  93. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +6 -2
  94. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +1 -4
  95. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +6 -2
  96. data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +38 -23
  97. data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +2 -1
  98. data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +2 -1
  99. data/lib/twilio-ruby/rest/trunking/v1/trunk/recording.rb +201 -0
  100. data/lib/twilio-ruby/rest/verify/v2/service.rb +21 -9
  101. data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb +10 -2
  102. data/lib/twilio-ruby/rest/verify/v2/service/verification.rb +7 -2
  103. data/lib/twilio-ruby/rest/video/v1/composition.rb +7 -3
  104. data/lib/twilio-ruby/rest/video/v1/composition_hook.rb +18 -9
  105. data/lib/twilio-ruby/rest/video/v1/room.rb +2 -1
  106. data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb +0 -6
  107. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions.rb +1 -4
  108. data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +2 -1
  109. data/lib/twilio-ruby/rest/wireless/v1/sim/data_session.rb +5 -19
  110. data/lib/twilio-ruby/version.rb +1 -1
  111. data/spec/framework/version_spec.rb +53 -0
  112. data/spec/holodeck/holodeck.rb +3 -3
  113. data/spec/integration/api/v2010/account/incoming_phone_number/local_spec.rb +35 -36
  114. data/spec/integration/api/v2010/account/incoming_phone_number/mobile_spec.rb +39 -40
  115. data/spec/integration/api/v2010/account/incoming_phone_number/toll_free_spec.rb +35 -36
  116. data/spec/integration/api/v2010/account/incoming_phone_number_spec.rb +25 -23
  117. data/spec/integration/api/v2010/account/message_spec.rb +37 -0
  118. data/spec/integration/bulkexports/v1/export/day_spec.rb +5 -5
  119. data/spec/integration/bulkexports/v1/export_configuration_spec.rb +4 -4
  120. data/spec/integration/bulkexports/v1/export_spec.rb +3 -3
  121. data/spec/integration/conversations/v1/{webhook_spec.rb → configuration/webhook_spec.rb} +12 -8
  122. data/spec/integration/conversations/v1/configuration_spec.rb +87 -0
  123. data/spec/integration/conversations/v1/conversation/message/delivery_receipt_spec.rb +4 -0
  124. data/spec/integration/conversations/v1/conversation/message_spec.rb +38 -0
  125. data/spec/integration/conversations/v1/conversation/participant_spec.rb +60 -4
  126. data/spec/integration/conversations/v1/conversation_spec.rb +35 -0
  127. data/spec/integration/conversations/v1/credential_spec.rb +219 -0
  128. data/spec/integration/conversations/v1/role_spec.rb +249 -0
  129. data/spec/integration/conversations/v1/service/binding_spec.rb +166 -0
  130. data/spec/integration/conversations/v1/service/configuration/notification_spec.rb +115 -0
  131. data/spec/integration/conversations/v1/service/configuration_spec.rb +87 -0
  132. data/spec/integration/conversations/v1/service/conversation/message/delivery_receipt_spec.rb +144 -0
  133. data/spec/integration/conversations/v1/service/conversation/message_spec.rb +429 -0
  134. data/spec/integration/conversations/v1/service/conversation/participant_spec.rb +407 -0
  135. data/spec/integration/conversations/v1/service/conversation/webhook_spec.rb +299 -0
  136. data/spec/integration/conversations/v1/service/conversation_spec.rb +289 -0
  137. data/spec/integration/conversations/v1/service/role_spec.rb +260 -0
  138. data/spec/integration/conversations/v1/service/user_spec.rb +230 -0
  139. data/spec/integration/conversations/v1/service_spec.rb +174 -0
  140. data/spec/integration/conversations/v1/user_spec.rb +220 -0
  141. data/spec/integration/events/v1/event_type_spec.rb +133 -0
  142. data/spec/integration/events/v1/schema/schema_version_spec.rb +126 -0
  143. data/spec/integration/events/v1/schema_spec.rb +46 -0
  144. data/spec/integration/events/v1/sink/sink_test_spec.rb +42 -0
  145. data/spec/integration/events/v1/sink/sink_validate_spec.rb +44 -0
  146. data/spec/integration/events/v1/sink_spec.rb +217 -0
  147. data/spec/integration/events/v1/subscription/subscribed_event_spec.rb +91 -0
  148. data/spec/integration/events/v1/subscription_spec.rb +243 -0
  149. data/spec/integration/messaging/v1/deactivation_spec.rb +40 -0
  150. data/spec/integration/numbers/v2/regulatory_compliance/end_user_spec.rb +27 -0
  151. data/spec/integration/numbers/v2/regulatory_compliance/supporting_document_spec.rb +27 -0
  152. data/spec/integration/studio/v1/flow/execution/execution_step_spec.rb +1 -0
  153. data/spec/integration/studio/v2/flow/execution/execution_step_spec.rb +1 -0
  154. data/spec/integration/supersim/v1/sim_spec.rb +23 -0
  155. data/spec/integration/supersim/v1/usage_record_spec.rb +463 -18
  156. data/spec/integration/trunking/v1/trunk/recording_spec.rb +79 -0
  157. data/spec/integration/trunking/v1/trunk_spec.rb +4 -0
  158. data/spec/integration/verify/v2/service/access_token_spec.rb +1 -1
  159. data/spec/integration/verify/v2/service/entity/challenge_spec.rb +8 -8
  160. data/spec/integration/video/v1/room_spec.rb +37 -0
  161. data/spec/integration/wireless/v1/sim/data_session_spec.rb +2 -2
  162. data/spec/spec_helper.rb +1 -1
  163. metadata +82 -5
  164. data/lib/twilio-ruby/rest/conversations/v1/webhook.rb +0 -262
@@ -30,7 +30,7 @@ module Twilio
30
30
  # Unlike stream(), this operation is eager and will load `limit` records into
31
31
  # memory before returning.
32
32
  # @param [sim.Status] status The status of the Sim resources to read. Can be
33
- # `new`, `active`, `inactive`, or `scheduled`.
33
+ # `new`, `ready`, `active`, `inactive`, or `scheduled`.
34
34
  # @param [String] fleet The SID or unique name of the Fleet to which a list of
35
35
  # Sims are assigned.
36
36
  # @param [String] iccid The
@@ -53,7 +53,7 @@ module Twilio
53
53
  # This operation lazily loads records as efficiently as possible until the limit
54
54
  # is reached.
55
55
  # @param [sim.Status] status The status of the Sim resources to read. Can be
56
- # `new`, `active`, `inactive`, or `scheduled`.
56
+ # `new`, `ready`, `active`, `inactive`, or `scheduled`.
57
57
  # @param [String] fleet The SID or unique name of the Fleet to which a list of
58
58
  # Sims are assigned.
59
59
  # @param [String] iccid The
@@ -93,7 +93,7 @@ module Twilio
93
93
  # Retrieve a single page of SimInstance records from the API.
94
94
  # Request is executed immediately.
95
95
  # @param [sim.Status] status The status of the Sim resources to read. Can be
96
- # `new`, `active`, `inactive`, or `scheduled`.
96
+ # `new`, `ready`, `active`, `inactive`, or `scheduled`.
97
97
  # @param [String] fleet The SID or unique name of the Fleet to which a list of
98
98
  # Sims are assigned.
99
99
  # @param [String] iccid The
@@ -201,7 +201,7 @@ module Twilio
201
201
  # identifies the resource. It can be used in place of the resource's `sid` in the
202
202
  # URL to address the resource.
203
203
  # @param [sim.StatusUpdate] status The new status of the resource. Can be:
204
- # `active` or `inactive`. See the [Super SIM Status
204
+ # `ready`, `active`, or `inactive`. See the [Super SIM Status
205
205
  # Values](https://www.twilio.com/docs/iot/supersim/api/sim-resource#status-values)
206
206
  # for more info.
207
207
  # @param [String] fleet The SID or unique name of the Fleet to which the SIM
@@ -210,14 +210,19 @@ module Twilio
210
210
  # after an asynchronous update has finished.
211
211
  # @param [String] callback_method The HTTP method we should use to call
212
212
  # `callback_url`. Can be: `GET` or `POST` and the default is POST.
213
+ # @param [String] account_sid The SID of the Account to which the Sim resource
214
+ # should belong. The Account SID can only be that of the requesting Account or
215
+ # that of a Subaccount of the requesting Account. Only valid when the Sim
216
+ # resource's status is new.
213
217
  # @return [SimInstance] Updated SimInstance
214
- def update(unique_name: :unset, status: :unset, fleet: :unset, callback_url: :unset, callback_method: :unset)
218
+ def update(unique_name: :unset, status: :unset, fleet: :unset, callback_url: :unset, callback_method: :unset, account_sid: :unset)
215
219
  data = Twilio::Values.of({
216
220
  'UniqueName' => unique_name,
217
221
  'Status' => status,
218
222
  'Fleet' => fleet,
219
223
  'CallbackUrl' => callback_url,
220
224
  'CallbackMethod' => callback_method,
225
+ 'AccountSid' => account_sid,
221
226
  })
222
227
 
223
228
  payload = @version.update('POST', @uri, data: data)
@@ -348,7 +353,7 @@ module Twilio
348
353
  # identifies the resource. It can be used in place of the resource's `sid` in the
349
354
  # URL to address the resource.
350
355
  # @param [sim.StatusUpdate] status The new status of the resource. Can be:
351
- # `active` or `inactive`. See the [Super SIM Status
356
+ # `ready`, `active`, or `inactive`. See the [Super SIM Status
352
357
  # Values](https://www.twilio.com/docs/iot/supersim/api/sim-resource#status-values)
353
358
  # for more info.
354
359
  # @param [String] fleet The SID or unique name of the Fleet to which the SIM
@@ -357,14 +362,19 @@ module Twilio
357
362
  # after an asynchronous update has finished.
358
363
  # @param [String] callback_method The HTTP method we should use to call
359
364
  # `callback_url`. Can be: `GET` or `POST` and the default is POST.
365
+ # @param [String] account_sid The SID of the Account to which the Sim resource
366
+ # should belong. The Account SID can only be that of the requesting Account or
367
+ # that of a Subaccount of the requesting Account. Only valid when the Sim
368
+ # resource's status is new.
360
369
  # @return [SimInstance] Updated SimInstance
361
- def update(unique_name: :unset, status: :unset, fleet: :unset, callback_url: :unset, callback_method: :unset)
370
+ def update(unique_name: :unset, status: :unset, fleet: :unset, callback_url: :unset, callback_method: :unset, account_sid: :unset)
362
371
  context.update(
363
372
  unique_name: unique_name,
364
373
  status: status,
365
374
  fleet: fleet,
366
375
  callback_url: callback_url,
367
376
  callback_method: callback_method,
377
+ account_sid: account_sid,
368
378
  )
369
379
  end
370
380
 
@@ -29,8 +29,19 @@ module Twilio
29
29
  # Lists UsageRecordInstance records from the API as a list.
30
30
  # Unlike stream(), this operation is eager and will load `limit` records into
31
31
  # memory before returning.
32
- # @param [String] sim SID of a Sim resource. Only show UsageRecords representing
33
- # usage incurred by this Super SIM.
32
+ # @param [String] sim SID or unique name of a Sim resource. Only show UsageRecords
33
+ # representing usage incurred by this Super SIM.
34
+ # @param [String] fleet SID or unique name of a Fleet resource. Only show
35
+ # UsageRecords representing usage for Super SIMs belonging to this Fleet resource
36
+ # at the time the usage occurred.
37
+ # @param [String] network SID of a Network resource. Only show UsageRecords
38
+ # representing usage on this network.
39
+ # @param [String] iso_country Alpha-2 ISO Country Code. Only show UsageRecords
40
+ # representing usage in this country.
41
+ # @param [usage_record.Group] group Dimension over which to aggregate usage
42
+ # records. Can be: `sim`, `fleet`, `network`, `isoCountry`. Default is to not
43
+ # aggregate across any of these dimensions, UsageRecords will be aggregated into
44
+ # the time buckets described by the `Granularity` parameter.
34
45
  # @param [usage_record.Granularity] granularity Time-based grouping that
35
46
  # UsageRecords should be aggregated by. Can be: `hour`, `day`, or `all`. Default
36
47
  # is `all`. `all` returns one UsageRecord that describes the usage for the entire
@@ -48,9 +59,13 @@ module Twilio
48
59
  # but a limit is defined, stream() will attempt to read the limit with the most
49
60
  # efficient page size, i.e. min(limit, 1000)
50
61
  # @return [Array] Array of up to limit results
51
- def list(sim: :unset, granularity: :unset, start_time: :unset, end_time: :unset, limit: nil, page_size: nil)
62
+ def list(sim: :unset, fleet: :unset, network: :unset, iso_country: :unset, group: :unset, granularity: :unset, start_time: :unset, end_time: :unset, limit: nil, page_size: nil)
52
63
  self.stream(
53
64
  sim: sim,
65
+ fleet: fleet,
66
+ network: network,
67
+ iso_country: iso_country,
68
+ group: group,
54
69
  granularity: granularity,
55
70
  start_time: start_time,
56
71
  end_time: end_time,
@@ -63,8 +78,19 @@ module Twilio
63
78
  # Streams UsageRecordInstance records from the API as an Enumerable.
64
79
  # This operation lazily loads records as efficiently as possible until the limit
65
80
  # is reached.
66
- # @param [String] sim SID of a Sim resource. Only show UsageRecords representing
67
- # usage incurred by this Super SIM.
81
+ # @param [String] sim SID or unique name of a Sim resource. Only show UsageRecords
82
+ # representing usage incurred by this Super SIM.
83
+ # @param [String] fleet SID or unique name of a Fleet resource. Only show
84
+ # UsageRecords representing usage for Super SIMs belonging to this Fleet resource
85
+ # at the time the usage occurred.
86
+ # @param [String] network SID of a Network resource. Only show UsageRecords
87
+ # representing usage on this network.
88
+ # @param [String] iso_country Alpha-2 ISO Country Code. Only show UsageRecords
89
+ # representing usage in this country.
90
+ # @param [usage_record.Group] group Dimension over which to aggregate usage
91
+ # records. Can be: `sim`, `fleet`, `network`, `isoCountry`. Default is to not
92
+ # aggregate across any of these dimensions, UsageRecords will be aggregated into
93
+ # the time buckets described by the `Granularity` parameter.
68
94
  # @param [usage_record.Granularity] granularity Time-based grouping that
69
95
  # UsageRecords should be aggregated by. Can be: `hour`, `day`, or `all`. Default
70
96
  # is `all`. `all` returns one UsageRecord that describes the usage for the entire
@@ -82,11 +108,15 @@ module Twilio
82
108
  # but a limit is defined, stream() will attempt to read the limit with the most
83
109
  # efficient page size, i.e. min(limit, 1000)
84
110
  # @return [Enumerable] Enumerable that will yield up to limit results
85
- def stream(sim: :unset, granularity: :unset, start_time: :unset, end_time: :unset, limit: nil, page_size: nil)
111
+ def stream(sim: :unset, fleet: :unset, network: :unset, iso_country: :unset, group: :unset, granularity: :unset, start_time: :unset, end_time: :unset, limit: nil, page_size: nil)
86
112
  limits = @version.read_limits(limit, page_size)
87
113
 
88
114
  page = self.page(
89
115
  sim: sim,
116
+ fleet: fleet,
117
+ network: network,
118
+ iso_country: iso_country,
119
+ group: group,
90
120
  granularity: granularity,
91
121
  start_time: start_time,
92
122
  end_time: end_time,
@@ -113,8 +143,19 @@ module Twilio
113
143
  ##
114
144
  # Retrieve a single page of UsageRecordInstance records from the API.
115
145
  # Request is executed immediately.
116
- # @param [String] sim SID of a Sim resource. Only show UsageRecords representing
117
- # usage incurred by this Super SIM.
146
+ # @param [String] sim SID or unique name of a Sim resource. Only show UsageRecords
147
+ # representing usage incurred by this Super SIM.
148
+ # @param [String] fleet SID or unique name of a Fleet resource. Only show
149
+ # UsageRecords representing usage for Super SIMs belonging to this Fleet resource
150
+ # at the time the usage occurred.
151
+ # @param [String] network SID of a Network resource. Only show UsageRecords
152
+ # representing usage on this network.
153
+ # @param [String] iso_country Alpha-2 ISO Country Code. Only show UsageRecords
154
+ # representing usage in this country.
155
+ # @param [usage_record.Group] group Dimension over which to aggregate usage
156
+ # records. Can be: `sim`, `fleet`, `network`, `isoCountry`. Default is to not
157
+ # aggregate across any of these dimensions, UsageRecords will be aggregated into
158
+ # the time buckets described by the `Granularity` parameter.
118
159
  # @param [usage_record.Granularity] granularity Time-based grouping that
119
160
  # UsageRecords should be aggregated by. Can be: `hour`, `day`, or `all`. Default
120
161
  # is `all`. `all` returns one UsageRecord that describes the usage for the entire
@@ -129,9 +170,13 @@ module Twilio
129
170
  # @param [Integer] page_number Page Number, this value is simply for client state
130
171
  # @param [Integer] page_size Number of records to return, defaults to 50
131
172
  # @return [Page] Page of UsageRecordInstance
132
- def page(sim: :unset, granularity: :unset, start_time: :unset, end_time: :unset, page_token: :unset, page_number: :unset, page_size: :unset)
173
+ def page(sim: :unset, fleet: :unset, network: :unset, iso_country: :unset, group: :unset, granularity: :unset, start_time: :unset, end_time: :unset, page_token: :unset, page_number: :unset, page_size: :unset)
133
174
  params = Twilio::Values.of({
134
175
  'Sim' => sim,
176
+ 'Fleet' => fleet,
177
+ 'Network' => network,
178
+ 'IsoCountry' => iso_country,
179
+ 'Group' => group,
135
180
  'Granularity' => granularity,
136
181
  'StartTime' => Twilio.serialize_iso8601_datetime(start_time),
137
182
  'EndTime' => Twilio.serialize_iso8601_datetime(end_time),
@@ -211,6 +256,9 @@ module Twilio
211
256
  @properties = {
212
257
  'account_sid' => payload['account_sid'],
213
258
  'sim_sid' => payload['sim_sid'],
259
+ 'network_sid' => payload['network_sid'],
260
+ 'fleet_sid' => payload['fleet_sid'],
261
+ 'iso_country' => payload['iso_country'],
214
262
  'period' => payload['period'],
215
263
  'data_upload' => payload['data_upload'].to_i,
216
264
  'data_download' => payload['data_download'].to_i,
@@ -230,6 +278,24 @@ module Twilio
230
278
  @properties['sim_sid']
231
279
  end
232
280
 
281
+ ##
282
+ # @return [String] SID of the Network resource on which the usage occurred.
283
+ def network_sid
284
+ @properties['network_sid']
285
+ end
286
+
287
+ ##
288
+ # @return [String] SID of the Fleet resource on which the usage occurred.
289
+ def fleet_sid
290
+ @properties['fleet_sid']
291
+ end
292
+
293
+ ##
294
+ # @return [String] Alpha-2 ISO Country Code of the country the usage occurred in.
295
+ def iso_country
296
+ @properties['iso_country']
297
+ end
298
+
233
299
  ##
234
300
  # @return [Hash] The time period for which the usage is reported.
235
301
  def period
@@ -140,7 +140,8 @@ module Twilio
140
140
  # `break`, and `email`.
141
141
  # @param [Boolean] available Whether the Worker should be eligible to receive a
142
142
  # Task when it occupies the Activity. A value of `true`, `1`, or `yes` specifies
143
- # the Activity is available. All other values specify that it is not.
143
+ # the Activity is available. All other values specify that it is not. The value
144
+ # cannot be changed after the Activity is created.
144
145
  # @return [ActivityInstance] Created ActivityInstance
145
146
  def create(friendly_name: nil, available: :unset)
146
147
  data = Twilio::Values.of({'FriendlyName' => friendly_name, 'Available' => available, })
@@ -305,7 +305,9 @@ module Twilio
305
305
  # should use to call `conference_recording_status_callback`. Can be: `GET` or
306
306
  # `POST` and defaults to `POST`.
307
307
  # @param [String] region The
308
- # [region](https://support.twilio.com/hc/en-us/articles/223132167-How-global-low-latency-routing-and-region-selection-work-for-conferences-and-Client-calls) where we should mix the recorded audio. Can be:`us1`, `ie1`, `de1`, `sg1`, `br1`, `au1`, or `jp1`.
308
+ # [region](https://support.twilio.com/hc/en-us/articles/223132167-How-global-low-latency-routing-and-region-selection-work-for-conferences-and-Client-calls)
309
+ # where we should mix the recorded audio. Can be:`us1`, `ie1`, `de1`, `sg1`,
310
+ # `br1`, `au1`, or `jp1`.
309
311
  # @param [String] sip_auth_username The SIP username used for authentication.
310
312
  # @param [String] sip_auth_password The SIP password for authentication.
311
313
  # @param [String] dequeue_status_callback_event The Call progress events sent via
@@ -643,7 +645,9 @@ module Twilio
643
645
  # should use to call `conference_recording_status_callback`. Can be: `GET` or
644
646
  # `POST` and defaults to `POST`.
645
647
  # @param [String] region The
646
- # [region](https://support.twilio.com/hc/en-us/articles/223132167-How-global-low-latency-routing-and-region-selection-work-for-conferences-and-Client-calls) where we should mix the recorded audio. Can be:`us1`, `ie1`, `de1`, `sg1`, `br1`, `au1`, or `jp1`.
648
+ # [region](https://support.twilio.com/hc/en-us/articles/223132167-How-global-low-latency-routing-and-region-selection-work-for-conferences-and-Client-calls)
649
+ # where we should mix the recorded audio. Can be:`us1`, `ie1`, `de1`, `sg1`,
650
+ # `br1`, `au1`, or `jp1`.
647
651
  # @param [String] sip_auth_username The SIP username used for authentication.
648
652
  # @param [String] sip_auth_password The SIP password for authentication.
649
653
  # @param [String] dequeue_status_callback_event The Call progress events sent via
@@ -210,12 +210,9 @@ module Twilio
210
210
 
211
211
  ##
212
212
  # Access the statistics
213
- # @return [WorkersStatisticsList]
214
- # @return [WorkersStatisticsContext]
213
+ # @return [WorkersStatisticsContext] WorkersStatisticsContext
215
214
  def statistics
216
215
  return WorkersStatisticsContext.new(@version, @solution[:workspace_sid], )
217
-
218
- @statistics ||= WorkersStatisticsList.new(@version, workspace_sid: @solution[:workspace_sid], )
219
216
  end
220
217
 
221
218
  ##
@@ -309,7 +309,9 @@ module Twilio
309
309
  # should use to call `conference_recording_status_callback`. Can be: `GET` or
310
310
  # `POST` and defaults to `POST`.
311
311
  # @param [String] region The
312
- # [region](https://support.twilio.com/hc/en-us/articles/223132167-How-global-low-latency-routing-and-region-selection-work-for-conferences-and-Client-calls) where we should mix the recorded audio. Can be:`us1`, `ie1`, `de1`, `sg1`, `br1`, `au1`, or `jp1`.
312
+ # [region](https://support.twilio.com/hc/en-us/articles/223132167-How-global-low-latency-routing-and-region-selection-work-for-conferences-and-Client-calls)
313
+ # where we should mix the recorded audio. Can be:`us1`, `ie1`, `de1`, `sg1`,
314
+ # `br1`, `au1`, or `jp1`.
313
315
  # @param [String] sip_auth_username The SIP username used for authentication.
314
316
  # @param [String] sip_auth_password The SIP password for authentication.
315
317
  # @param [String] dequeue_status_callback_event The call progress events sent via
@@ -645,7 +647,9 @@ module Twilio
645
647
  # should use to call `conference_recording_status_callback`. Can be: `GET` or
646
648
  # `POST` and defaults to `POST`.
647
649
  # @param [String] region The
648
- # [region](https://support.twilio.com/hc/en-us/articles/223132167-How-global-low-latency-routing-and-region-selection-work-for-conferences-and-Client-calls) where we should mix the recorded audio. Can be:`us1`, `ie1`, `de1`, `sg1`, `br1`, `au1`, or `jp1`.
650
+ # [region](https://support.twilio.com/hc/en-us/articles/223132167-How-global-low-latency-routing-and-region-selection-work-for-conferences-and-Client-calls)
651
+ # where we should mix the recorded audio. Can be:`us1`, `ie1`, `de1`, `sg1`,
652
+ # `br1`, `au1`, or `jp1`.
649
653
  # @param [String] sip_auth_username The SIP username used for authentication.
650
654
  # @param [String] sip_auth_password The SIP password for authentication.
651
655
  # @param [String] dequeue_status_callback_event The call progress events sent via
@@ -40,13 +40,9 @@ module Twilio
40
40
  # information.
41
41
  # @param [String] disaster_recovery_method The HTTP method we should use to call
42
42
  # the `disaster_recovery_url`. Can be: `GET` or `POST`.
43
- # @param [trunk.RecordingSetting] recording The recording settings for the trunk.
44
- # Can be: `do-not-record`, `record-from-ringing`, `record-from-answer`. If set to
45
- # `record-from-ringing` or `record-from-answer`, all calls going through the trunk
46
- # will be recorded. The only way to change recording parameters is on a
47
- # sub-resource of a Trunk after it has been created.
48
- # e.g.`/Trunks/[Trunk_SID]/Recording -XPOST -d'Mode=record-from-answer'`. See
49
- # [Recording](https://www.twilio.com/docs/sip-trunking#recording) for more
43
+ # @param [trunk.TransferSetting] transfer_mode The call transfer settings for the
44
+ # trunk. Can be: `enable-all`, `sip-only` and `disable-all`. See
45
+ # [Transfer](https://www.twilio.com/docs/sip-trunking/call-transfer) for more
50
46
  # information.
51
47
  # @param [Boolean] secure Whether Secure Trunking is enabled for the trunk. If
52
48
  # enabled, all calls going through the trunk will be secure using SRTP for media
@@ -59,13 +55,13 @@ module Twilio
59
55
  # Caller ID data on your phone. See [CNAM
60
56
  # Lookups](https://www.twilio.com/docs/sip-trunking#CNAM) for more information.
61
57
  # @return [TrunkInstance] Created TrunkInstance
62
- def create(friendly_name: :unset, domain_name: :unset, disaster_recovery_url: :unset, disaster_recovery_method: :unset, recording: :unset, secure: :unset, cnam_lookup_enabled: :unset)
58
+ def create(friendly_name: :unset, domain_name: :unset, disaster_recovery_url: :unset, disaster_recovery_method: :unset, transfer_mode: :unset, secure: :unset, cnam_lookup_enabled: :unset)
63
59
  data = Twilio::Values.of({
64
60
  'FriendlyName' => friendly_name,
65
61
  'DomainName' => domain_name,
66
62
  'DisasterRecoveryUrl' => disaster_recovery_url,
67
63
  'DisasterRecoveryMethod' => disaster_recovery_method,
68
- 'Recording' => recording,
64
+ 'TransferMode' => transfer_mode,
69
65
  'Secure' => secure,
70
66
  'CnamLookupEnabled' => cnam_lookup_enabled,
71
67
  })
@@ -210,6 +206,7 @@ module Twilio
210
206
  @credentials_lists = nil
211
207
  @ip_access_control_lists = nil
212
208
  @phone_numbers = nil
209
+ @recordings = nil
213
210
  end
214
211
 
215
212
  ##
@@ -245,11 +242,9 @@ module Twilio
245
242
  # information.
246
243
  # @param [String] disaster_recovery_method The HTTP method we should use to call
247
244
  # the `disaster_recovery_url`. Can be: `GET` or `POST`.
248
- # @param [trunk.RecordingSetting] recording The recording settings for the trunk.
249
- # Can be: `do-not-record`, `record-from-ringing`, `record-from-answer`. If set to
250
- # `record-from-ringing` or `record-from-answer`, all calls going through the trunk
251
- # will be recorded. See
252
- # [Recording](https://www.twilio.com/docs/sip-trunking#recording) for more
245
+ # @param [trunk.TransferSetting] transfer_mode The call transfer settings for the
246
+ # trunk. Can be: `enable-all`, `sip-only` and `disable-all`. See
247
+ # [Transfer](https://www.twilio.com/docs/sip-trunking/call-transfer) for more
253
248
  # information.
254
249
  # @param [Boolean] secure Whether Secure Trunking is enabled for the trunk. If
255
250
  # enabled, all calls going through the trunk will be secure using SRTP for media
@@ -262,13 +257,13 @@ module Twilio
262
257
  # Caller ID data on your phone. See [CNAM
263
258
  # Lookups](https://www.twilio.com/docs/sip-trunking#CNAM) for more information.
264
259
  # @return [TrunkInstance] Updated TrunkInstance
265
- def update(friendly_name: :unset, domain_name: :unset, disaster_recovery_url: :unset, disaster_recovery_method: :unset, recording: :unset, secure: :unset, cnam_lookup_enabled: :unset)
260
+ def update(friendly_name: :unset, domain_name: :unset, disaster_recovery_url: :unset, disaster_recovery_method: :unset, transfer_mode: :unset, secure: :unset, cnam_lookup_enabled: :unset)
266
261
  data = Twilio::Values.of({
267
262
  'FriendlyName' => friendly_name,
268
263
  'DomainName' => domain_name,
269
264
  'DisasterRecoveryUrl' => disaster_recovery_url,
270
265
  'DisasterRecoveryMethod' => disaster_recovery_method,
271
- 'Recording' => recording,
266
+ 'TransferMode' => transfer_mode,
272
267
  'Secure' => secure,
273
268
  'CnamLookupEnabled' => cnam_lookup_enabled,
274
269
  })
@@ -350,6 +345,14 @@ module Twilio
350
345
  @phone_numbers
351
346
  end
352
347
 
348
+ ##
349
+ # Access the recordings
350
+ # @return [RecordingList]
351
+ # @return [RecordingContext]
352
+ def recordings
353
+ RecordingContext.new(@version, @solution[:sid], )
354
+ end
355
+
353
356
  ##
354
357
  # Provide a user friendly representation
355
358
  def to_s
@@ -385,6 +388,7 @@ module Twilio
385
388
  'friendly_name' => payload['friendly_name'],
386
389
  'secure' => payload['secure'],
387
390
  'recording' => payload['recording'],
391
+ 'transfer_mode' => payload['transfer_mode'],
388
392
  'cnam_lookup_enabled' => payload['cnam_lookup_enabled'],
389
393
  'auth_type' => payload['auth_type'],
390
394
  'auth_type_set' => payload['auth_type_set'],
@@ -453,6 +457,12 @@ module Twilio
453
457
  @properties['recording']
454
458
  end
455
459
 
460
+ ##
461
+ # @return [trunk.TransferSetting] The call transfer settings for the trunk
462
+ def transfer_mode
463
+ @properties['transfer_mode']
464
+ end
465
+
456
466
  ##
457
467
  # @return [Boolean] Whether Caller ID Name (CNAM) lookup is enabled for the trunk
458
468
  def cnam_lookup_enabled
@@ -532,11 +542,9 @@ module Twilio
532
542
  # information.
533
543
  # @param [String] disaster_recovery_method The HTTP method we should use to call
534
544
  # the `disaster_recovery_url`. Can be: `GET` or `POST`.
535
- # @param [trunk.RecordingSetting] recording The recording settings for the trunk.
536
- # Can be: `do-not-record`, `record-from-ringing`, `record-from-answer`. If set to
537
- # `record-from-ringing` or `record-from-answer`, all calls going through the trunk
538
- # will be recorded. See
539
- # [Recording](https://www.twilio.com/docs/sip-trunking#recording) for more
545
+ # @param [trunk.TransferSetting] transfer_mode The call transfer settings for the
546
+ # trunk. Can be: `enable-all`, `sip-only` and `disable-all`. See
547
+ # [Transfer](https://www.twilio.com/docs/sip-trunking/call-transfer) for more
540
548
  # information.
541
549
  # @param [Boolean] secure Whether Secure Trunking is enabled for the trunk. If
542
550
  # enabled, all calls going through the trunk will be secure using SRTP for media
@@ -549,13 +557,13 @@ module Twilio
549
557
  # Caller ID data on your phone. See [CNAM
550
558
  # Lookups](https://www.twilio.com/docs/sip-trunking#CNAM) for more information.
551
559
  # @return [TrunkInstance] Updated TrunkInstance
552
- def update(friendly_name: :unset, domain_name: :unset, disaster_recovery_url: :unset, disaster_recovery_method: :unset, recording: :unset, secure: :unset, cnam_lookup_enabled: :unset)
560
+ def update(friendly_name: :unset, domain_name: :unset, disaster_recovery_url: :unset, disaster_recovery_method: :unset, transfer_mode: :unset, secure: :unset, cnam_lookup_enabled: :unset)
553
561
  context.update(
554
562
  friendly_name: friendly_name,
555
563
  domain_name: domain_name,
556
564
  disaster_recovery_url: disaster_recovery_url,
557
565
  disaster_recovery_method: disaster_recovery_method,
558
- recording: recording,
566
+ transfer_mode: transfer_mode,
559
567
  secure: secure,
560
568
  cnam_lookup_enabled: cnam_lookup_enabled,
561
569
  )
@@ -589,6 +597,13 @@ module Twilio
589
597
  context.phone_numbers
590
598
  end
591
599
 
600
+ ##
601
+ # Access the recordings
602
+ # @return [recordings] recordings
603
+ def recordings
604
+ context.recordings
605
+ end
606
+
592
607
  ##
593
608
  # Provide a user friendly representation
594
609
  def to_s
@@ -28,7 +28,8 @@ module Twilio
28
28
  ##
29
29
  # Create the IpAccessControlListInstance
30
30
  # @param [String] ip_access_control_list_sid The SID of the [IP Access Control
31
- # List](https://www.twilio.com/docs/voice/sip/api/sip-ipaccesscontrollist-resource) that you want to associate with the trunk.
31
+ # List](https://www.twilio.com/docs/voice/sip/api/sip-ipaccesscontrollist-resource)
32
+ # that you want to associate with the trunk.
32
33
  # @return [IpAccessControlListInstance] Created IpAccessControlListInstance
33
34
  def create(ip_access_control_list_sid: nil)
34
35
  data = Twilio::Values.of({'IpAccessControlListSid' => ip_access_control_list_sid, })