kaltura-client 18.1.0 → 18.4.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: 6d6fa6df4a05eeb9dfbe036a06f9ff9ea9adf97e6dc4275a381ea2dbf067a5c9
4
- data.tar.gz: e58c79d07a9245dc534d6effe35c96e1c5c96fe29961941ef8d57ce246c9dc02
3
+ metadata.gz: a15b62e4b056b53c3359a7a53c63a831dc72b9e7d8eeb98842b2e75330cc6fac
4
+ data.tar.gz: b5d3828090e82c7c922de09df34c6ae8f5ae7e06d0e5d80346e57b75f0025424
5
5
  SHA512:
6
- metadata.gz: 28facf79dd4011eabb409793f7b26561eb89379d5b743109cff74ef8d8d6e2a9fc4dc4b05fb67db6372eb4cc3e893a7e1f5759ee9644136016685f515ac6c7ab
7
- data.tar.gz: 9a7b70b19887390f206991283bbba2e35bd498a83bd66045c791a5a79cc259cc96252d14ad54c19fd55932d7873d0af8e83fd3da108a0a77e202c1d3532f1de1
6
+ metadata.gz: 6aabb46344a08d40e08d8b1dccdb32f21c00834bb9ff64e0e7602177b0f3fd92c0af713738b490e9fc491bbd99f750f9a7d7d0a281dba3f737857bf00caf062c
7
+ data.tar.gz: 61a2be8071e3e9aafaa7892d0206ed281e03cb5e260d6e970cf8d72c78f08156f180676a03ee86e7ab8435153e3751239113b4f1d9c59cd9abd9477a56ce8d95
data/README CHANGED
@@ -1,5 +1,5 @@
1
1
  Kaltura Ruby API Client Library.
2
- Compatible with Kaltura server version 18.1.0 and above.
2
+ Compatible with Kaltura server version 18.4.0 and above.
3
3
 
4
4
  This source contains:
5
5
  - The Kaltura client library (kaltura_client_base.rb)
@@ -1006,7 +1006,7 @@ module Kaltura
1006
1006
  return client.do_queue()
1007
1007
  end
1008
1008
 
1009
- # Move categories that belong to the same parent category to a target categroy - enabled only for ks with disable entitlement
1009
+ # Move categories that belong to the same parent category to a target category - enabled only for ks with disable entitlement
1010
1010
  # @return [bool]
1011
1011
  def move(category_ids, target_category_parent_id)
1012
1012
  kparams = {}
@@ -4503,7 +4503,7 @@ module Kaltura
4503
4503
  end
4504
4504
 
4505
4505
  # Will write to the event log a single line representing the event
4506
- # client version - will help interprete the line structure. different client versions might have slightly different data/data formats in the line
4506
+ # client version - will help interpret the line structure. Different client versions might have slightly different data/data formats in the line
4507
4507
  # event_id - number is the row number in yuval's excel
4508
4508
  # datetime - same format as MySql's datetime - can change and should reflect the time zone
4509
4509
  # session id - can be some big random number or guid
@@ -4536,7 +4536,7 @@ module Kaltura
4536
4536
  end
4537
4537
 
4538
4538
  # Will collect the kmcEvent sent form the KMC client
4539
- # // this will actually be an empty function because all events will be sent using GET and will anyway be logged in the apache log
4539
+ # // this will actually be an empty function because all events will be sent using GET and will anyway be logged in the Apache log
4540
4540
  # @return []
4541
4541
  def kmc_collect(kmc_event)
4542
4542
  kparams = {}
@@ -4982,7 +4982,7 @@ module Kaltura
4982
4982
  return client.get_serve_url()
4983
4983
  end
4984
4984
 
4985
- # Serves thumbnail by entry id and thumnail params id
4985
+ # Serves thumbnail by entry id and thumbnail params id
4986
4986
  # @return [file]
4987
4987
  def serve_by_entry_id(entry_id, thumb_param_id=KalturaNotImplemented)
