kaltura-client 15.16.0 → 15.17.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d713fbfd03365685cbcfcad47c3afd2aece6f217faab258fc3315c5c647cb025
4
- data.tar.gz: 1bd8c6100b853209fca356dab039cb244bc30361cfd1187d7f972e824f7e5308
3
+ metadata.gz: a6cd99fe7092b43a5b335ea2f636b6c8e2a2454247afcd61dd28ec3d0bbb7fac
4
+ data.tar.gz: e24af7fd275a1fcb37e3405d42c075feade0f982f23ff3815c2b34c118f9a7ee
5
5
  SHA512:
6
- metadata.gz: 7756523b279ffd22bd8911c97a686206f7b672cbab679a59b1d307a3e68062ad6d1662eb67f19ea38859fe6a0ef01b5ee493a82e12a80a1b8e9a43c3ba650680
7
- data.tar.gz: 23af4ac2301505fc38d62854637d1cf424a5e24cb603885bea51363b8ce5564ba5227458b88d52f6e25c839929088f83ac300faed6f366da5e4d8ed08dd6921e
6
+ metadata.gz: 5de5583800cf931a09988bb4dce06badc1150ade94513d534d07a4c04f1a504360acbac39b8091b76492720f3c2e58f90dfcf486857bbdb57b51d061bbb5799f
7
+ data.tar.gz: f46660ab7f1289cfb9cd0ff9780fc54fe4783a75bdc01d9627a4f080d22a2dd15d24bf60161da66b6db589ba66ab5dfddf836b34fd203f8f5c8e2f780f03f44e
data/README CHANGED
@@ -1,5 +1,5 @@
1
1
  Kaltura Ruby API Client Library.
2
- Compatible with Kaltura server version 15.16.0 and above.
2
+ Compatible with Kaltura server version 15.17.0 and above.
3
3
 
4
4
  This source contains:
5
5
  - The Kaltura client library (kaltura_client_base.rb)
@@ -2498,9 +2498,10 @@ module Kaltura
2498
2498
 
2499
2499
  # Archive a live entry which was recorded
2500
2500
  # @return [bool]
2501
- def archive(live_entry_id)
2501
+ def archive(live_entry_id, vod_entry_id)
2502
2502
  kparams = {}
2503
2503
  client.add_param(kparams, 'liveEntryId', live_entry_id)
2504
+ client.add_param(kparams, 'vodEntryId', vod_entry_id)
2504
2505
  client.queue_service_action_call('livestream', 'archive', 'bool', kparams)
2505
2506
  if (client.is_multirequest)
2506
2507
  return nil
@@ -6242,8 +6243,8 @@ module Kaltura
6242
6243
 
6243
6244
  def initialize(client)
6244
6245
  super(client)
6245
- self.client_tag = 'ruby:20-02-02'
6246
- self.api_version = '15.16.0'
6246
+ self.client_tag = 'ruby:20-02-17'
6247
+ self.api_version = '15.17.0'
6247
6248
  end
6248
6249
 
6249
6250
  def client_tag=(value)
@@ -1027,6 +1027,22 @@ module Kaltura
1027
1027
 
1028
1028
  end
1029
1029
 
1030
+ class KalturaEntryCaptionAdvancedFilter < KalturaSearchItem
1031
+ attr_accessor :has_caption
1032
+
1033
+ def has_caption=(val)
1034
+ @has_caption = val.to_i
1035
+ end
1036
+
1037
+ def from_xml(xml_element)
1038
+ super
1039
+ if xml_element.elements['hasCaption'] != nil
1040
+ self.has_caption = xml_element.elements['hasCaption'].text
1041
+ end
1042
+ end
1043
+
1044
+ end
1045
+
1030
1046
  class KalturaBeaconAbstractScheduledResourceItem < KalturaBeaconScheduledResourceBaseItem
1031
1047
  attr_accessor :search_term
1032
1048
  attr_accessor :item_type
@@ -6179,6 +6179,7 @@ module Kaltura
6179
6179
  attr_accessor :should_make_hidden
6180
6180
  attr_accessor :should_auto_archive
6181
6181
  attr_accessor :non_deleted_cue_points_tags
6182
+ attr_accessor :archive_vod_suffix_timezone
6182
6183
 
6183
6184
  def should_copy_entitlement=(val)
6184
6185
  @should_copy_entitlement = val.to_i
@@ -6216,6 +6217,9 @@ module Kaltura
6216
6217
  if xml_element.elements['nonDeletedCuePointsTags'] != nil
6217
6218
  self.non_deleted_cue_points_tags = xml_element.elements['nonDeletedCuePointsTags'].text
6218
6219
  end
6220
+ if xml_element.elements['archiveVodSuffixTimezone'] != nil
6221
+ self.archive_vod_suffix_timezone = xml_element.elements['archiveVodSuffixTimezone'].text
6222
+ end
6219
6223
  end
6220
6224
 
6221
6225
  end
@@ -8352,6 +8356,8 @@ module Kaltura
8352
8356
  attr_accessor :player_version_in
8353
8357
  # filter by isp
8354
8358
  attr_accessor :isp_in
8359
+ # filter by application version
8360
+ attr_accessor :application_version_in
8355
8361
 
8356
8362
  def search_in_tags=(val)
8357
8363
  @search_in_tags = to_b(val)
@@ -8464,6 +8470,9 @@ module Kaltura
8464
8470
  if xml_element.elements['ispIn'] != nil
8465
8471
  self.isp_in = xml_element.elements['ispIn'].text
8466
8472
  end
8473
+ if xml_element.elements['applicationVersionIn'] != nil
8474
+ self.application_version_in = xml_element.elements['applicationVersionIn'].text
8475
+ end
8467
8476
  end
8468
8477
 
8469
8478
  end
@@ -13058,6 +13067,7 @@ module Kaltura
13058
13067
  attr_accessor :status_in
13059
13068
  attr_accessor :server_type_equal
13060
13069
  attr_accessor :server_type_in
13070
+ attr_accessor :server_type_not_in
13061
13071
 
13062
13072
  def server_node_id_equal=(val)
13063
13073
  @server_node_id_equal = val.to_i
@@ -13116,6 +13126,9 @@ module Kaltura
13116
13126
  if xml_element.elements['serverTypeIn'] != nil
13117
13127
  self.server_type_in = xml_element.elements['serverTypeIn'].text
13118
13128
  end
13129
+ if xml_element.elements['serverTypeNotIn'] != nil
13130
+ self.server_type_not_in = xml_element.elements['serverTypeNotIn'].text
13131
+ end
13119
13132
  end
13120
13133
 
13121
13134
  end
@@ -13532,6 +13545,7 @@ module Kaltura
13532
13545
 
13533
13546
  class KalturaLiveEntryArchiveJobData < KalturaJobData
13534
13547
  attr_accessor :live_entry_id
13548
+ attr_accessor :vod_entry_id
13535
13549
 
13536
13550
 
13537
13551
  def from_xml(xml_element)
@@ -13539,6 +13553,9 @@ module Kaltura
13539
13553
  if xml_element.elements['liveEntryId'] != nil
13540
13554
  self.live_entry_id = xml_element.elements['liveEntryId'].text
13541
13555
  end
13556
+ if xml_element.elements['vodEntryId'] != nil
13557
+ self.vod_entry_id = xml_element.elements['vodEntryId'].text
13558
+ end
13542
13559
  end
13543
13560
 
13544
13561
  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: 15.16.0
4
+ version: 15.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaltura Inc.