kaltura-client 17.1.0 → 17.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e443d9849f34da36a536e7a34293e79b022ffe8f3d7faf7f22303a03bd7519c
4
- data.tar.gz: 87a53a2dd61dfaf002956717a90ccc6933bbbbebe34e94c66f5718ec86a781c2
3
+ metadata.gz: 2033f170a1060937b6c30760d980d718d19e6d7697de6b124323d89b14e5188a
4
+ data.tar.gz: 16255944a8475e9372603f33eedd68ed5adb3ed21ecbaa2e1e23f786dfcf5274
5
5
  SHA512:
6
- metadata.gz: c25e7338547c1f0e6adb1eca8132ccec2b5be777af29a8bbdf51007ce6962b7acf1d9d774c94c184545ae7c548a44820abd902b3bb67e9833e4e6bce85c11f5b
7
- data.tar.gz: 96039da1b37b7d205f57ec450c3ef5c21c139c5f942c8a8cb3f723ca7752e770eaa9851b691b0b1b357b4868a44df6cc88653d23667f44d6009b50f760e9043e
6
+ metadata.gz: e3557bb3c30a334ddd8974e36a554beea0603153284bafd97dce4a8061e4c73af1f2d3d9ce41da10ccd537c677eb76117dcdd81c2540ea37cb67a1b33c594eee
7
+ data.tar.gz: 7ddbbb2025c38d18c893186844debbddbcbbbdc31b3b46f991a6291890eca23481efd68dd79d9c18d50567c0c456293d5bacdfe797f802c97ec76709002c9f56
data/README CHANGED
@@ -1,5 +1,5 @@
1
1
  Kaltura Ruby API Client Library.
2
- Compatible with Kaltura server version 17.1.0 and above.
2
+ Compatible with Kaltura server version 17.2.0 and above.
3
3
 
4
4
  This source contains:
5
5
  - The Kaltura client library (kaltura_client_base.rb)
@@ -6310,8 +6310,8 @@ module Kaltura
6310
6310
 
6311
6311
  def initialize(client)
6312
6312
  super(client)
6313
- self.client_tag = 'ruby:21-05-06'
6314
- self.api_version = '17.1.0'
6313
+ self.client_tag = 'ruby:21-05-26'
6314
+ self.api_version = '17.2.0'
6315
6315
  end
6316
6316
 
6317
6317
  def client_tag=(value)
@@ -336,6 +336,8 @@ module Kaltura
336
336
  attr_accessor :input_entitled_users_edit
337
337
  # The input entitled users publish to set on the entry
338
338
  attr_accessor :input_entitled_users_publish
339
+ # The input entitled users view to set on the entry
340
+ attr_accessor :input_entitled_users_view
339
341
  # Should clear the media repurposing data and therefore reset the process
340
342
  attr_accessor :reset_media_repurposing_process
341
343
 
@@ -372,6 +374,9 @@ module Kaltura
372
374
  if xml_element.elements['inputEntitledUsersPublish'] != nil
373
375
  self.input_entitled_users_publish = xml_element.elements['inputEntitledUsersPublish'].text
374
376
  end
377
+ if xml_element.elements['inputEntitledUsersView'] != nil
378
+ self.input_entitled_users_view = xml_element.elements['inputEntitledUsersView'].text
379
+ end
375
380
  if xml_element.elements['resetMediaRepurposingProcess'] != nil
376
381
  self.reset_media_repurposing_process = xml_element.elements['resetMediaRepurposingProcess'].text
377
382
  end
@@ -58,6 +58,9 @@ module Kaltura
58
58
  attr_accessor :deletion_policy
59
59
  attr_accessor :enable_zoom_transcription
60
60
  attr_accessor :zoom_account_description
61
+ attr_accessor :created_at
62
+ attr_accessor :updated_at
63
+ attr_accessor :enable_meeting_upload
61
64
 
62
65
  def enable_recording_upload=(val)
63
66
  @enable_recording_upload = val.to_i
@@ -83,6 +86,9 @@ module Kaltura
83
86
  def enable_zoom_transcription=(val)
84
87
  @enable_zoom_transcription = val.to_i
85
88
  end
89
+ def enable_meeting_upload=(val)
90
+ @enable_meeting_upload = val.to_i
91
+ end
86
92
 
87
93
  def from_xml(xml_element)
88
94
  super
@@ -131,6 +137,15 @@ module Kaltura
131
137
  if xml_element.elements['zoomAccountDescription'] != nil
132
138
  self.zoom_account_description = xml_element.elements['zoomAccountDescription'].text
133
139
  end
140
+ if xml_element.elements['createdAt'] != nil
141
+ self.created_at = xml_element.elements['createdAt'].text
142
+ end
143
+ if xml_element.elements['updatedAt'] != nil
144
+ self.updated_at = xml_element.elements['updatedAt'].text
145
+ end
146
+ if xml_element.elements['enableMeetingUpload'] != nil
147
+ self.enable_meeting_upload = xml_element.elements['enableMeetingUpload'].text
148
+ end
134
149
  end
135
150
 
136
151
  end
@@ -211,22 +226,22 @@ module Kaltura
211
226
  return client.do_queue()
212
227
  end
213
228
 
214
- # @return [string]
229
+ # load html page the that will ask the user for its KMC URL, derive the region of the user from it,
230
+ # and redirect to the registration page in the correct region, while forwarding the necessary code for registration
231
+ # @return []
215
232
  def oauth_validation()
216
233
  kparams = {}
217
- client.queue_service_action_call('vendor_zoomvendor', 'oauthValidation', 'string', kparams)
234
+ client.queue_service_action_call('vendor_zoomvendor', 'oauthValidation', '', kparams)
218
235
  if (client.is_multirequest)
219
236
  return nil
220
237
  end
221
238
  return client.do_queue()
222
239
  end
223
240
 
224
- # load html page the that will ask the user for its KMC URL, derive the region of the user from it,
225
- # and redirect to the registration page in the correct region, while forwarding the necessary code for registration
226
- # @return []
241
+ # @return [string]
227
242
  def pre_oauth_validation()
228
243
  kparams = {}
229
- client.queue_service_action_call('vendor_zoomvendor', 'preOauthValidation', '', kparams)
244
+ client.queue_service_action_call('vendor_zoomvendor', 'preOauthValidation', 'string', kparams)
230
245
  if (client.is_multirequest)
231
246
  return nil
232
247
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kaltura-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 17.1.0
4
+ version: 17.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaltura Inc.