4988
4988
  kparams = {}
@@ -6364,8 +6364,8 @@ module Kaltura
6364
6364
 
6365
6365
  def initialize(client)
6366
6366
  super(client)
6367
- self.client_tag = 'ruby:22-03-13'
6368
- self.api_version = '18.1.0'
6367
+ self.client_tag = 'ruby:22-05-09'
6368
+ self.api_version = '18.4.0'
6369
6369
  end
6370
6370
 
6371
6371
  def client_tag=(value)
data/lib/kaltura_enums.rb CHANGED
@@ -3566,6 +3566,7 @@ module Kaltura
3566
3566
  TOP_CUSTOM_VAR2 = "58"
3567
3567
  TOP_CUSTOM_VAR3 = "59"
3568
3568
  SELF_SERVE_USAGE = "60"
3569
+ FLAVOR_PARAMS_TRANSCODING_USAGE = "61"
3569
3570
  PARTNER_USAGE = "201"
3570
3571
  MAP_OVERLAY_COUNTRY_REALTIME = "10001"
3571
3572
  MAP_OVERLAY_REGION_REALTIME = "10002"
@@ -203,6 +203,7 @@ module Kaltura
203
203
  end
204
204
 
205
205
  class KalturaESearchUserFieldName
206
+ COMPANY = "company"
206
207
  CREATED_AT = "created_at"
207
208
  EMAIL = "email"
208
209
  FIRST_NAME = "first_name"
@@ -212,6 +213,7 @@ module Kaltura
212
213
  ROLE_IDS = "role_ids"
213
214
  SCREEN_NAME = "screen_name"
214
215
  TAGS = "tags"
216
+ TITLE = "title"
215
217
  UPDATED_AT = "updated_at"
216
218
  USER_ID = "user_id"
217
219
  TYPE = "user_type"
@@ -36,6 +36,7 @@ module Kaltura
36
36
  end
37
37
 
38
38
  class KalturaESearchGroupFieldName
39
+ COMPANY = "company"
39
40
  CREATED_AT = "created_at"
40
41
  EMAIL = "email"
41
42
  FIRST_NAME = "first_name"
@@ -45,6 +46,7 @@ module Kaltura
45
46
  ROLE_IDS = "role_ids"
46
47
  SCREEN_NAME = "screen_name"
47
48
  TAGS = "tags"
49
+ TITLE = "title"
48
50
  UPDATED_AT = "updated_at"
49
51
  USER_ID = "user_id"
50
52
  end
data/lib/kaltura_types.rb CHANGED
@@ -1983,6 +1983,8 @@ module Kaltura
1983
1983
  attr_accessor :num_prev_pass_to_keep
1984
1984
  attr_accessor :two_factor_authentication_mode
1985
1985
  attr_accessor :is_self_serve
1986
+ attr_accessor :allowed_domains
1987
+ attr_accessor :excluded_admin_role_name
1986
1988
 
1987
1989
  def id=(val)
1988
1990
  @id = val.to_i
@@ -2329,6 +2331,12 @@ module Kaltura
2329
2331
  if xml_element.elements['isSelfServe'] != nil
2330
2332
  self.is_self_serve = xml_element.elements['isSelfServe'].text
2331
2333
  end
2334
+ if xml_element.elements['allowedDomains'] != nil
2335
+ self.allowed_domains = xml_element.elements['allowedDomains'].text
2336
+ end
2337
+ if xml_element.elements['excludedAdminRoleName'] != nil
2338
+ self.excluded_admin_role_name = xml_element.elements['excludedAdminRoleName'].text
2339
+ end
2332
2340
  end
2333
2341
 
2334
2342
  end
@@ -4263,6 +4271,7 @@ module Kaltura
4263
4271
  attr_accessor :company
4264
4272
  attr_accessor :ks_privileges
4265
4273
  attr_accessor :encrypted_seed
4274
+ attr_accessor :is_sso_excluded
4266
4275
 
4267
4276
  def type=(val)
