twilio-ruby 5.70.0 → 5.72.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/CHANGES.md +47 -0
- data/Makefile +6 -2
- data/README.md +2 -2
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +4 -4
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +3 -3
- data/lib/twilio-ruby/rest/client.rb +14 -0
- data/lib/twilio-ruby/rest/flex_api/v1/configuration.rb +14 -0
- data/lib/twilio-ruby/rest/media/v1/player_streamer.rb +4 -5
- data/lib/twilio-ruby/rest/messaging/v1/tollfree_verification.rb +559 -0
- data/lib/twilio-ruby/rest/messaging/v1.rb +16 -0
- data/lib/twilio-ruby/rest/messaging.rb +8 -0
- data/lib/twilio-ruby/rest/microvisor/v1/app.rb +305 -0
- data/lib/twilio-ruby/rest/microvisor/v1/device.rb +332 -0
- data/lib/twilio-ruby/rest/microvisor/v1.rb +60 -0
- data/lib/twilio-ruby/rest/microvisor.rb +54 -0
- data/lib/twilio-ruby/rest/preview.rb +0 -25
- data/lib/twilio-ruby/rest/routes/v2/phone_number.rb +235 -0
- data/lib/twilio-ruby/rest/routes/v2/sip_domain.rb +231 -0
- data/lib/twilio-ruby/rest/routes/v2/trunk.rb +235 -0
- data/lib/twilio-ruby/rest/routes/v2.rb +76 -0
- data/lib/twilio-ruby/rest/routes.rb +62 -0
- data/lib/twilio-ruby/rest/supersim/v1/fleet.rb +16 -6
- data/lib/twilio-ruby/rest/verify/v2/safelist.rb +215 -0
- data/lib/twilio-ruby/rest/verify/v2/service/verification.rb +7 -8
- data/lib/twilio-ruby/rest/verify/v2.rb +18 -0
- data/lib/twilio-ruby/rest/verify.rb +8 -0
- data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_anonymize.rb +240 -0
- data/lib/twilio-ruby/rest/video/v1/room/room_participant.rb +16 -0
- data/lib/twilio-ruby/security/request_validator.rb +1 -1
- data/lib/twilio-ruby/version.rb +1 -1
- metadata +14 -8
- data/lib/twilio-ruby/rest/preview/bulk_exports/export/day.rb +0 -294
- data/lib/twilio-ruby/rest/preview/bulk_exports/export/export_custom_job.rb +0 -275
- data/lib/twilio-ruby/rest/preview/bulk_exports/export/job.rb +0 -249
- data/lib/twilio-ruby/rest/preview/bulk_exports/export.rb +0 -251
- data/lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb +0 -234
- data/lib/twilio-ruby/rest/preview/bulk_exports.rb +0 -62
@@ -1,234 +0,0 @@
|
|
1
|
-
##
|
2
|
-
# This code was generated by
|
3
|
-
# \ / _ _ _| _ _
|
4
|
-
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
5
|
-
# / /
|
6
|
-
#
|
7
|
-
# frozen_string_literal: true
|
8
|
-
|
9
|
-
module Twilio
|
10
|
-
module REST
|
11
|
-
class Preview < Domain
|
12
|
-
class BulkExports < Version
|
13
|
-
##
|
14
|
-
# PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
|
15
|
-
class ExportConfigurationList < ListResource
|
16
|
-
##
|
17
|
-
# Initialize the ExportConfigurationList
|
18
|
-
# @param [Version] version Version that contains the resource
|
19
|
-
# @return [ExportConfigurationList] ExportConfigurationList
|
20
|
-
def initialize(version)
|
21
|
-
super(version)
|
22
|
-
|
23
|
-
# Path Solution
|
24
|
-
@solution = {}
|
25
|
-
end
|
26
|
-
|
27
|
-
##
|
28
|
-
# Provide a user friendly representation
|
29
|
-
def to_s
|
30
|
-
'#<Twilio.Preview.BulkExports.ExportConfigurationList>'
|
31
|
-
end
|
32
|
-
end
|
33
|
-
|
34
|
-
##
|
35
|
-
# PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
|
36
|
-
class ExportConfigurationPage < Page
|
37
|
-
##
|
38
|
-
# Initialize the ExportConfigurationPage
|
39
|
-
# @param [Version] version Version that contains the resource
|
40
|
-
# @param [Response] response Response from the API
|
41
|
-
# @param [Hash] solution Path solution for the resource
|
42
|
-
# @return [ExportConfigurationPage] ExportConfigurationPage
|
43
|
-
def initialize(version, response, solution)
|
44
|
-
super(version, response)
|
45
|
-
|
46
|
-
# Path Solution
|
47
|
-
@solution = solution
|
48
|
-
end
|
49
|
-
|
50
|
-
##
|
51
|
-
# Build an instance of ExportConfigurationInstance
|
52
|
-
# @param [Hash] payload Payload response from the API
|
53
|
-
# @return [ExportConfigurationInstance] ExportConfigurationInstance
|
54
|
-
def get_instance(payload)
|
55
|
-
ExportConfigurationInstance.new(@version, payload, )
|
56
|
-
end
|
57
|
-
|
58
|
-
##
|
59
|
-
# Provide a user friendly representation
|
60
|
-
def to_s
|
61
|
-
'<Twilio.Preview.BulkExports.ExportConfigurationPage>'
|
62
|
-
end
|
63
|
-
end
|
64
|
-
|
65
|
-
##
|
66
|
-
# PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
|
67
|
-
class ExportConfigurationContext < InstanceContext
|
68
|
-
##
|
69
|
-
# Initialize the ExportConfigurationContext
|
70
|
-
# @param [Version] version Version that contains the resource
|
71
|
-
# @param [String] resource_type The type of communication – Messages, Calls,
|
72
|
-
# Conferences, and Participants
|
73
|
-
# @return [ExportConfigurationContext] ExportConfigurationContext
|
74
|
-
def initialize(version, resource_type)
|
75
|
-
super(version)
|
76
|
-
|
77
|
-
# Path Solution
|
78
|
-
@solution = {resource_type: resource_type, }
|
79
|
-
@uri = "/Exports/#{@solution[:resource_type]}/Configuration"
|
80
|
-
end
|
81
|
-
|
82
|
-
##
|
83
|
-
# Fetch the ExportConfigurationInstance
|
84
|
-
# @return [ExportConfigurationInstance] Fetched ExportConfigurationInstance
|
85
|
-
def fetch
|
86
|
-
payload = @version.fetch('GET', @uri)
|
87
|
-
|
88
|
-
ExportConfigurationInstance.new(@version, payload, resource_type: @solution[:resource_type], )
|
89
|
-
end
|
90
|
-
|
91
|
-
##
|
92
|
-
# Update the ExportConfigurationInstance
|
93
|
-
# @param [Boolean] enabled If true, Twilio will automatically generate every day's
|
94
|
-
# file when the day is over.
|
95
|
-
# @param [String] webhook_url Stores the URL destination for the method specified
|
96
|
-
# in webhook_method.
|
97
|
-
# @param [String] webhook_method Sets whether Twilio should call a webhook URL
|
98
|
-
# when the automatic generation is complete, using GET or POST. The actual
|
99
|
-
# destination is set in the webhook_url
|
100
|
-
# @return [ExportConfigurationInstance] Updated ExportConfigurationInstance
|
101
|
-
def update(enabled: :unset, webhook_url: :unset, webhook_method: :unset)
|
102
|
-
data = Twilio::Values.of({
|
103
|
-
'Enabled' => enabled,
|
104
|
-
'WebhookUrl' => webhook_url,
|
105
|
-
'WebhookMethod' => webhook_method,
|
106
|
-
})
|
107
|
-
|
108
|
-
payload = @version.update('POST', @uri, data: data)
|
109
|
-
|
110
|
-
ExportConfigurationInstance.new(@version, payload, resource_type: @solution[:resource_type], )
|
111
|
-
end
|
112
|
-
|
113
|
-
##
|
114
|
-
# Provide a user friendly representation
|
115
|
-
def to_s
|
116
|
-
context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
|
117
|
-
"#<Twilio.Preview.BulkExports.ExportConfigurationContext #{context}>"
|
118
|
-
end
|
119
|
-
|
120
|
-
##
|
121
|
-
# Provide a detailed, user friendly representation
|
122
|
-
def inspect
|
123
|
-
context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
|
124
|
-
"#<Twilio.Preview.BulkExports.ExportConfigurationContext #{context}>"
|
125
|
-
end
|
126
|
-
end
|
127
|
-
|
128
|
-
##
|
129
|
-
# PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
|
130
|
-
class ExportConfigurationInstance < InstanceResource
|
131
|
-
##
|
132
|
-
# Initialize the ExportConfigurationInstance
|
133
|
-
# @param [Version] version Version that contains the resource
|
134
|
-
# @param [Hash] payload payload that contains response from Twilio
|
135
|
-
# @param [String] resource_type The type of communication – Messages, Calls,
|
136
|
-
# Conferences, and Participants
|
137
|
-
# @return [ExportConfigurationInstance] ExportConfigurationInstance
|
138
|
-
def initialize(version, payload, resource_type: nil)
|
139
|
-
super(version)
|
140
|
-
|
141
|
-
# Marshaled Properties
|
142
|
-
@properties = {
|
143
|
-
'enabled' => payload['enabled'],
|
144
|
-
'webhook_url' => payload['webhook_url'],
|
145
|
-
'webhook_method' => payload['webhook_method'],
|
146
|
-
'resource_type' => payload['resource_type'],
|
147
|
-
'url' => payload['url'],
|
148
|
-
}
|
149
|
-
|
150
|
-
# Context
|
151
|
-
@instance_context = nil
|
152
|
-
@params = {'resource_type' => resource_type || @properties['resource_type'], }
|
153
|
-
end
|
154
|
-
|
155
|
-
##
|
156
|
-
# Generate an instance context for the instance, the context is capable of
|
157
|
-
# performing various actions. All instance actions are proxied to the context
|
158
|
-
# @return [ExportConfigurationContext] ExportConfigurationContext for this ExportConfigurationInstance
|
159
|
-
def context
|
160
|
-
unless @instance_context
|
161
|
-
@instance_context = ExportConfigurationContext.new(@version, @params['resource_type'], )
|
162
|
-
end
|
163
|
-
@instance_context
|
164
|
-
end
|
165
|
-
|
166
|
-
##
|
167
|
-
# @return [Boolean] Whether files are automatically generated
|
168
|
-
def enabled
|
169
|
-
@properties['enabled']
|
170
|
-
end
|
171
|
-
|
172
|
-
##
|
173
|
-
# @return [String] URL targeted at export
|
174
|
-
def webhook_url
|
175
|
-
@properties['webhook_url']
|
176
|
-
end
|
177
|
-
|
178
|
-
##
|
179
|
-
# @return [String] Whether to GET or POST to the webhook url
|
180
|
-
def webhook_method
|
181
|
-
@properties['webhook_method']
|
182
|
-
end
|
183
|
-
|
184
|
-
##
|
185
|
-
# @return [String] The type of communication – Messages, Calls, Conferences, and Participants
|
186
|
-
def resource_type
|
187
|
-
@properties['resource_type']
|
188
|
-
end
|
189
|
-
|
190
|
-
##
|
191
|
-
# @return [String] The URL of this resource.
|
192
|
-
def url
|
193
|
-
@properties['url']
|
194
|
-
end
|
195
|
-
|
196
|
-
##
|
197
|
-
# Fetch the ExportConfigurationInstance
|
198
|
-
# @return [ExportConfigurationInstance] Fetched ExportConfigurationInstance
|
199
|
-
def fetch
|
200
|
-
context.fetch
|
201
|
-
end
|
202
|
-
|
203
|
-
##
|
204
|
-
# Update the ExportConfigurationInstance
|
205
|
-
# @param [Boolean] enabled If true, Twilio will automatically generate every day's
|
206
|
-
# file when the day is over.
|
207
|
-
# @param [String] webhook_url Stores the URL destination for the method specified
|
208
|
-
# in webhook_method.
|
209
|
-
# @param [String] webhook_method Sets whether Twilio should call a webhook URL
|
210
|
-
# when the automatic generation is complete, using GET or POST. The actual
|
211
|
-
# destination is set in the webhook_url
|
212
|
-
# @return [ExportConfigurationInstance] Updated ExportConfigurationInstance
|
213
|
-
def update(enabled: :unset, webhook_url: :unset, webhook_method: :unset)
|
214
|
-
context.update(enabled: enabled, webhook_url: webhook_url, webhook_method: webhook_method, )
|
215
|
-
end
|
216
|
-
|
217
|
-
##
|
218
|
-
# Provide a user friendly representation
|
219
|
-
def to_s
|
220
|
-
values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
|
221
|
-
"<Twilio.Preview.BulkExports.ExportConfigurationInstance #{values}>"
|
222
|
-
end
|
223
|
-
|
224
|
-
##
|
225
|
-
# Provide a detailed, user friendly representation
|
226
|
-
def inspect
|
227
|
-
values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
|
228
|
-
"<Twilio.Preview.BulkExports.ExportConfigurationInstance #{values}>"
|
229
|
-
end
|
230
|
-
end
|
231
|
-
end
|
232
|
-
end
|
233
|
-
end
|
234
|
-
end
|
@@ -1,62 +0,0 @@
|
|
1
|
-
##
|
2
|
-
# This code was generated by
|
3
|
-
# \ / _ _ _| _ _
|
4
|
-
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
5
|
-
# / /
|
6
|
-
#
|
7
|
-
# frozen_string_literal: true
|
8
|
-
|
9
|
-
module Twilio
|
10
|
-
module REST
|
11
|
-
class Preview
|
12
|
-
class BulkExports < Version
|
13
|
-
##
|
14
|
-
# Initialize the BulkExports version of Preview
|
15
|
-
def initialize(domain)
|
16
|
-
super
|
17
|
-
@version = 'BulkExports'
|
18
|
-
@exports = nil
|
19
|
-
@export_configuration = nil
|
20
|
-
end
|
21
|
-
|
22
|
-
##
|
23
|
-
# @param [String] resource_type The type of communication – Messages, Calls,
|
24
|
-
# Conferences, and Participants
|
25
|
-
# @return [Twilio::REST::Preview::BulkExports::ExportContext] if resource_type was passed.
|
26
|
-
# @return [Twilio::REST::Preview::BulkExports::ExportList]
|
27
|
-
def exports(resource_type=:unset)
|
28
|
-
if resource_type.nil?
|
29
|
-
raise ArgumentError, 'resource_type cannot be nil'
|
30
|
-
end
|
31
|
-
if resource_type == :unset
|
32
|
-
@exports ||= ExportList.new self
|
33
|
-
else
|
34
|
-
ExportContext.new(self, resource_type)
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
38
|
-
##
|
39
|
-
# @param [String] resource_type The type of communication – Messages, Calls,
|
40
|
-
# Conferences, and Participants
|
41
|
-
# @return [Twilio::REST::Preview::BulkExports::ExportConfigurationContext] if resource_type was passed.
|
42
|
-
# @return [Twilio::REST::Preview::BulkExports::ExportConfigurationList]
|
43
|
-
def export_configuration(resource_type=:unset)
|
44
|
-
if resource_type.nil?
|
45
|
-
raise ArgumentError, 'resource_type cannot be nil'
|
46
|
-
end
|
47
|
-
if resource_type == :unset
|
48
|
-
@export_configuration ||= ExportConfigurationList.new self
|
49
|
-
else
|
50
|
-
ExportConfigurationContext.new(self, resource_type)
|
51
|
-
end
|
52
|
-
end
|
53
|
-
|
54
|
-
##
|
55
|
-
# Provide a user friendly representation
|
56
|
-
def to_s
|
57
|
-
'<Twilio::REST::Preview::BulkExports>'
|
58
|
-
end
|
59
|
-
end
|
60
|
-
end
|
61
|
-
end
|
62
|
-
end
|