telnyx 5.2.0 → 5.3.0
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/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/telnyx/models/credential_connection.rb +69 -1
- data/lib/telnyx/models/credential_connection_create_params.rb +53 -1
- data/lib/telnyx/models/credential_connection_update_params.rb +53 -1
- data/lib/telnyx/models/credential_inbound.rb +26 -1
- data/lib/telnyx/models/fqdn_connection.rb +69 -1
- data/lib/telnyx/models/fqdn_connection_create_params.rb +52 -1
- data/lib/telnyx/models/fqdn_connection_update_params.rb +52 -1
- data/lib/telnyx/models/ip_connection.rb +69 -1
- data/lib/telnyx/models/ip_connection_create_params.rb +52 -1
- data/lib/telnyx/models/ip_connection_update_params.rb +52 -1
- data/lib/telnyx/resources/credential_connections.rb +6 -2
- data/lib/telnyx/resources/fqdn_connections.rb +6 -2
- data/lib/telnyx/resources/ip_connections.rb +6 -2
- data/lib/telnyx/version.rb +1 -1
- data/rbi/telnyx/models/credential_connection.rbi +110 -0
- data/rbi/telnyx/models/credential_connection_create_params.rbi +101 -0
- data/rbi/telnyx/models/credential_connection_update_params.rbi +101 -0
- data/rbi/telnyx/models/credential_inbound.rbi +60 -0
- data/rbi/telnyx/models/fqdn_connection.rbi +108 -0
- data/rbi/telnyx/models/fqdn_connection_create_params.rbi +98 -0
- data/rbi/telnyx/models/fqdn_connection_update_params.rbi +98 -0
- data/rbi/telnyx/models/ip_connection.rbi +105 -0
- data/rbi/telnyx/models/ip_connection_create_params.rbi +94 -0
- data/rbi/telnyx/models/ip_connection_update_params.rbi +94 -0
- data/rbi/telnyx/resources/credential_connections.rbi +16 -0
- data/rbi/telnyx/resources/fqdn_connections.rbi +16 -0
- data/rbi/telnyx/resources/ip_connections.rbi +14 -0
- data/sig/telnyx/models/credential_connection.rbs +52 -0
- data/sig/telnyx/models/credential_connection_create_params.rbs +42 -0
- data/sig/telnyx/models/credential_connection_update_params.rbs +42 -0
- data/sig/telnyx/models/credential_inbound.rbs +20 -0
- data/sig/telnyx/models/fqdn_connection.rbs +52 -0
- data/sig/telnyx/models/fqdn_connection_create_params.rbs +42 -0
- data/sig/telnyx/models/fqdn_connection_update_params.rbs +42 -0
- data/sig/telnyx/models/ip_connection.rbs +52 -0
- data/sig/telnyx/models/ip_connection_create_params.rbs +42 -0
- data/sig/telnyx/models/ip_connection_update_params.rbs +42 -0
- data/sig/telnyx/resources/credential_connections.rbs +2 -0
- data/sig/telnyx/resources/fqdn_connections.rbs +2 -0
- data/sig/telnyx/resources/ip_connections.rbs +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c3e578c01119563d6b8b2af5fe886fdb5d271c8634ae22bc8bd19d4b2dbf2fe1
|
|
4
|
+
data.tar.gz: e6653e09b4e93f6be3c04196747ee6282dbfc2fe35c498ff990fb1588ca3366f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d60f90271e472ba95ec5616eee1da1ade83b5383a28988e86261a0a6585fd65ad547b9572cf185a9519bd8fbf0498d794d316ad10adfed4d1358026ada675f39
|
|
7
|
+
data.tar.gz: 53682d17a87d3310ff9f1436f20952a1f9d70201f4ccbbd417959a952ca528a186d35d8baa06265c29b6e10394e3a4e654fb2fecd8355112ee11533e2f51f264
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.3.0 (2026-01-27)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v5.2.0...v5.3.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.2.0...v5.3.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* jira-engdesk-49089 add new connection jitter buffer related fields ([2cdf3ef](https://github.com/team-telnyx/telnyx-ruby/commit/2cdf3efe3611ae9075eccf4e240b50978b765db9))
|
|
10
|
+
|
|
3
11
|
## 5.2.0 (2026-01-22)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v5.1.0...v5.2.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.1.0...v5.2.0)
|
data/README.md
CHANGED
|
@@ -24,6 +24,12 @@ module Telnyx
|
|
|
24
24
|
# @return [Symbol, Telnyx::Models::AnchorsiteOverride, nil]
|
|
25
25
|
optional :anchorsite_override, enum: -> { Telnyx::AnchorsiteOverride }
|
|
26
26
|
|
|
27
|
+
# @!attribute android_push_credential_id
|
|
28
|
+
# The uuid of the push credential for Android
|
|
29
|
+
#
|
|
30
|
+
# @return [String, nil]
|
|
31
|
+
optional :android_push_credential_id, String, nil?: true
|
|
32
|
+
|
|
27
33
|
# @!attribute call_cost_in_webhooks
|
|
28
34
|
# Specifies if call cost webhooks should be sent for this connection.
|
|
29
35
|
#
|
|
@@ -75,6 +81,22 @@ module Telnyx
|
|
|
75
81
|
# @return [Telnyx::Models::CredentialInbound, nil]
|
|
76
82
|
optional :inbound, -> { Telnyx::CredentialInbound }
|
|
77
83
|
|
|
84
|
+
# @!attribute ios_push_credential_id
|
|
85
|
+
# The uuid of the push credential for Ios
|
|
86
|
+
#
|
|
87
|
+
# @return [String, nil]
|
|
88
|
+
optional :ios_push_credential_id, String, nil?: true
|
|
89
|
+
|
|
90
|
+
# @!attribute jitter_buffer
|
|
91
|
+
# Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams
|
|
92
|
+
# of SIP Trunking calls. The feature is off unless enabled. You may define min and
|
|
93
|
+
# max values in msec for customized buffering behaviors. Larger values add latency
|
|
94
|
+
# but tolerate more jitter, while smaller values reduce latency but are more
|
|
95
|
+
# sensitive to jitter and reordering.
|
|
96
|
+
#
|
|
97
|
+
# @return [Telnyx::Models::CredentialConnection::JitterBuffer, nil]
|
|
98
|
+
optional :jitter_buffer, -> { Telnyx::CredentialConnection::JitterBuffer }
|
|
99
|
+
|
|
78
100
|
# @!attribute noise_suppression
|
|
79
101
|
# Controls when noise suppression is applied to calls. When set to 'inbound',
|
|
80
102
|
# noise suppression is applied to incoming audio. When set to 'outbound', it's
|
|
@@ -180,7 +202,7 @@ module Telnyx
|
|
|
180
202
|
# @return [Integer, nil]
|
|
181
203
|
optional :webhook_timeout_secs, Integer, nil?: true
|
|
182
204
|
|
|
183
|
-
# @!method initialize(id: nil, active: nil, anchorsite_override: nil, call_cost_in_webhooks: nil, connection_name: nil, created_at: nil, default_on_hold_comfort_noise_enabled: nil, dtmf_type: nil, encode_contact_header_enabled: nil, encrypted_media: nil, inbound: nil, noise_suppression: nil, noise_suppression_details: nil, onnet_t38_passthrough_enabled: nil, outbound: nil, password: nil, record_type: nil, rtcp_settings: nil, sip_uri_calling_preference: nil, tags: nil, updated_at: nil, user_name: nil, webhook_api_version: nil, webhook_event_failover_url: nil, webhook_event_url: nil, webhook_timeout_secs: nil)
|
|
205
|
+
# @!method initialize(id: nil, active: nil, anchorsite_override: nil, android_push_credential_id: nil, call_cost_in_webhooks: nil, connection_name: nil, created_at: nil, default_on_hold_comfort_noise_enabled: nil, dtmf_type: nil, encode_contact_header_enabled: nil, encrypted_media: nil, inbound: nil, ios_push_credential_id: nil, jitter_buffer: nil, noise_suppression: nil, noise_suppression_details: nil, onnet_t38_passthrough_enabled: nil, outbound: nil, password: nil, record_type: nil, rtcp_settings: nil, sip_uri_calling_preference: nil, tags: nil, updated_at: nil, user_name: nil, webhook_api_version: nil, webhook_event_failover_url: nil, webhook_event_url: nil, webhook_timeout_secs: nil)
|
|
184
206
|
# Some parameter documentations has been truncated, see
|
|
185
207
|
# {Telnyx::Models::CredentialConnection} for more details.
|
|
186
208
|
#
|
|
@@ -190,6 +212,8 @@ module Telnyx
|
|
|
190
212
|
#
|
|
191
213
|
# @param anchorsite_override [Symbol, Telnyx::Models::AnchorsiteOverride] `Latency` directs Telnyx to route media through the site with the lowest round-t
|
|
192
214
|
#
|
|
215
|
+
# @param android_push_credential_id [String, nil] The uuid of the push credential for Android
|
|
216
|
+
#
|
|
193
217
|
# @param call_cost_in_webhooks [Boolean] Specifies if call cost webhooks should be sent for this connection.
|
|
194
218
|
#
|
|
195
219
|
# @param connection_name [String]
|
|
@@ -206,6 +230,10 @@ module Telnyx
|
|
|
206
230
|
#
|
|
207
231
|
# @param inbound [Telnyx::Models::CredentialInbound]
|
|
208
232
|
#
|
|
233
|
+
# @param ios_push_credential_id [String, nil] The uuid of the push credential for Ios
|
|
234
|
+
#
|
|
235
|
+
# @param jitter_buffer [Telnyx::Models::CredentialConnection::JitterBuffer] Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams o
|
|
236
|
+
#
|
|
209
237
|
# @param noise_suppression [Symbol, Telnyx::Models::CredentialConnection::NoiseSuppression] Controls when noise suppression is applied to calls. When set to 'inbound', nois
|
|
210
238
|
#
|
|
211
239
|
# @param noise_suppression_details [Telnyx::Models::ConnectionNoiseSuppressionDetails] Configuration options for noise suppression. These settings are stored regardles
|
|
@@ -236,6 +264,46 @@ module Telnyx
|
|
|
236
264
|
#
|
|
237
265
|
# @param webhook_timeout_secs [Integer, nil] Specifies how many seconds to wait before timing out a webhook.
|
|
238
266
|
|
|
267
|
+
# @see Telnyx::Models::CredentialConnection#jitter_buffer
|
|
268
|
+
class JitterBuffer < Telnyx::Internal::Type::BaseModel
|
|
269
|
+
# @!attribute enable_jitter_buffer
|
|
270
|
+
# Enables Jitter Buffer for RTP streams of SIP Trunking calls. The feature is off
|
|
271
|
+
# unless enabled.
|
|
272
|
+
#
|
|
273
|
+
# @return [Boolean, nil]
|
|
274
|
+
optional :enable_jitter_buffer, Telnyx::Internal::Type::Boolean
|
|
275
|
+
|
|
276
|
+
# @!attribute jitterbuffer_msec_max
|
|
277
|
+
# The maximum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
278
|
+
# no effect if enable_jitter_buffer is not true.
|
|
279
|
+
#
|
|
280
|
+
# @return [Integer, nil]
|
|
281
|
+
optional :jitterbuffer_msec_max, Integer
|
|
282
|
+
|
|
283
|
+
# @!attribute jitterbuffer_msec_min
|
|
284
|
+
# The minimum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
285
|
+
# no effect if enable_jitter_buffer is not true.
|
|
286
|
+
#
|
|
287
|
+
# @return [Integer, nil]
|
|
288
|
+
optional :jitterbuffer_msec_min, Integer
|
|
289
|
+
|
|
290
|
+
# @!method initialize(enable_jitter_buffer: nil, jitterbuffer_msec_max: nil, jitterbuffer_msec_min: nil)
|
|
291
|
+
# Some parameter documentations has been truncated, see
|
|
292
|
+
# {Telnyx::Models::CredentialConnection::JitterBuffer} for more details.
|
|
293
|
+
#
|
|
294
|
+
# Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams
|
|
295
|
+
# of SIP Trunking calls. The feature is off unless enabled. You may define min and
|
|
296
|
+
# max values in msec for customized buffering behaviors. Larger values add latency
|
|
297
|
+
# but tolerate more jitter, while smaller values reduce latency but are more
|
|
298
|
+
# sensitive to jitter and reordering.
|
|
299
|
+
#
|
|
300
|
+
# @param enable_jitter_buffer [Boolean] Enables Jitter Buffer for RTP streams of SIP Trunking calls. The feature is off
|
|
301
|
+
#
|
|
302
|
+
# @param jitterbuffer_msec_max [Integer] The maximum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
303
|
+
#
|
|
304
|
+
# @param jitterbuffer_msec_min [Integer] The minimum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
305
|
+
end
|
|
306
|
+
|
|
239
307
|
# Controls when noise suppression is applied to calls. When set to 'inbound',
|
|
240
308
|
# noise suppression is applied to incoming audio. When set to 'outbound', it's
|
|
241
309
|
# applied to outgoing audio. When set to 'both', it's applied in both directions.
|
|
@@ -93,6 +93,16 @@ module Telnyx
|
|
|
93
93
|
# @return [String, nil]
|
|
94
94
|
optional :ios_push_credential_id, String, nil?: true
|
|
95
95
|
|
|
96
|
+
# @!attribute jitter_buffer
|
|
97
|
+
# Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams
|
|
98
|
+
# of SIP Trunking calls. The feature is off unless enabled. You may define min and
|
|
99
|
+
# max values in msec for customized buffering behaviors. Larger values add latency
|
|
100
|
+
# but tolerate more jitter, while smaller values reduce latency but are more
|
|
101
|
+
# sensitive to jitter and reordering.
|
|
102
|
+
#
|
|
103
|
+
# @return [Telnyx::Models::CredentialConnectionCreateParams::JitterBuffer, nil]
|
|
104
|
+
optional :jitter_buffer, -> { Telnyx::CredentialConnectionCreateParams::JitterBuffer }
|
|
105
|
+
|
|
96
106
|
# @!attribute noise_suppression
|
|
97
107
|
# Controls when noise suppression is applied to calls. When set to 'inbound',
|
|
98
108
|
# noise suppression is applied to incoming audio. When set to 'outbound', it's
|
|
@@ -174,7 +184,7 @@ module Telnyx
|
|
|
174
184
|
# @return [Integer, nil]
|
|
175
185
|
optional :webhook_timeout_secs, Integer, nil?: true
|
|
176
186
|
|
|
177
|
-
# @!method initialize(connection_name:, password:, user_name:, active: nil, anchorsite_override: nil, android_push_credential_id: nil, call_cost_in_webhooks: nil, default_on_hold_comfort_noise_enabled: nil, dtmf_type: nil, encode_contact_header_enabled: nil, encrypted_media: nil, inbound: nil, ios_push_credential_id: nil, noise_suppression: nil, noise_suppression_details: nil, onnet_t38_passthrough_enabled: nil, outbound: nil, rtcp_settings: nil, sip_uri_calling_preference: nil, tags: nil, webhook_api_version: nil, webhook_event_failover_url: nil, webhook_event_url: nil, webhook_timeout_secs: nil, request_options: {})
|
|
187
|
+
# @!method initialize(connection_name:, password:, user_name:, active: nil, anchorsite_override: nil, android_push_credential_id: nil, call_cost_in_webhooks: nil, default_on_hold_comfort_noise_enabled: nil, dtmf_type: nil, encode_contact_header_enabled: nil, encrypted_media: nil, inbound: nil, ios_push_credential_id: nil, jitter_buffer: nil, noise_suppression: nil, noise_suppression_details: nil, onnet_t38_passthrough_enabled: nil, outbound: nil, rtcp_settings: nil, sip_uri_calling_preference: nil, tags: nil, webhook_api_version: nil, webhook_event_failover_url: nil, webhook_event_url: nil, webhook_timeout_secs: nil, request_options: {})
|
|
178
188
|
# Some parameter documentations has been truncated, see
|
|
179
189
|
# {Telnyx::Models::CredentialConnectionCreateParams} for more details.
|
|
180
190
|
#
|
|
@@ -204,6 +214,8 @@ module Telnyx
|
|
|
204
214
|
#
|
|
205
215
|
# @param ios_push_credential_id [String, nil] The uuid of the push credential for Ios
|
|
206
216
|
#
|
|
217
|
+
# @param jitter_buffer [Telnyx::Models::CredentialConnectionCreateParams::JitterBuffer] Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams o
|
|
218
|
+
#
|
|
207
219
|
# @param noise_suppression [Symbol, Telnyx::Models::CredentialConnectionCreateParams::NoiseSuppression] Controls when noise suppression is applied to calls. When set to 'inbound', nois
|
|
208
220
|
#
|
|
209
221
|
# @param noise_suppression_details [Telnyx::Models::ConnectionNoiseSuppressionDetails] Configuration options for noise suppression. These settings are stored regardles
|
|
@@ -228,6 +240,46 @@ module Telnyx
|
|
|
228
240
|
#
|
|
229
241
|
# @param request_options [Telnyx::RequestOptions, Hash{Symbol=>Object}]
|
|
230
242
|
|
|
243
|
+
class JitterBuffer < Telnyx::Internal::Type::BaseModel
|
|
244
|
+
# @!attribute enable_jitter_buffer
|
|
245
|
+
# Enables Jitter Buffer for RTP streams of SIP Trunking calls. The feature is off
|
|
246
|
+
# unless enabled.
|
|
247
|
+
#
|
|
248
|
+
# @return [Boolean, nil]
|
|
249
|
+
optional :enable_jitter_buffer, Telnyx::Internal::Type::Boolean
|
|
250
|
+
|
|
251
|
+
# @!attribute jitterbuffer_msec_max
|
|
252
|
+
# The maximum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
253
|
+
# no effect if enable_jitter_buffer is not true.
|
|
254
|
+
#
|
|
255
|
+
# @return [Integer, nil]
|
|
256
|
+
optional :jitterbuffer_msec_max, Integer
|
|
257
|
+
|
|
258
|
+
# @!attribute jitterbuffer_msec_min
|
|
259
|
+
# The minimum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
260
|
+
# no effect if enable_jitter_buffer is not true.
|
|
261
|
+
#
|
|
262
|
+
# @return [Integer, nil]
|
|
263
|
+
optional :jitterbuffer_msec_min, Integer
|
|
264
|
+
|
|
265
|
+
# @!method initialize(enable_jitter_buffer: nil, jitterbuffer_msec_max: nil, jitterbuffer_msec_min: nil)
|
|
266
|
+
# Some parameter documentations has been truncated, see
|
|
267
|
+
# {Telnyx::Models::CredentialConnectionCreateParams::JitterBuffer} for more
|
|
268
|
+
# details.
|
|
269
|
+
#
|
|
270
|
+
# Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams
|
|
271
|
+
# of SIP Trunking calls. The feature is off unless enabled. You may define min and
|
|
272
|
+
# max values in msec for customized buffering behaviors. Larger values add latency
|
|
273
|
+
# but tolerate more jitter, while smaller values reduce latency but are more
|
|
274
|
+
# sensitive to jitter and reordering.
|
|
275
|
+
#
|
|
276
|
+
# @param enable_jitter_buffer [Boolean] Enables Jitter Buffer for RTP streams of SIP Trunking calls. The feature is off
|
|
277
|
+
#
|
|
278
|
+
# @param jitterbuffer_msec_max [Integer] The maximum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
279
|
+
#
|
|
280
|
+
# @param jitterbuffer_msec_min [Integer] The minimum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
281
|
+
end
|
|
282
|
+
|
|
231
283
|
# Controls when noise suppression is applied to calls. When set to 'inbound',
|
|
232
284
|
# noise suppression is applied to incoming audio. When set to 'outbound', it's
|
|
233
285
|
# applied to outgoing audio. When set to 'both', it's applied in both directions.
|
|
@@ -79,6 +79,16 @@ module Telnyx
|
|
|
79
79
|
# @return [String, nil]
|
|
80
80
|
optional :ios_push_credential_id, String, nil?: true
|
|
81
81
|
|
|
82
|
+
# @!attribute jitter_buffer
|
|
83
|
+
# Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams
|
|
84
|
+
# of SIP Trunking calls. The feature is off unless enabled. You may define min and
|
|
85
|
+
# max values in msec for customized buffering behaviors. Larger values add latency
|
|
86
|
+
# but tolerate more jitter, while smaller values reduce latency but are more
|
|
87
|
+
# sensitive to jitter and reordering.
|
|
88
|
+
#
|
|
89
|
+
# @return [Telnyx::Models::CredentialConnectionUpdateParams::JitterBuffer, nil]
|
|
90
|
+
optional :jitter_buffer, -> { Telnyx::CredentialConnectionUpdateParams::JitterBuffer }
|
|
91
|
+
|
|
82
92
|
# @!attribute noise_suppression
|
|
83
93
|
# Controls when noise suppression is applied to calls. When set to 'inbound',
|
|
84
94
|
# noise suppression is applied to incoming audio. When set to 'outbound', it's
|
|
@@ -172,7 +182,7 @@ module Telnyx
|
|
|
172
182
|
# @return [Integer, nil]
|
|
173
183
|
optional :webhook_timeout_secs, Integer, nil?: true
|
|
174
184
|
|
|
175
|
-
# @!method initialize(active: nil, anchorsite_override: nil, android_push_credential_id: nil, call_cost_in_webhooks: nil, connection_name: nil, default_on_hold_comfort_noise_enabled: nil, dtmf_type: nil, encode_contact_header_enabled: nil, encrypted_media: nil, inbound: nil, ios_push_credential_id: nil, noise_suppression: nil, noise_suppression_details: nil, onnet_t38_passthrough_enabled: nil, outbound: nil, password: nil, rtcp_settings: nil, sip_uri_calling_preference: nil, tags: nil, user_name: nil, webhook_api_version: nil, webhook_event_failover_url: nil, webhook_event_url: nil, webhook_timeout_secs: nil, request_options: {})
|
|
185
|
+
# @!method initialize(active: nil, anchorsite_override: nil, android_push_credential_id: nil, call_cost_in_webhooks: nil, connection_name: nil, default_on_hold_comfort_noise_enabled: nil, dtmf_type: nil, encode_contact_header_enabled: nil, encrypted_media: nil, inbound: nil, ios_push_credential_id: nil, jitter_buffer: nil, noise_suppression: nil, noise_suppression_details: nil, onnet_t38_passthrough_enabled: nil, outbound: nil, password: nil, rtcp_settings: nil, sip_uri_calling_preference: nil, tags: nil, user_name: nil, webhook_api_version: nil, webhook_event_failover_url: nil, webhook_event_url: nil, webhook_timeout_secs: nil, request_options: {})
|
|
176
186
|
# Some parameter documentations has been truncated, see
|
|
177
187
|
# {Telnyx::Models::CredentialConnectionUpdateParams} for more details.
|
|
178
188
|
#
|
|
@@ -198,6 +208,8 @@ module Telnyx
|
|
|
198
208
|
#
|
|
199
209
|
# @param ios_push_credential_id [String, nil] The uuid of the push credential for Ios
|
|
200
210
|
#
|
|
211
|
+
# @param jitter_buffer [Telnyx::Models::CredentialConnectionUpdateParams::JitterBuffer] Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams o
|
|
212
|
+
#
|
|
201
213
|
# @param noise_suppression [Symbol, Telnyx::Models::CredentialConnectionUpdateParams::NoiseSuppression] Controls when noise suppression is applied to calls. When set to 'inbound', nois
|
|
202
214
|
#
|
|
203
215
|
# @param noise_suppression_details [Telnyx::Models::ConnectionNoiseSuppressionDetails] Configuration options for noise suppression. These settings are stored regardles
|
|
@@ -226,6 +238,46 @@ module Telnyx
|
|
|
226
238
|
#
|
|
227
239
|
# @param request_options [Telnyx::RequestOptions, Hash{Symbol=>Object}]
|
|
228
240
|
|
|
241
|
+
class JitterBuffer < Telnyx::Internal::Type::BaseModel
|
|
242
|
+
# @!attribute enable_jitter_buffer
|
|
243
|
+
# Enables Jitter Buffer for RTP streams of SIP Trunking calls. The feature is off
|
|
244
|
+
# unless enabled.
|
|
245
|
+
#
|
|
246
|
+
# @return [Boolean, nil]
|
|
247
|
+
optional :enable_jitter_buffer, Telnyx::Internal::Type::Boolean
|
|
248
|
+
|
|
249
|
+
# @!attribute jitterbuffer_msec_max
|
|
250
|
+
# The maximum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
251
|
+
# no effect if enable_jitter_buffer is not true.
|
|
252
|
+
#
|
|
253
|
+
# @return [Integer, nil]
|
|
254
|
+
optional :jitterbuffer_msec_max, Integer
|
|
255
|
+
|
|
256
|
+
# @!attribute jitterbuffer_msec_min
|
|
257
|
+
# The minimum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
258
|
+
# no effect if enable_jitter_buffer is not true.
|
|
259
|
+
#
|
|
260
|
+
# @return [Integer, nil]
|
|
261
|
+
optional :jitterbuffer_msec_min, Integer
|
|
262
|
+
|
|
263
|
+
# @!method initialize(enable_jitter_buffer: nil, jitterbuffer_msec_max: nil, jitterbuffer_msec_min: nil)
|
|
264
|
+
# Some parameter documentations has been truncated, see
|
|
265
|
+
# {Telnyx::Models::CredentialConnectionUpdateParams::JitterBuffer} for more
|
|
266
|
+
# details.
|
|
267
|
+
#
|
|
268
|
+
# Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams
|
|
269
|
+
# of SIP Trunking calls. The feature is off unless enabled. You may define min and
|
|
270
|
+
# max values in msec for customized buffering behaviors. Larger values add latency
|
|
271
|
+
# but tolerate more jitter, while smaller values reduce latency but are more
|
|
272
|
+
# sensitive to jitter and reordering.
|
|
273
|
+
#
|
|
274
|
+
# @param enable_jitter_buffer [Boolean] Enables Jitter Buffer for RTP streams of SIP Trunking calls. The feature is off
|
|
275
|
+
#
|
|
276
|
+
# @param jitterbuffer_msec_max [Integer] The maximum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
277
|
+
#
|
|
278
|
+
# @param jitterbuffer_msec_min [Integer] The minimum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
279
|
+
end
|
|
280
|
+
|
|
229
281
|
# Controls when noise suppression is applied to calls. When set to 'inbound',
|
|
230
282
|
# noise suppression is applied to incoming audio. When set to 'outbound', it's
|
|
231
283
|
# applied to outgoing audio. When set to 'both', it's applied in both directions.
|
|
@@ -26,6 +26,14 @@ module Telnyx
|
|
|
26
26
|
# @return [Array<String>, nil]
|
|
27
27
|
optional :codecs, Telnyx::Internal::Type::ArrayOf[String]
|
|
28
28
|
|
|
29
|
+
# @!attribute default_routing_method
|
|
30
|
+
# Default routing method to be used when a number is associated with the
|
|
31
|
+
# connection. Must be one of the routing method types or left blank, other values
|
|
32
|
+
# are not allowed.
|
|
33
|
+
#
|
|
34
|
+
# @return [Symbol, Telnyx::Models::CredentialInbound::DefaultRoutingMethod, nil]
|
|
35
|
+
optional :default_routing_method, enum: -> { Telnyx::CredentialInbound::DefaultRoutingMethod }
|
|
36
|
+
|
|
29
37
|
# @!attribute dnis_number_format
|
|
30
38
|
#
|
|
31
39
|
# @return [Symbol, Telnyx::Models::CredentialInbound::DnisNumberFormat, nil]
|
|
@@ -82,7 +90,7 @@ module Telnyx
|
|
|
82
90
|
# @return [Integer, nil]
|
|
83
91
|
optional :timeout_2xx_secs, Integer
|
|
84
92
|
|
|
85
|
-
# @!method initialize(ani_number_format: nil, channel_limit: nil, codecs: nil, dnis_number_format: nil, generate_ringback_tone: nil, isup_headers_enabled: nil, prack_enabled: nil, shaken_stir_enabled: nil, simultaneous_ringing: nil, sip_compact_headers_enabled: nil, timeout_1xx_secs: nil, timeout_2xx_secs: nil)
|
|
93
|
+
# @!method initialize(ani_number_format: nil, channel_limit: nil, codecs: nil, default_routing_method: nil, dnis_number_format: nil, generate_ringback_tone: nil, isup_headers_enabled: nil, prack_enabled: nil, shaken_stir_enabled: nil, simultaneous_ringing: nil, sip_compact_headers_enabled: nil, timeout_1xx_secs: nil, timeout_2xx_secs: nil)
|
|
86
94
|
# Some parameter documentations has been truncated, see
|
|
87
95
|
# {Telnyx::Models::CredentialInbound} for more details.
|
|
88
96
|
#
|
|
@@ -92,6 +100,8 @@ module Telnyx
|
|
|
92
100
|
#
|
|
93
101
|
# @param codecs [Array<String>] Defines the list of codecs that Telnyx will send for inbound calls to a specific
|
|
94
102
|
#
|
|
103
|
+
# @param default_routing_method [Symbol, Telnyx::Models::CredentialInbound::DefaultRoutingMethod] Default routing method to be used when a number is associated with the connectio
|
|
104
|
+
#
|
|
95
105
|
# @param dnis_number_format [Symbol, Telnyx::Models::CredentialInbound::DnisNumberFormat]
|
|
96
106
|
#
|
|
97
107
|
# @param generate_ringback_tone [Boolean] Generate ringback tone through 183 session progress message with early media.
|
|
@@ -126,6 +136,21 @@ module Telnyx
|
|
|
126
136
|
# @return [Array<Symbol>]
|
|
127
137
|
end
|
|
128
138
|
|
|
139
|
+
# Default routing method to be used when a number is associated with the
|
|
140
|
+
# connection. Must be one of the routing method types or left blank, other values
|
|
141
|
+
# are not allowed.
|
|
142
|
+
#
|
|
143
|
+
# @see Telnyx::Models::CredentialInbound#default_routing_method
|
|
144
|
+
module DefaultRoutingMethod
|
|
145
|
+
extend Telnyx::Internal::Type::Enum
|
|
146
|
+
|
|
147
|
+
SEQUENTIAL = :sequential
|
|
148
|
+
ROUND_ROBIN = :"round-robin"
|
|
149
|
+
|
|
150
|
+
# @!method self.values
|
|
151
|
+
# @return [Array<Symbol>]
|
|
152
|
+
end
|
|
153
|
+
|
|
129
154
|
# @see Telnyx::Models::CredentialInbound#dnis_number_format
|
|
130
155
|
module DnisNumberFormat
|
|
131
156
|
extend Telnyx::Internal::Type::Enum
|
|
@@ -36,6 +36,12 @@ module Telnyx
|
|
|
36
36
|
# @return [Symbol, Telnyx::Models::AnchorsiteOverride, nil]
|
|
37
37
|
optional :anchorsite_override, enum: -> { Telnyx::AnchorsiteOverride }
|
|
38
38
|
|
|
39
|
+
# @!attribute android_push_credential_id
|
|
40
|
+
# The uuid of the push credential for Android
|
|
41
|
+
#
|
|
42
|
+
# @return [String, nil]
|
|
43
|
+
optional :android_push_credential_id, String, nil?: true
|
|
44
|
+
|
|
39
45
|
# @!attribute call_cost_enabled
|
|
40
46
|
# Indicates whether call cost calculation is enabled.
|
|
41
47
|
#
|
|
@@ -100,6 +106,22 @@ module Telnyx
|
|
|
100
106
|
# @return [Telnyx::Models::InboundFqdn, nil]
|
|
101
107
|
optional :inbound, -> { Telnyx::InboundFqdn }
|
|
102
108
|
|
|
109
|
+
# @!attribute ios_push_credential_id
|
|
110
|
+
# The uuid of the push credential for Ios
|
|
111
|
+
#
|
|
112
|
+
# @return [String, nil]
|
|
113
|
+
optional :ios_push_credential_id, String, nil?: true
|
|
114
|
+
|
|
115
|
+
# @!attribute jitter_buffer
|
|
116
|
+
# Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams
|
|
117
|
+
# of SIP Trunking calls. The feature is off unless enabled. You may define min and
|
|
118
|
+
# max values in msec for customized buffering behaviors. Larger values add latency
|
|
119
|
+
# but tolerate more jitter, while smaller values reduce latency but are more
|
|
120
|
+
# sensitive to jitter and reordering.
|
|
121
|
+
#
|
|
122
|
+
# @return [Telnyx::Models::FqdnConnection::JitterBuffer, nil]
|
|
123
|
+
optional :jitter_buffer, -> { Telnyx::FqdnConnection::JitterBuffer }
|
|
124
|
+
|
|
103
125
|
# @!attribute microsoft_teams_sbc
|
|
104
126
|
# The connection is enabled for Microsoft Teams Direct Routing.
|
|
105
127
|
#
|
|
@@ -241,7 +263,7 @@ module Telnyx
|
|
|
241
263
|
# @return [Integer, nil]
|
|
242
264
|
optional :webhook_timeout_secs, Integer, nil?: true
|
|
243
265
|
|
|
244
|
-
# @!method initialize(connection_name:, id: nil, active: nil, adjust_dtmf_timestamp: nil, anchorsite_override: nil, call_cost_enabled: nil, call_cost_in_webhooks: nil, created_at: nil, default_on_hold_comfort_noise_enabled: nil, dtmf_type: nil, encode_contact_header_enabled: nil, encrypted_media: nil, ignore_dtmf_duration: nil, ignore_mark_bit: nil, inbound: nil, microsoft_teams_sbc: nil, noise_suppression: nil, noise_suppression_details: nil, onnet_t38_passthrough_enabled: nil, outbound: nil, password: nil, record_type: nil, rtcp_settings: nil, rtp_pass_codecs_on_stream_change: nil, send_normalized_timestamps: nil, tags: nil, third_party_control_enabled: nil, transport_protocol: nil, txt_name: nil, txt_ttl: nil, txt_value: nil, updated_at: nil, user_name: nil, webhook_api_version: nil, webhook_event_failover_url: nil, webhook_event_url: nil, webhook_timeout_secs: nil)
|
|
266
|
+
# @!method initialize(connection_name:, id: nil, active: nil, adjust_dtmf_timestamp: nil, anchorsite_override: nil, android_push_credential_id: nil, call_cost_enabled: nil, call_cost_in_webhooks: nil, created_at: nil, default_on_hold_comfort_noise_enabled: nil, dtmf_type: nil, encode_contact_header_enabled: nil, encrypted_media: nil, ignore_dtmf_duration: nil, ignore_mark_bit: nil, inbound: nil, ios_push_credential_id: nil, jitter_buffer: nil, microsoft_teams_sbc: nil, noise_suppression: nil, noise_suppression_details: nil, onnet_t38_passthrough_enabled: nil, outbound: nil, password: nil, record_type: nil, rtcp_settings: nil, rtp_pass_codecs_on_stream_change: nil, send_normalized_timestamps: nil, tags: nil, third_party_control_enabled: nil, transport_protocol: nil, txt_name: nil, txt_ttl: nil, txt_value: nil, updated_at: nil, user_name: nil, webhook_api_version: nil, webhook_event_failover_url: nil, webhook_event_url: nil, webhook_timeout_secs: nil)
|
|
245
267
|
# Some parameter documentations has been truncated, see
|
|
246
268
|
# {Telnyx::Models::FqdnConnection} for more details.
|
|
247
269
|
#
|
|
@@ -255,6 +277,8 @@ module Telnyx
|
|
|
255
277
|
#
|
|
256
278
|
# @param anchorsite_override [Symbol, Telnyx::Models::AnchorsiteOverride] `Latency` directs Telnyx to route media through the site with the lowest round-t
|
|
257
279
|
#
|
|
280
|
+
# @param android_push_credential_id [String, nil] The uuid of the push credential for Android
|
|
281
|
+
#
|
|
258
282
|
# @param call_cost_enabled [Boolean] Indicates whether call cost calculation is enabled.
|
|
259
283
|
#
|
|
260
284
|
# @param call_cost_in_webhooks [Boolean] Specifies if call cost webhooks should be sent for this connection.
|
|
@@ -275,6 +299,10 @@ module Telnyx
|
|
|
275
299
|
#
|
|
276
300
|
# @param inbound [Telnyx::Models::InboundFqdn]
|
|
277
301
|
#
|
|
302
|
+
# @param ios_push_credential_id [String, nil] The uuid of the push credential for Ios
|
|
303
|
+
#
|
|
304
|
+
# @param jitter_buffer [Telnyx::Models::FqdnConnection::JitterBuffer] Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams o
|
|
305
|
+
#
|
|
278
306
|
# @param microsoft_teams_sbc [Boolean] The connection is enabled for Microsoft Teams Direct Routing.
|
|
279
307
|
#
|
|
280
308
|
# @param noise_suppression [Symbol, Telnyx::Models::FqdnConnection::NoiseSuppression] Controls when noise suppression is applied to calls. When set to 'inbound', nois
|
|
@@ -319,6 +347,46 @@ module Telnyx
|
|
|
319
347
|
#
|
|
320
348
|
# @param webhook_timeout_secs [Integer, nil] Specifies how many seconds to wait before timing out a webhook.
|
|
321
349
|
|
|
350
|
+
# @see Telnyx::Models::FqdnConnection#jitter_buffer
|
|
351
|
+
class JitterBuffer < Telnyx::Internal::Type::BaseModel
|
|
352
|
+
# @!attribute enable_jitter_buffer
|
|
353
|
+
# Enables Jitter Buffer for RTP streams of SIP Trunking calls. The feature is off
|
|
354
|
+
# unless enabled.
|
|
355
|
+
#
|
|
356
|
+
# @return [Boolean, nil]
|
|
357
|
+
optional :enable_jitter_buffer, Telnyx::Internal::Type::Boolean
|
|
358
|
+
|
|
359
|
+
# @!attribute jitterbuffer_msec_max
|
|
360
|
+
# The maximum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
361
|
+
# no effect if enable_jitter_buffer is not true.
|
|
362
|
+
#
|
|
363
|
+
# @return [Integer, nil]
|
|
364
|
+
optional :jitterbuffer_msec_max, Integer
|
|
365
|
+
|
|
366
|
+
# @!attribute jitterbuffer_msec_min
|
|
367
|
+
# The minimum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
368
|
+
# no effect if enable_jitter_buffer is not true.
|
|
369
|
+
#
|
|
370
|
+
# @return [Integer, nil]
|
|
371
|
+
optional :jitterbuffer_msec_min, Integer
|
|
372
|
+
|
|
373
|
+
# @!method initialize(enable_jitter_buffer: nil, jitterbuffer_msec_max: nil, jitterbuffer_msec_min: nil)
|
|
374
|
+
# Some parameter documentations has been truncated, see
|
|
375
|
+
# {Telnyx::Models::FqdnConnection::JitterBuffer} for more details.
|
|
376
|
+
#
|
|
377
|
+
# Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams
|
|
378
|
+
# of SIP Trunking calls. The feature is off unless enabled. You may define min and
|
|
379
|
+
# max values in msec for customized buffering behaviors. Larger values add latency
|
|
380
|
+
# but tolerate more jitter, while smaller values reduce latency but are more
|
|
381
|
+
# sensitive to jitter and reordering.
|
|
382
|
+
#
|
|
383
|
+
# @param enable_jitter_buffer [Boolean] Enables Jitter Buffer for RTP streams of SIP Trunking calls. The feature is off
|
|
384
|
+
#
|
|
385
|
+
# @param jitterbuffer_msec_max [Integer] The maximum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
386
|
+
#
|
|
387
|
+
# @param jitterbuffer_msec_min [Integer] The minimum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
388
|
+
end
|
|
389
|
+
|
|
322
390
|
# Controls when noise suppression is applied to calls. When set to 'inbound',
|
|
323
391
|
# noise suppression is applied to incoming audio. When set to 'outbound', it's
|
|
324
392
|
# applied to outgoing audio. When set to 'both', it's applied in both directions.
|
|
@@ -79,6 +79,16 @@ module Telnyx
|
|
|
79
79
|
# @return [String, nil]
|
|
80
80
|
optional :ios_push_credential_id, String, nil?: true
|
|
81
81
|
|
|
82
|
+
# @!attribute jitter_buffer
|
|
83
|
+
# Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams
|
|
84
|
+
# of SIP Trunking calls. The feature is off unless enabled. You may define min and
|
|
85
|
+
# max values in msec for customized buffering behaviors. Larger values add latency
|
|
86
|
+
# but tolerate more jitter, while smaller values reduce latency but are more
|
|
87
|
+
# sensitive to jitter and reordering.
|
|
88
|
+
#
|
|
89
|
+
# @return [Telnyx::Models::FqdnConnectionCreateParams::JitterBuffer, nil]
|
|
90
|
+
optional :jitter_buffer, -> { Telnyx::FqdnConnectionCreateParams::JitterBuffer }
|
|
91
|
+
|
|
82
92
|
# @!attribute microsoft_teams_sbc
|
|
83
93
|
# When enabled, the connection will be created for Microsoft Teams Direct Routing.
|
|
84
94
|
# A \*.mstsbc.telnyx.tech FQDN will be created for the connection automatically.
|
|
@@ -161,7 +171,7 @@ module Telnyx
|
|
|
161
171
|
# @return [Integer, nil]
|
|
162
172
|
optional :webhook_timeout_secs, Integer, nil?: true
|
|
163
173
|
|
|
164
|
-
# @!method initialize(connection_name:, active: nil, anchorsite_override: nil, android_push_credential_id: nil, call_cost_in_webhooks: nil, default_on_hold_comfort_noise_enabled: nil, dtmf_type: nil, encode_contact_header_enabled: nil, encrypted_media: nil, inbound: nil, ios_push_credential_id: nil, microsoft_teams_sbc: nil, noise_suppression: nil, noise_suppression_details: nil, onnet_t38_passthrough_enabled: nil, outbound: nil, rtcp_settings: nil, tags: nil, transport_protocol: nil, webhook_api_version: nil, webhook_event_failover_url: nil, webhook_event_url: nil, webhook_timeout_secs: nil, request_options: {})
|
|
174
|
+
# @!method initialize(connection_name:, active: nil, anchorsite_override: nil, android_push_credential_id: nil, call_cost_in_webhooks: nil, default_on_hold_comfort_noise_enabled: nil, dtmf_type: nil, encode_contact_header_enabled: nil, encrypted_media: nil, inbound: nil, ios_push_credential_id: nil, jitter_buffer: nil, microsoft_teams_sbc: nil, noise_suppression: nil, noise_suppression_details: nil, onnet_t38_passthrough_enabled: nil, outbound: nil, rtcp_settings: nil, tags: nil, transport_protocol: nil, webhook_api_version: nil, webhook_event_failover_url: nil, webhook_event_url: nil, webhook_timeout_secs: nil, request_options: {})
|
|
165
175
|
# Some parameter documentations has been truncated, see
|
|
166
176
|
# {Telnyx::Models::FqdnConnectionCreateParams} for more details.
|
|
167
177
|
#
|
|
@@ -187,6 +197,8 @@ module Telnyx
|
|
|
187
197
|
#
|
|
188
198
|
# @param ios_push_credential_id [String, nil] The uuid of the push credential for Ios
|
|
189
199
|
#
|
|
200
|
+
# @param jitter_buffer [Telnyx::Models::FqdnConnectionCreateParams::JitterBuffer] Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams o
|
|
201
|
+
#
|
|
190
202
|
# @param microsoft_teams_sbc [Boolean] When enabled, the connection will be created for Microsoft Teams Direct Routing.
|
|
191
203
|
#
|
|
192
204
|
# @param noise_suppression [Symbol, Telnyx::Models::FqdnConnectionCreateParams::NoiseSuppression] Controls when noise suppression is applied to calls. When set to 'inbound', nois
|
|
@@ -213,6 +225,45 @@ module Telnyx
|
|
|
213
225
|
#
|
|
214
226
|
# @param request_options [Telnyx::RequestOptions, Hash{Symbol=>Object}]
|
|
215
227
|
|
|
228
|
+
class JitterBuffer < Telnyx::Internal::Type::BaseModel
|
|
229
|
+
# @!attribute enable_jitter_buffer
|
|
230
|
+
# Enables Jitter Buffer for RTP streams of SIP Trunking calls. The feature is off
|
|
231
|
+
# unless enabled.
|
|
232
|
+
#
|
|
233
|
+
# @return [Boolean, nil]
|
|
234
|
+
optional :enable_jitter_buffer, Telnyx::Internal::Type::Boolean
|
|
235
|
+
|
|
236
|
+
# @!attribute jitterbuffer_msec_max
|
|
237
|
+
# The maximum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
238
|
+
# no effect if enable_jitter_buffer is not true.
|
|
239
|
+
#
|
|
240
|
+
# @return [Integer, nil]
|
|
241
|
+
optional :jitterbuffer_msec_max, Integer
|
|
242
|
+
|
|
243
|
+
# @!attribute jitterbuffer_msec_min
|
|
244
|
+
# The minimum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
245
|
+
# no effect if enable_jitter_buffer is not true.
|
|
246
|
+
#
|
|
247
|
+
# @return [Integer, nil]
|
|
248
|
+
optional :jitterbuffer_msec_min, Integer
|
|
249
|
+
|
|
250
|
+
# @!method initialize(enable_jitter_buffer: nil, jitterbuffer_msec_max: nil, jitterbuffer_msec_min: nil)
|
|
251
|
+
# Some parameter documentations has been truncated, see
|
|
252
|
+
# {Telnyx::Models::FqdnConnectionCreateParams::JitterBuffer} for more details.
|
|
253
|
+
#
|
|
254
|
+
# Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams
|
|
255
|
+
# of SIP Trunking calls. The feature is off unless enabled. You may define min and
|
|
256
|
+
# max values in msec for customized buffering behaviors. Larger values add latency
|
|
257
|
+
# but tolerate more jitter, while smaller values reduce latency but are more
|
|
258
|
+
# sensitive to jitter and reordering.
|
|
259
|
+
#
|
|
260
|
+
# @param enable_jitter_buffer [Boolean] Enables Jitter Buffer for RTP streams of SIP Trunking calls. The feature is off
|
|
261
|
+
#
|
|
262
|
+
# @param jitterbuffer_msec_max [Integer] The maximum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
263
|
+
#
|
|
264
|
+
# @param jitterbuffer_msec_min [Integer] The minimum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
265
|
+
end
|
|
266
|
+
|
|
216
267
|
# Controls when noise suppression is applied to calls. When set to 'inbound',
|
|
217
268
|
# noise suppression is applied to incoming audio. When set to 'outbound', it's
|
|
218
269
|
# applied to outgoing audio. When set to 'both', it's applied in both directions.
|
|
@@ -79,6 +79,16 @@ module Telnyx
|
|
|
79
79
|
# @return [String, nil]
|
|
80
80
|
optional :ios_push_credential_id, String, nil?: true
|
|
81
81
|
|
|
82
|
+
# @!attribute jitter_buffer
|
|
83
|
+
# Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams
|
|
84
|
+
# of SIP Trunking calls. The feature is off unless enabled. You may define min and
|
|
85
|
+
# max values in msec for customized buffering behaviors. Larger values add latency
|
|
86
|
+
# but tolerate more jitter, while smaller values reduce latency but are more
|
|
87
|
+
# sensitive to jitter and reordering.
|
|
88
|
+
#
|
|
89
|
+
# @return [Telnyx::Models::FqdnConnectionUpdateParams::JitterBuffer, nil]
|
|
90
|
+
optional :jitter_buffer, -> { Telnyx::FqdnConnectionUpdateParams::JitterBuffer }
|
|
91
|
+
|
|
82
92
|
# @!attribute noise_suppression
|
|
83
93
|
# Controls when noise suppression is applied to calls. When set to 'inbound',
|
|
84
94
|
# noise suppression is applied to incoming audio. When set to 'outbound', it's
|
|
@@ -154,7 +164,7 @@ module Telnyx
|
|
|
154
164
|
# @return [Integer, nil]
|
|
155
165
|
optional :webhook_timeout_secs, Integer, nil?: true
|
|
156
166
|
|
|
157
|
-
# @!method initialize(active: nil, anchorsite_override: nil, android_push_credential_id: nil, call_cost_in_webhooks: nil, connection_name: nil, default_on_hold_comfort_noise_enabled: nil, dtmf_type: nil, encode_contact_header_enabled: nil, encrypted_media: nil, inbound: nil, ios_push_credential_id: nil, noise_suppression: nil, noise_suppression_details: nil, onnet_t38_passthrough_enabled: nil, outbound: nil, rtcp_settings: nil, tags: nil, transport_protocol: nil, webhook_api_version: nil, webhook_event_failover_url: nil, webhook_event_url: nil, webhook_timeout_secs: nil, request_options: {})
|
|
167
|
+
# @!method initialize(active: nil, anchorsite_override: nil, android_push_credential_id: nil, call_cost_in_webhooks: nil, connection_name: nil, default_on_hold_comfort_noise_enabled: nil, dtmf_type: nil, encode_contact_header_enabled: nil, encrypted_media: nil, inbound: nil, ios_push_credential_id: nil, jitter_buffer: nil, noise_suppression: nil, noise_suppression_details: nil, onnet_t38_passthrough_enabled: nil, outbound: nil, rtcp_settings: nil, tags: nil, transport_protocol: nil, webhook_api_version: nil, webhook_event_failover_url: nil, webhook_event_url: nil, webhook_timeout_secs: nil, request_options: {})
|
|
158
168
|
# Some parameter documentations has been truncated, see
|
|
159
169
|
# {Telnyx::Models::FqdnConnectionUpdateParams} for more details.
|
|
160
170
|
#
|
|
@@ -180,6 +190,8 @@ module Telnyx
|
|
|
180
190
|
#
|
|
181
191
|
# @param ios_push_credential_id [String, nil] The uuid of the push credential for Ios
|
|
182
192
|
#
|
|
193
|
+
# @param jitter_buffer [Telnyx::Models::FqdnConnectionUpdateParams::JitterBuffer] Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams o
|
|
194
|
+
#
|
|
183
195
|
# @param noise_suppression [Symbol, Telnyx::Models::FqdnConnectionUpdateParams::NoiseSuppression] Controls when noise suppression is applied to calls. When set to 'inbound', nois
|
|
184
196
|
#
|
|
185
197
|
# @param noise_suppression_details [Telnyx::Models::ConnectionNoiseSuppressionDetails] Configuration options for noise suppression. These settings are stored regardles
|
|
@@ -204,6 +216,45 @@ module Telnyx
|
|
|
204
216
|
#
|
|
205
217
|
# @param request_options [Telnyx::RequestOptions, Hash{Symbol=>Object}]
|
|
206
218
|
|
|
219
|
+
class JitterBuffer < Telnyx::Internal::Type::BaseModel
|
|
220
|
+
# @!attribute enable_jitter_buffer
|
|
221
|
+
# Enables Jitter Buffer for RTP streams of SIP Trunking calls. The feature is off
|
|
222
|
+
# unless enabled.
|
|
223
|
+
#
|
|
224
|
+
# @return [Boolean, nil]
|
|
225
|
+
optional :enable_jitter_buffer, Telnyx::Internal::Type::Boolean
|
|
226
|
+
|
|
227
|
+
# @!attribute jitterbuffer_msec_max
|
|
228
|
+
# The maximum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
229
|
+
# no effect if enable_jitter_buffer is not true.
|
|
230
|
+
#
|
|
231
|
+
# @return [Integer, nil]
|
|
232
|
+
optional :jitterbuffer_msec_max, Integer
|
|
233
|
+
|
|
234
|
+
# @!attribute jitterbuffer_msec_min
|
|
235
|
+
# The minimum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
236
|
+
# no effect if enable_jitter_buffer is not true.
|
|
237
|
+
#
|
|
238
|
+
# @return [Integer, nil]
|
|
239
|
+
optional :jitterbuffer_msec_min, Integer
|
|
240
|
+
|
|
241
|
+
# @!method initialize(enable_jitter_buffer: nil, jitterbuffer_msec_max: nil, jitterbuffer_msec_min: nil)
|
|
242
|
+
# Some parameter documentations has been truncated, see
|
|
243
|
+
# {Telnyx::Models::FqdnConnectionUpdateParams::JitterBuffer} for more details.
|
|
244
|
+
#
|
|
245
|
+
# Configuration options for Jitter Buffer. Enables Jitter Buffer for RTP streams
|
|
246
|
+
# of SIP Trunking calls. The feature is off unless enabled. You may define min and
|
|
247
|
+
# max values in msec for customized buffering behaviors. Larger values add latency
|
|
248
|
+
# but tolerate more jitter, while smaller values reduce latency but are more
|
|
249
|
+
# sensitive to jitter and reordering.
|
|
250
|
+
#
|
|
251
|
+
# @param enable_jitter_buffer [Boolean] Enables Jitter Buffer for RTP streams of SIP Trunking calls. The feature is off
|
|
252
|
+
#
|
|
253
|
+
# @param jitterbuffer_msec_max [Integer] The maximum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
254
|
+
#
|
|
255
|
+
# @param jitterbuffer_msec_min [Integer] The minimum jitter buffer size in milliseconds. Must be between 40 and 400. Has
|
|
256
|
+
end
|
|
257
|
+
|
|
207
258
|
# Controls when noise suppression is applied to calls. When set to 'inbound',
|
|
208
259
|
# noise suppression is applied to incoming audio. When set to 'outbound', it's
|
|
209
260
|
# applied to outgoing audio. When set to 'both', it's applied in both directions.
|