4268
4277
  @type = val.to_i
@@ -4282,6 +4291,9 @@ module Kaltura
4282
4291
  def login_enabled=(val)
4283
4292
  @login_enabled = to_b(val)
4284
4293
  end
4294
+ def is_sso_excluded=(val)
4295
+ @is_sso_excluded = to_b(val)
4296
+ end
4285
4297
 
4286
4298
  def from_xml(xml_element)
4287
4299
  super
@@ -4336,6 +4348,9 @@ module Kaltura
4336
4348
  if xml_element.elements['encryptedSeed'] != nil
4337
4349
  self.encrypted_seed = xml_element.elements['encryptedSeed'].text
4338
4350
  end
4351
+ if xml_element.elements['isSsoExcluded'] != nil
4352
+ self.is_sso_excluded = xml_element.elements['isSsoExcluded'].text
4353
+ end
4339
4354
  end
4340
4355
 
4341
4356
  end
@@ -7058,6 +7073,10 @@ module Kaltura
7058
7073
  attr_accessor :secondary_secured_broadcasting_url
7059
7074
  attr_accessor :primary_rtsp_broadcasting_url
7060
7075
  attr_accessor :secondary_rtsp_broadcasting_url
7076
+ attr_accessor :primary_srt_broadcasting_url
7077
+ attr_accessor :primary_srt_stream_id
7078
+ attr_accessor :secondary_srt_broadcasting_url
7079
+ attr_accessor :secondary_srt_stream_id
7061
7080
  attr_accessor :stream_name
7062
7081
  # The stream url
7063
7082
  attr_accessor :stream_url
@@ -7073,6 +7092,7 @@ module Kaltura
7073
7092
  attr_accessor :stream_password
7074
7093
  # The broadcast username
7075
7094
  attr_accessor :stream_username
7095
+ attr_accessor :srt_pass
7076
7096
  # The Streams primary server node id
7077
7097
  attr_accessor :primary_server_node_id
7078
7098
  attr_accessor :sip_token
@@ -7114,6 +7134,18 @@ module Kaltura
7114
7134
  if xml_element.elements['secondaryRtspBroadcastingUrl'] != nil
7115
7135
  self.secondary_rtsp_broadcasting_url = xml_element.elements['secondaryRtspBroadcastingUrl'].text
7116
7136
  end
7137
+ if xml_element.elements['primarySrtBroadcastingUrl'] != nil
7138
+ self.primary_srt_broadcasting_url = xml_element.elements['primarySrtBroadcastingUrl'].text
7139
+ end
7140
+ if xml_element.elements['primarySrtStreamId'] != nil
7141
+ self.primary_srt_stream_id = xml_element.elements['primarySrtStreamId'].text
7142
+ end
7143
+ if xml_element.elements['secondarySrtBroadcastingUrl'] != nil
7144
+ self.secondary_srt_broadcasting_url = xml_element.elements['secondarySrtBroadcastingUrl'].text
7145
+ end
7146
+ if xml_element.elements['secondarySrtStreamId'] != nil
7147
+ self.secondary_srt_stream_id = xml_element.elements['secondarySrtStreamId'].text
7148
+ end
7117
7149
  if xml_element.elements['streamName'] != nil
7118
7150
  self.stream_name = xml_element.elements['streamName'].text
7119
7151
  end
@@ -7138,6 +7170,9 @@ module Kaltura
7138
7170
  if xml_element.elements['streamUsername'] != nil
7139
7171
  self.stream_username = xml_element.elements['streamUsername'].text
7140
7172
  end
7173
+ if xml_element.elements['srtPass'] != nil
7174
+ self.srt_pass = xml_element.elements['srtPass'].text
7175
+ end
7141
7176
  if xml_element.elements['primaryServerNodeId'] != nil
7142
7177
  self.primary_server_node_id = xml_element.elements['primaryServerNodeId'].text
7143
7178
  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: 18.1.0
4
+ version: 18.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaltura Inc.