kaltura-client 17.1.0 → 17.12.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: 6342e800e5037268c4ee3e5c095b0b6171bf146eac94f16809adf706fdce19d8
4
+ data.tar.gz: a6164b03cf9bbc9a2f683b705553eacfb7a33f7db9b9b2445bacfa016cf3966c
5
5
  SHA512:
6
- metadata.gz: c25e7338547c1f0e6adb1eca8132ccec2b5be777af29a8bbdf51007ce6962b7acf1d9d774c94c184545ae7c548a44820abd902b3bb67e9833e4e6bce85c11f5b
7
- data.tar.gz: 96039da1b37b7d205f57ec450c3ef5c21c139c5f942c8a8cb3f723ca7752e770eaa9851b691b0b1b357b4868a44df6cc88653d23667f44d6009b50f760e9043e
6
+ metadata.gz: 53728602179e9849c43aabaa67977670bd384f717921490b2b728e0dd4389f8282a4fb93d1c0c09008730c1884be504db4c195a584a75bbaf2bfc6881801979f
7
+ data.tar.gz: 480bbacbf0f0bfb42e861777017ec98b06df65268481503c2d36972405cd3054acc21d2ce763bcd99469e8c3f59ef5b9493c51dec576ddfaf7b62100975f22bb
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.12.0 and above.
3
3
 
4
4
  This source contains:
5
5
  - The Kaltura client library (kaltura_client_base.rb)
@@ -612,6 +612,15 @@ module Kaltura
612
612
  return client.do_queue()
613
613
  end
614
614
 
615
+ # This action serves HLS encrypted key if access control is validated
616
+ # @return [file]
617
+ def serve_playback_key(entry_id)
618
+ kparams = {}
619
+ client.add_param(kparams, 'entryId', entry_id)
620
+ client.queue_service_action_call('baseentry', 'servePlaybackKey', 'file', kparams)
621
+ return client.get_serve_url()
622
+ end
623
+
615
624
  # Update base entry. Only the properties that were set will be updated.
616
625
  # @return [KalturaBaseEntry]
617
626
  def update(entry_id, base_entry)
@@ -932,6 +941,20 @@ module Kaltura
932
941
  return client.do_queue()
933
942
  end
934
943
 
944
+ # Clone Category
945
+ # @return [KalturaCategory]
946
+ def clone(category_id, from_partner_id, parent_category_id=KalturaNotImplemented)
947
+ kparams = {}
948
+ client.add_param(kparams, 'categoryId', category_id)
949
+ client.add_param(kparams, 'fromPartnerId', from_partner_id)
950
+ client.add_param(kparams, 'parentCategoryId', parent_category_id)
951
+ client.queue_service_action_call('category', 'clone', 'KalturaCategory', kparams)
952
+ if (client.is_multirequest)
953
+ return nil
954
+ end
955
+ return client.do_queue()
956
+ end
957
+
935
958
  # Delete a Category
936
959
  # @return []
937
960
  def delete(id, move_entries_to_parent_category=1)
@@ -3580,6 +3603,21 @@ module Kaltura
3580
3603
  return client.do_queue()
3581
3604
  end
3582
3605
 
3606
+ # Create a new Partner object
3607
+ # @return [bool]
3608
+ def registration_validation(partner, cms_password='', template_partner_id=KalturaNotImplemented, silent=false)
3609
+ kparams = {}
3610
+ client.add_param(kparams, 'partner', partner)
3611
+ client.add_param(kparams, 'cmsPassword', cms_password)
3612
+ client.add_param(kparams, 'templatePartnerId', template_partner_id)
3613
+ client.add_param(kparams, 'silent', silent)
3614
+ client.queue_service_action_call('partner', 'registrationValidation', 'bool', kparams)
3615
+ if (client.is_multirequest)
3616
+ return nil
3617
+ end
3618
+ return client.do_queue()
3619
+ end
3620
+
3583
3621
  # Update details and settings of an existing partner
3584
3622
  # @return [KalturaPartner]
3585
3623
  def update(partner, allow_empty=false)
@@ -6310,8 +6348,8 @@ module Kaltura
6310
6348
 
6311
6349
  def initialize(client)
6312
6350
  super(client)
6313
- self.client_tag = 'ruby:21-05-06'
6314
- self.api_version = '17.1.0'
6351
+ self.client_tag = 'ruby:21-10-18'
6352
+ self.api_version = '17.12.0'
6315
6353
  end
6316
6354
 
6317
6355
  def client_tag=(value)
data/lib/kaltura_enums.rb CHANGED
@@ -415,6 +415,7 @@ module Kaltura
415
415
  ACTIVE = 1
416
416
  BLOCKED = 2
417
417
  FULL_BLOCK = 3
418
+ READ_ONLY = 4
418
419
  end
419
420
 
420
421
  class KalturaPartnerType
@@ -715,6 +716,12 @@ module Kaltura
715
716
  RESIZE_WITH_FORCE = 5
716
717
  end
717
718
 
719
+ class KalturaTwoFactorAuthenticationMode
720
+ ALL = 0
721
+ ADMIN_USERS_ONLY = 1
722
+ NON_ADMIN_USERS_ONLY = 2
723
+ end
724
+
718
725
  class KalturaUiConfCreationMode
719
726
  WIZARD = 2
720
727
  ADVANCED = 3
@@ -1258,6 +1265,7 @@ module Kaltura
1258
1265
  ASSET_TYPE = "16"
1259
1266
  BOOLEAN = "17"
1260
1267
  HTTP_HEADER = "18"
1268
+ ENTRY_SCHEDULED = "19"
1261
1269
  end
1262
1270
 
1263
1271
  class KalturaConfMapsSourceLocation
@@ -3554,6 +3562,7 @@ module Kaltura
3554
3562
  INTERACTIVE_VIDEO_NODE_SWITCH_HOTSPOT_CLICKED_PERCENTILES = "57"
3555
3563
  TOP_CUSTOM_VAR2 = "58"
3556
3564
  TOP_CUSTOM_VAR3 = "59"
3565
+ SELF_SERVE_USAGE = "60"
3557
3566
  PARTNER_USAGE = "201"
3558
3567
  MAP_OVERLAY_COUNTRY_REALTIME = "10001"
3559
3568
  MAP_OVERLAY_REGION_REALTIME = "10002"
@@ -3592,6 +3601,7 @@ module Kaltura
3592
3601
  PLAYBACK_RATE_VPAAS = "20020"
3593
3602
  PARTNER_USAGE_VPAAS = "20021"
3594
3603
  TOP_PLAYBACK_CONTEXT_VPAAS = "20022"
3604
+ SELF_SERVE_USAGE_VPAAS = "20023"
3595
3605
  QOE_OVERVIEW = "30001"
3596
3606
  QOE_EXPERIENCE = "30002"
3597
3607
  QOE_EXPERIENCE_PLATFORMS = "30003"
@@ -3892,6 +3902,7 @@ module Kaltura
3892
3902
  APCN = "apcn"
3893
3903
  APCO = "apco"
3894
3904
  APCS = "apcs"
3905
+ AV1 = "av1"
3895
3906
  COPY = "copy"
3896
3907
  DNXHD = "dnxhd"
3897
3908
  DV = "dv"
@@ -383,6 +383,7 @@ module Kaltura
383
383
  attr_accessor :recommended_dc_for_execute
384
384
  # The event that trigger the automatic distribute
385
385
  attr_accessor :distribute_trigger
386
+ attr_accessor :support_image_entry
386
387
 
387
388
  def id=(val)
388
389
  @id = val.to_i
@@ -429,6 +430,9 @@ module Kaltura
429
430
  def distribute_trigger=(val)
430
431
  @distribute_trigger = val.to_i
431
432
  end
433
+ def support_image_entry=(val)
434
+ @support_image_entry = to_b(val)
435
+ end
432
436
 
433
437
  def from_xml(xml_element)
434
438
  super
@@ -507,6 +511,9 @@ module Kaltura
507
511
  if xml_element.elements['distributeTrigger'] != nil
508
512
  self.distribute_trigger = xml_element.elements['distributeTrigger'].text
509
513
  end
514
+ if xml_element.elements['supportImageEntry'] != nil
515
+ self.support_image_entry = xml_element.elements['supportImageEntry'].text
516
+ end
510
517
  end
511
518
 
512
519
  end
@@ -46,6 +46,7 @@ module Kaltura
46
46
  end
47
47
 
48
48
  class KalturaDrmLicenseScenario
49
+ NONE = "0"
49
50
  PROTECTION = "playReady.PROTECTION"
50
51
  PURCHASE = "playReady.PURCHASE"
51
52
  RENTAL = "playReady.RENTAL"
@@ -226,6 +226,7 @@ module Kaltura
226
226
  # The ammount of time, in seconds, that should pass so that a file with no change in size we'll be treated as "finished uploading to folder"
227
227
  attr_accessor :file_size_check_interval
228
228
  attr_accessor :file_delete_policy
229
+ attr_accessor :file_delete_regex
229
230
  attr_accessor :auto_file_delete_days
230
231
  attr_accessor :file_handler_type
231
232
  attr_accessor :file_name_patterns
@@ -328,6 +329,9 @@ module Kaltura
328
329
  if xml_element.elements['fileDeletePolicy'] != nil
329
330
  self.file_delete_policy = xml_element.elements['fileDeletePolicy'].text
330
331
  end
332
+ if xml_element.elements['fileDeleteRegex'] != nil
333
+ self.file_delete_regex = xml_element.elements['fileDeleteRegex'].text
334
+ end
331
335
  if xml_element.elements['autoFileDeleteDays'] != nil
332
336
  self.auto_file_delete_days = xml_element.elements['autoFileDeleteDays'].text
333
337
  end
@@ -28,6 +28,7 @@
28
28
  require 'kaltura_client.rb'
29
29
  require File.dirname(__FILE__) + '/kaltura_event_notification_client_plugin.rb'
30
30
  require File.dirname(__FILE__) + '/kaltura_bulk_upload_client_plugin.rb'
31
+ require File.dirname(__FILE__) + '/kaltura_caption_client_plugin.rb'
31
32
 
32
33
  module Kaltura
33
34
 
@@ -83,6 +84,7 @@ module Kaltura
83
84
  ALIGNMENT = 3
84
85
  AUDIO_DESCRIPTION = 4
85
86
  CHAPTERING = 5
87
+ INTELLIGENT_TAGGING = 6
86
88
  end
87
89
 
88
90
  class KalturaVendorServiceTurnAroundTime
@@ -121,6 +123,7 @@ module Kaltura
121
123
  class KalturaCatalogItemLanguage
122
124
  AR = "Arabic"
123
125
  YUE = "Cantonese"
126
+ CA = "Catalan"
124
127
  ZH = "Chinese"
125
128
  DA = "Danish"
126
129
  NL = "Dutch"
@@ -166,6 +169,7 @@ module Kaltura
166
169
 
167
170
  class KalturaEntryVendorTaskOrderBy
168
171
  CREATED_AT_ASC = "+createdAt"
172
+ EXPECTED_FINISH_TIME_ASC = "+expectedFinishTime"
169
173
  FINISH_TIME_ASC = "+finishTime"
170
174
  ID_ASC = "+id"
171
175
  PRICE_ASC = "+price"
@@ -173,6 +177,7 @@ module Kaltura
173
177
  STATUS_ASC = "+status"
174
178
  UPDATED_AT_ASC = "+updatedAt"
175
179
  CREATED_AT_DESC = "-createdAt"
180
+ EXPECTED_FINISH_TIME_DESC = "-expectedFinishTime"
176
181
  FINISH_TIME_DESC = "-finishTime"
177
182
  ID_DESC = "-id"
178
183
  PRICE_DESC = "-price"
@@ -190,6 +195,9 @@ module Kaltura
190
195
  UPDATED_AT_DESC = "-updatedAt"
191
196
  end
192
197
 
198
+ class KalturaReachVendorEngineType
199
+ end
200
+
193
201
  class KalturaVendorCaptionsCatalogItemOrderBy
194
202
  CREATED_AT_ASC = "+createdAt"
195
203
  ID_ASC = "+id"
@@ -667,6 +675,9 @@ module Kaltura
667
675
  attr_accessor :service_feature
668
676
  attr_accessor :turn_around_time
669
677
  attr_accessor :pricing
678
+ # Property showing the catalog item's engine type, in case a vendor can offer the same service via different engines.
679
+ attr_accessor :engine_type
680
+ attr_accessor :source_language
670
681
  attr_accessor :allow_resubmission
671
682
 
672
683
  def id=(val)
@@ -732,6 +743,12 @@ module Kaltura
732
743
  if xml_element.elements['pricing'] != nil
733
744
  self.pricing = KalturaClientBase.object_from_xml(xml_element.elements['pricing'], 'KalturaVendorCatalogItemPricing')
734
745
  end
746
+ if xml_element.elements['engineType'] != nil
747
+ self.engine_type = xml_element.elements['engineType'].text
748
+ end
749
+ if xml_element.elements['sourceLanguage'] != nil
750
+ self.source_language = xml_element.elements['sourceLanguage'].text
751
+ end
735
752
  if xml_element.elements['allowResubmission'] != nil
736
753
  self.allow_resubmission = xml_element.elements['allowResubmission'].text
737
754
  end
@@ -851,6 +868,20 @@ module Kaltura
851
868
 
852
869
  end
853
870
 
871
+ class KalturaIntelligentTaggingVendorTaskData < KalturaVendorTaskData
872
+ # Optional - The id of the caption asset object
873
+ attr_accessor :asset_id
874
+
875
+
876
+ def from_xml(xml_element)
877
+ super
878
+ if xml_element.elements['assetId'] != nil
879
+ self.asset_id = xml_element.elements['assetId'].text
880
+ end
881
+ end
882
+
883
+ end
884
+
854
885
  class KalturaReachProfileListResponse < KalturaListResponse
855
886
  attr_accessor :objects
856
887
 
@@ -888,7 +919,6 @@ module Kaltura
888
919
  end
889
920
 
890
921
  class KalturaVendorAlignmentCatalogItem < KalturaVendorCatalogItem
891
- attr_accessor :source_language
892
922
  attr_accessor :output_format
893
923
 
894
924
  def output_format=(val)
@@ -897,9 +927,6 @@ module Kaltura
897
927
 
898
928
  def from_xml(xml_element)
899
929
  super
900
- if xml_element.elements['sourceLanguage'] != nil
901
- self.source_language = xml_element.elements['sourceLanguage'].text
902
- end
903
930
  if xml_element.elements['outputFormat'] != nil
904
931
  self.output_format = xml_element.elements['outputFormat'].text
905
932
  end
@@ -908,7 +935,6 @@ module Kaltura
908
935
  end
909
936
 
910
937
  class KalturaVendorAudioDescriptionCatalogItem < KalturaVendorCatalogItem
911
- attr_accessor :source_language
912
938
  attr_accessor :flavor_params_id
913
939
  attr_accessor :clear_audio_flavor_params_id
914
940
 
@@ -921,9 +947,6 @@ module Kaltura
921
947
 
922
948
  def from_xml(xml_element)
923
949
  super
924
- if xml_element.elements['sourceLanguage'] != nil
925
- self.source_language = xml_element.elements['sourceLanguage'].text
926
- end
927
950
  if xml_element.elements['flavorParamsId'] != nil
928
951
  self.flavor_params_id = xml_element.elements['flavorParamsId'].text
929
952
  end
@@ -935,7 +958,6 @@ module Kaltura
935
958
  end
936
959
 
937
960
  class KalturaVendorCaptionsCatalogItem < KalturaVendorCatalogItem
938
- attr_accessor :source_language
939
961
  attr_accessor :output_format
940
962
  attr_accessor :enable_speaker_id
941
963
  attr_accessor :fixed_price_addons
@@ -952,9 +974,6 @@ module Kaltura
952
974
 
953
975
  def from_xml(xml_element)
954
976
  super
955
- if xml_element.elements['sourceLanguage'] != nil
956
- self.source_language = xml_element.elements['sourceLanguage'].text
957
- end
958
977
  if xml_element.elements['outputFormat'] != nil
959
978
  self.output_format = xml_element.elements['outputFormat'].text
960
979
  end
@@ -982,14 +1001,10 @@ module Kaltura
982
1001
  end
983
1002
 
984
1003
  class KalturaVendorChapteringCatalogItem < KalturaVendorCatalogItem
985
- attr_accessor :source_language
986
1004
 
987
1005
 
988
1006
  def from_xml(xml_element)
989
1007
  super
990
- if xml_element.elements['sourceLanguage'] != nil
991
- self.source_language = xml_element.elements['sourceLanguage'].text
992
- end
993
1008
  end
994
1009
 
995
1010
  end
@@ -1031,6 +1046,15 @@ module Kaltura
1031
1046
 
1032
1047
  end
1033
1048
 
1049
+ class KalturaVendorIntelligentTaggingCatalogItem < KalturaVendorCatalogItem
1050
+
1051
+
1052
+ def from_xml(xml_element)
1053
+ super
1054
+ end
1055
+
1056
+ end
1057
+
1034
1058
  class KalturaVendorTaskDataCaptionAsset < KalturaVendorTaskData
1035
1059
  # Optional - The id of the caption asset object
1036
1060
  attr_accessor :caption_asset_id
@@ -1067,6 +1091,7 @@ module Kaltura
1067
1091
  class KalturaEntryVendorTaskBaseFilter < KalturaRelatedFilter
1068
1092
  attr_accessor :id_equal
1069
1093
  attr_accessor :id_in
1094
+ attr_accessor :id_not_in
1070
1095
  attr_accessor :vendor_partner_id_equal
1071
1096
  attr_accessor :vendor_partner_id_in
1072
1097
  attr_accessor :created_at_greater_than_or_equal
@@ -1086,6 +1111,8 @@ module Kaltura
1086
1111
  attr_accessor :catalog_item_id_in
1087
1112
  attr_accessor :user_id_equal
1088
1113
  attr_accessor :context_equal
1114
+ attr_accessor :expected_finish_time_greater_than_or_equal
1115
+ attr_accessor :expected_finish_time_less_than_or_equal
1089
1116
 
1090
1117
  def id_equal=(val)
1091
1118
  @id_equal = val.to_i
@@ -1126,6 +1153,12 @@ module Kaltura
1126
1153
  def catalog_item_id_equal=(val)
1127
1154
  @catalog_item_id_equal = val.to_i
1128
1155
  end
1156
+ def expected_finish_time_greater_than_or_equal=(val)
1157
+ @expected_finish_time_greater_than_or_equal = val.to_i
1158
+ end
1159
+ def expected_finish_time_less_than_or_equal=(val)
1160
+ @expected_finish_time_less_than_or_equal = val.to_i
1161
+ end
1129
1162
 
1130
1163
  def from_xml(xml_element)
1131
1164
  super
@@ -1135,6 +1168,9 @@ module Kaltura
1135
1168
  if xml_element.elements['idIn'] != nil
1136
1169
  self.id_in = xml_element.elements['idIn'].text
1137
1170
  end
1171
+ if xml_element.elements['idNotIn'] != nil
1172
+ self.id_not_in = xml_element.elements['idNotIn'].text
1173
+ end
1138
1174
  if xml_element.elements['vendorPartnerIdEqual'] != nil
1139
1175
  self.vendor_partner_id_equal = xml_element.elements['vendorPartnerIdEqual'].text
1140
1176
  end
@@ -1192,33 +1228,25 @@ module Kaltura
1192
1228
  if xml_element.elements['contextEqual'] != nil
1193
1229
  self.context_equal = xml_element.elements['contextEqual'].text
1194
1230
  end
1231
+ if xml_element.elements['expectedFinishTimeGreaterThanOrEqual'] != nil
1232
+ self.expected_finish_time_greater_than_or_equal = xml_element.elements['expectedFinishTimeGreaterThanOrEqual'].text
1233
+ end
1234
+ if xml_element.elements['expectedFinishTimeLessThanOrEqual'] != nil
1235
+ self.expected_finish_time_less_than_or_equal = xml_element.elements['expectedFinishTimeLessThanOrEqual'].text
1236
+ end
1195
1237
  end
1196
1238
 
1197
1239
  end
1198
1240
 
1199
1241
  class KalturaEntryVendorTaskFilter < KalturaEntryVendorTaskBaseFilter
1200
1242
  attr_accessor :free_text
1201
- attr_accessor :expected_finish_time_greater_than_or_equal
1202
- attr_accessor :expected_finish_time_less_than_or_equal
1203
1243
 
1204
- def expected_finish_time_greater_than_or_equal=(val)
1205
- @expected_finish_time_greater_than_or_equal = val.to_i
1206
- end
1207
- def expected_finish_time_less_than_or_equal=(val)
1208
- @expected_finish_time_less_than_or_equal = val.to_i
1209
- end
1210
1244
 
1211
1245
  def from_xml(xml_element)
1212
1246
  super
1213
1247
  if xml_element.elements['freeText'] != nil
1214
1248
  self.free_text = xml_element.elements['freeText'].text
1215
1249
  end
1216
- if xml_element.elements['expectedFinishTimeGreaterThanOrEqual'] != nil
1217
- self.expected_finish_time_greater_than_or_equal = xml_element.elements['expectedFinishTimeGreaterThanOrEqual'].text
1218
- end
1219
- if xml_element.elements['expectedFinishTimeLessThanOrEqual'] != nil
1220
- self.expected_finish_time_less_than_or_equal = xml_element.elements['expectedFinishTimeLessThanOrEqual'].text
1221
- end
1222
1250
  end
1223
1251
 
1224
1252
  end
@@ -1781,7 +1809,7 @@ module Kaltura
1781
1809
  return client.do_queue()
1782
1810
  end
1783
1811
 
1784
- # sync vednor profile credit
1812
+ # sync vendor profile credit
1785
1813
  # @return [KalturaReachProfile]
1786
1814
  def sync_credit(reach_profile_id)
1787
1815
  kparams = {}
@@ -59,6 +59,7 @@ module Kaltura
59
59
  BLACKOUT = 3
60
60
  MEETING = 4
61
61
  LIVE_REDIRECT = 5
62
+ VOD = 6
62
63
  end
63
64
 
64
65
  class KalturaScheduleResourceStatus
@@ -182,6 +183,31 @@ module Kaltura
182
183
  UPDATED_AT_DESC = "-updatedAt"
183
184
  end
184
185
 
186
+ class KalturaLinkedScheduleEvent < KalturaObjectBase
187
+ # The time between the end of the event which it's id is in $eventId and the start of the event holding this object
188
+ attr_accessor :offset
189
+ # The id of the event influencing the start of the event holding this object
190
+ attr_accessor :event_id
191
+
192
+ def offset=(val)
193
+ @offset = val.to_i
194
+ end
195
+ def event_id=(val)
196
+ @event_id = val.to_i
197
+ end
198
+
199
+ def from_xml(xml_element)
200
+ super
201
+ if xml_element.elements['offset'] != nil
202
+ self.offset = xml_element.elements['offset'].text
203
+ end
204
+ if xml_element.elements['eventId'] != nil
205
+ self.event_id = xml_element.elements['eventId'].text
206
+ end
207
+ end
208
+
209
+ end
210
+
185
211
  class KalturaScheduleEventRecurrence < KalturaObjectBase
186
212
  attr_accessor :name
187
213
  attr_accessor :frequency
@@ -303,6 +329,10 @@ module Kaltura
303
329
  attr_accessor :start_date
304
330
  attr_accessor :end_date
305
331
  attr_accessor :reference_id
332
+ # Contains the Id of the event that influences the timing of this event and the offset of time.
333
+ attr_accessor :linked_to
334
+ # An array of Schedule Event Ids that their start time depends on the end of the current.
335
+ attr_accessor :linked_by
306
336
  attr_accessor :classification_type
307
337
  # Specifies the global position for the activity
308
338
  attr_accessor :geo_latitude
@@ -405,6 +435,12 @@ module Kaltura
405
435
  if xml_element.elements['referenceId'] != nil
406
436
  self.reference_id = xml_element.elements['referenceId'].text
407
437
  end
438
+ if xml_element.elements['linkedTo'] != nil
439
+ self.linked_to = KalturaClientBase.object_from_xml(xml_element.elements['linkedTo'], 'KalturaLinkedScheduleEvent')
440
+ end
441
+ if xml_element.elements['linkedBy'] != nil
442
+ self.linked_by = xml_element.elements['linkedBy'].text
443
+ end
408
444
  if xml_element.elements['classificationType'] != nil
409
445
  self.classification_type = xml_element.elements['classificationType'].text
410
446
  end
@@ -1050,6 +1086,15 @@ module Kaltura
1050
1086
 
1051
1087
  end
1052
1088
 
1089
+ class KalturaVodScheduleEvent < KalturaEntryScheduleEvent
1090
+
1091
+
1092
+ def from_xml(xml_element)
1093
+ super
1094
+ end
1095
+
1096
+ end
1097
+
1053
1098
  class KalturaLiveRedirectScheduleEvent < KalturaBaseLiveScheduleEvent
1054
1099
  # The vod entry to redirect
1055
1100
  attr_accessor :redirect_entry_id
@@ -1073,6 +1118,10 @@ module Kaltura
1073
1118
  attr_accessor :pre_start_time
1074
1119
  # The time relative time before the endTime considered as postEnd time
1075
1120
  attr_accessor :post_end_time
1121
+ # The entry id of the pre start entry
1122
+ attr_accessor :pre_start_entry_id
1123
+ # The entry id of the post end entry
1124
+ attr_accessor :post_end_entry_id
1076
1125
 
1077
1126
  def projected_audience=(val)
1078
1127
  @projected_audience = val.to_i
@@ -1098,6 +1147,12 @@ module Kaltura
1098
1147
  if xml_element.elements['postEndTime'] != nil
1099
1148
  self.post_end_time = xml_element.elements['postEndTime'].text
1100
1149
  end
1150
+ if xml_element.elements['preStartEntryId'] != nil
1151
+ self.pre_start_entry_id = xml_element.elements['preStartEntryId'].text
1152
+ end
1153
+ if xml_element.elements['postEndEntryId'] != nil
1154
+ self.post_end_entry_id = xml_element.elements['postEndEntryId'].text
1155
+ end
1101
1156
  end
1102
1157
 
1103
1158
  end
@@ -1337,6 +1392,15 @@ module Kaltura
1337
1392
 
1338
1393
  end
1339
1394
 
1395
+ class KalturaVodScheduleEventBaseFilter < KalturaEntryScheduleEventFilter
1396
+
1397
+
1398
+ def from_xml(xml_element)
1399
+ super
1400
+ end
1401
+
1402
+ end
1403
+
1340
1404
  class KalturaBlackoutScheduleEventFilter < KalturaRecordScheduleEventBaseFilter
1341
1405
 
1342
1406
 
@@ -1373,6 +1437,15 @@ module Kaltura
1373
1437
 
1374
1438
  end
1375
1439
 
1440
+ class KalturaVodScheduleEventFilter < KalturaVodScheduleEventBaseFilter
1441
+
1442
+
1443
+ def from_xml(xml_element)
1444
+ super
1445
+ end
1446
+
1447
+ end
1448
+
1376
1449
 
1377
1450
  # The ScheduleEvent service enables you to create and manage (update, delete, retrieve, etc.) scheduled recording events.
1378
1451
  class KalturaScheduleEventService < KalturaServiceBase
@@ -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
@@ -35,6 +35,12 @@ module Kaltura
35
35
  IGNORE = 2
36
36
  end
37
37
 
38
+ class KalturaVendorIntegrationStatus
39
+ DISABLED = 1
40
+ ACTIVE = 2
41
+ DELETED = 3
42
+ end
43
+
38
44
  class KalturaZoomUsersMatching
39
45
  DO_NOT_MODIFY = 0
40
46
  ADD_POSTFIX = 1
@@ -42,68 +48,116 @@ module Kaltura
42
48
  CMS_MATCHING = 3
43
49
  end
44
50
 
45
- class KalturaZoomIntegrationSetting < KalturaObjectBase
51
+ class KalturaIntegrationSetting < KalturaObjectBase
52
+ attr_accessor :id
53
+ attr_accessor :status
46
54
  attr_accessor :default_user_id
47
- attr_accessor :zoom_category
48
55
  attr_accessor :account_id
49
- attr_accessor :enable_recording_upload
50
56
  attr_accessor :create_user_if_not_exist
57
+ attr_accessor :conversion_profile_id
51
58
  attr_accessor :handle_participants_mode
59
+ attr_accessor :deletion_policy
60
+ attr_accessor :created_at
61
+ attr_accessor :updated_at
62
+ attr_accessor :partner_id
63
+
64
+ def id=(val)
65
+ @id = val.to_i
66
+ end
67
+ def status=(val)
68
+ @status = val.to_i
69
+ end
70
+ def create_user_if_not_exist=(val)
71
+ @create_user_if_not_exist = val.to_i
72
+ end
73
+ def conversion_profile_id=(val)
74
+ @conversion_profile_id = val.to_i
75
+ end
76
+ def handle_participants_mode=(val)
77
+ @handle_participants_mode = val.to_i
78
+ end
79
+ def deletion_policy=(val)
80
+ @deletion_policy = val.to_i
81
+ end
82
+ def partner_id=(val)
83
+ @partner_id = val.to_i
84
+ end
85
+
86
+ def from_xml(xml_element)
87
+ super
88
+ if xml_element.elements['id'] != nil
89
+ self.id = xml_element.elements['id'].text
90
+ end
91
+ if xml_element.elements['status'] != nil
92
+ self.status = xml_element.elements['status'].text
93
+ end
94
+ if xml_element.elements['defaultUserId'] != nil
95
+ self.default_user_id = xml_element.elements['defaultUserId'].text
96
+ end
97
+ if xml_element.elements['accountId'] != nil
98
+ self.account_id = xml_element.elements['accountId'].text
99
+ end
100
+ if xml_element.elements['createUserIfNotExist'] != nil
101
+ self.create_user_if_not_exist = xml_element.elements['createUserIfNotExist'].text
102
+ end
103
+ if xml_element.elements['conversionProfileId'] != nil
104
+ self.conversion_profile_id = xml_element.elements['conversionProfileId'].text
105
+ end
106
+ if xml_element.elements['handleParticipantsMode'] != nil
107
+ self.handle_participants_mode = xml_element.elements['handleParticipantsMode'].text
108
+ end
109
+ if xml_element.elements['deletionPolicy'] != nil
110
+ self.deletion_policy = xml_element.elements['deletionPolicy'].text
111
+ end
112
+ if xml_element.elements['createdAt'] != nil
113
+ self.created_at = xml_element.elements['createdAt'].text
114
+ end
115
+ if xml_element.elements['updatedAt'] != nil
116
+ self.updated_at = xml_element.elements['updatedAt'].text
117
+ end
118
+ if xml_element.elements['partnerId'] != nil
119
+ self.partner_id = xml_element.elements['partnerId'].text
120
+ end
121
+ end
122
+
123
+ end
124
+
125
+ class KalturaZoomIntegrationSetting < KalturaIntegrationSetting
126
+ attr_accessor :zoom_category
127
+ attr_accessor :enable_recording_upload
52
128
  attr_accessor :zoom_user_matching_mode
53
129
  attr_accessor :zoom_user_postfix
54
130
  attr_accessor :zoom_webinar_category
55
131
  attr_accessor :enable_webinar_uploads
56
- attr_accessor :conversion_profile_id
57
132
  attr_accessor :jwt_token
58
- attr_accessor :deletion_policy
59
133
  attr_accessor :enable_zoom_transcription
60
134
  attr_accessor :zoom_account_description
135
+ attr_accessor :enable_meeting_upload
61
136
 
62
137
  def enable_recording_upload=(val)
63
138
  @enable_recording_upload = val.to_i
64
139
  end
65
- def create_user_if_not_exist=(val)
66
- @create_user_if_not_exist = val.to_i
67
- end
68
- def handle_participants_mode=(val)
69
- @handle_participants_mode = val.to_i
70
- end
71
140
  def zoom_user_matching_mode=(val)
72
141
  @zoom_user_matching_mode = val.to_i
73
142
  end
74
143
  def enable_webinar_uploads=(val)
75
144
  @enable_webinar_uploads = val.to_i
76
145
  end
77
- def conversion_profile_id=(val)
78
- @conversion_profile_id = val.to_i
79
- end
80
- def deletion_policy=(val)
81
- @deletion_policy = val.to_i
82
- end
83
146
  def enable_zoom_transcription=(val)
84
147
  @enable_zoom_transcription = val.to_i
85
148
  end
149
+ def enable_meeting_upload=(val)
150
+ @enable_meeting_upload = val.to_i
151
+ end
86
152
 
87
153
  def from_xml(xml_element)
88
154
  super
89
- if xml_element.elements['defaultUserId'] != nil
90
- self.default_user_id = xml_element.elements['defaultUserId'].text
91
- end
92
155
  if xml_element.elements['zoomCategory'] != nil
93
156
  self.zoom_category = xml_element.elements['zoomCategory'].text
94
157
  end
95
- if xml_element.elements['accountId'] != nil
96
- self.account_id = xml_element.elements['accountId'].text
97
- end
98
158
  if xml_element.elements['enableRecordingUpload'] != nil
99
159
  self.enable_recording_upload = xml_element.elements['enableRecordingUpload'].text
100
160
  end
101
- if xml_element.elements['createUserIfNotExist'] != nil
102
- self.create_user_if_not_exist = xml_element.elements['createUserIfNotExist'].text
103
- end
104
- if xml_element.elements['handleParticipantsMode'] != nil
105
- self.handle_participants_mode = xml_element.elements['handleParticipantsMode'].text
106
- end
107
161
  if xml_element.elements['zoomUserMatchingMode'] != nil
108
162
  self.zoom_user_matching_mode = xml_element.elements['zoomUserMatchingMode'].text
109
163
  end
@@ -116,21 +170,18 @@ module Kaltura
116
170
  if xml_element.elements['enableWebinarUploads'] != nil
117
171
  self.enable_webinar_uploads = xml_element.elements['enableWebinarUploads'].text
118
172
  end
119
- if xml_element.elements['conversionProfileId'] != nil
120
- self.conversion_profile_id = xml_element.elements['conversionProfileId'].text
121
- end
122
173
  if xml_element.elements['jwtToken'] != nil
123
174
  self.jwt_token = xml_element.elements['jwtToken'].text
124
175
  end
125
- if xml_element.elements['deletionPolicy'] != nil
126
- self.deletion_policy = xml_element.elements['deletionPolicy'].text
127
- end
128
176
  if xml_element.elements['enableZoomTranscription'] != nil
129
177
  self.enable_zoom_transcription = xml_element.elements['enableZoomTranscription'].text
130
178
  end
131
179
  if xml_element.elements['zoomAccountDescription'] != nil
132
180
  self.zoom_account_description = xml_element.elements['zoomAccountDescription'].text
133
181
  end
182
+ if xml_element.elements['enableMeetingUpload'] != nil
183
+ self.enable_meeting_upload = xml_element.elements['enableMeetingUpload'].text
184
+ end
134
185
  end
135
186
 
136
187
  end
@@ -211,22 +262,22 @@ module Kaltura
211
262
  return client.do_queue()
212
263
  end
213
264
 
214
- # @return [string]
265
+ # load html page the that will ask the user for its KMC URL, derive the region of the user from it,
266
+ # and redirect to the registration page in the correct region, while forwarding the necessary code for registration
267
+ # @return []
215
268
  def oauth_validation()
216
269
  kparams = {}
217
- client.queue_service_action_call('vendor_zoomvendor', 'oauthValidation', 'string', kparams)
270
+ client.queue_service_action_call('vendor_zoomvendor', 'oauthValidation', '', kparams)
218
271
  if (client.is_multirequest)
219
272
  return nil
220
273
  end
221
274
  return client.do_queue()
222
275
  end
223
276
 
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 []
277
+ # @return [string]
227
278
  def pre_oauth_validation()
228
279
  kparams = {}
229
- client.queue_service_action_call('vendor_zoomvendor', 'preOauthValidation', '', kparams)
280
+ client.queue_service_action_call('vendor_zoomvendor', 'preOauthValidation', 'string', kparams)
230
281
  if (client.is_multirequest)
231
282
  return nil
232
283
  end
@@ -256,6 +307,75 @@ module Kaltura
256
307
  end
257
308
  end
258
309
 
310
+ class KalturaVendorIntegrationService < KalturaServiceBase
311
+ def initialize(client)
312
+ super(client)
313
+ end
314
+
315
+ # Add new integration setting object
316
+ # @return [KalturaIntegrationSetting]
317
+ def add(integration, remote_id)
318
+ kparams = {}
319
+ client.add_param(kparams, 'integration', integration)
320
+ client.add_param(kparams, 'remoteId', remote_id)
321
+ client.queue_service_action_call('vendor_vendorintegration', 'add', 'KalturaIntegrationSetting', kparams)
322
+ if (client.is_multirequest)
323
+ return nil
324
+ end
325
+ return client.do_queue()
326
+ end
327
+
328
+ # Delete integration object by ID
329
+ # @return [KalturaIntegrationSetting]
330
+ def delete(integration_id)
331
+ kparams = {}
332
+ client.add_param(kparams, 'integrationId', integration_id)
333
+ client.queue_service_action_call('vendor_vendorintegration', 'delete', 'KalturaIntegrationSetting', kparams)
334
+ if (client.is_multirequest)
335
+ return nil
336
+ end
337
+ return client.do_queue()
338
+ end
339
+
340
+ # Retrieve integration setting object by ID
341
+ # @return [KalturaIntegrationSetting]
342
+ def get(integration_id)
343
+ kparams = {}
344
+ client.add_param(kparams, 'integrationId', integration_id)
345
+ client.queue_service_action_call('vendor_vendorintegration', 'get', 'KalturaIntegrationSetting', kparams)
346
+ if (client.is_multirequest)
347
+ return nil
348
+ end
349
+ return client.do_queue()
350
+ end
351
+
352
+ # Update an existing vedor catalog item object
353
+ # @return [KalturaIntegrationSetting]
354
+ def update(id, integration_setting)
355
+ kparams = {}
356
+ client.add_param(kparams, 'id', id)
357
+ client.add_param(kparams, 'integrationSetting', integration_setting)
358
+ client.queue_service_action_call('vendor_vendorintegration', 'update', 'KalturaIntegrationSetting', kparams)
359
+ if (client.is_multirequest)
360
+ return nil
361
+ end
362
+ return client.do_queue()
363
+ end
364
+
365
+ # Update vendor catalog item status by id
366
+ # @return [KalturaIntegrationSetting]
367
+ def update_status(id, status)
368
+ kparams = {}
369
+ client.add_param(kparams, 'id', id)
370
+ client.add_param(kparams, 'status', status)
371
+ client.queue_service_action_call('vendor_vendorintegration', 'updateStatus', 'KalturaIntegrationSetting', kparams)
372
+ if (client.is_multirequest)
373
+ return nil
374
+ end
375
+ return client.do_queue()
376
+ end
377
+ end
378
+
259
379
  class KalturaClient < KalturaClientBase
260
380
  attr_reader :zoom_vendor_service
261
381
  def zoom_vendor_service
@@ -265,6 +385,14 @@ module Kaltura
265
385
  return @zoom_vendor_service
266
386
  end
267
387
 
388
+ attr_reader :vendor_integration_service
389
+ def vendor_integration_service
390
+ if (@vendor_integration_service == nil)
391
+ @vendor_integration_service = KalturaVendorIntegrationService.new(self)
392
+ end
393
+ return @vendor_integration_service
394
+ end
395
+
268
396
  end
269
397
 
270
398
  end
@@ -35,6 +35,8 @@ module Kaltura
35
35
  # Last playback time reached by user
36
36
  attr_accessor :last_time_reached
37
37
  attr_accessor :last_update_time
38
+ # Property to save last entry ID played in a playlist.
39
+ attr_accessor :playlist_last_entry_id
38
40
 
39
41
  def last_time_reached=(val)
40
42
  @last_time_reached = val.to_i
@@ -54,6 +56,9 @@ module Kaltura
54
56
  if xml_element.elements['lastUpdateTime'] != nil
55
57
  self.last_update_time = xml_element.elements['lastUpdateTime'].text
56
58
  end
59
+ if xml_element.elements['playlistLastEntryId'] != nil
60
+ self.playlist_last_entry_id = xml_element.elements['playlistLastEntryId'].text
61
+ end
57
62
  end
58
63
 
59
64
  end
data/lib/kaltura_types.rb CHANGED
@@ -1962,6 +1962,13 @@ module Kaltura
1962
1962
  attr_accessor :usage_limit_warning
1963
1963
  attr_accessor :last_free_trial_notification_day
1964
1964
  attr_accessor :monitor_usage
1965
+ attr_accessor :password_structure_validations
1966
+ attr_accessor :password_structure_validations_description
1967
+ attr_accessor :pass_replace_freq
1968
+ attr_accessor :max_login_attempts
1969
+ attr_accessor :login_block_period
1970
+ attr_accessor :num_prev_pass_to_keep
1971
+ attr_accessor :two_factor_authentication_mode
1965
1972
 
1966
1973
  def id=(val)
1967
1974
  @id = val.to_i
@@ -2059,6 +2066,21 @@ module Kaltura
2059
2066
  def monitor_usage=(val)
2060
2067
  @monitor_usage = val.to_i
2061
2068
  end
2069
+ def pass_replace_freq=(val)
2070
+ @pass_replace_freq = val.to_i
2071
+ end
2072
+ def max_login_attempts=(val)
2073
+ @max_login_attempts = val.to_i
2074
+ end
2075
+ def login_block_period=(val)
2076
+ @login_block_period = val.to_i
2077
+ end
2078
+ def num_prev_pass_to_keep=(val)
2079
+ @num_prev_pass_to_keep = val.to_i
2080
+ end
2081
+ def two_factor_authentication_mode=(val)
2082
+ @two_factor_authentication_mode = val.to_i
2083
+ end
2062
2084
 
2063
2085
  def from_xml(xml_element)
2064
2086
  super
@@ -2266,6 +2288,27 @@ module Kaltura
2266
2288
  if xml_element.elements['monitorUsage'] != nil
2267
2289
  self.monitor_usage = xml_element.elements['monitorUsage'].text
2268
2290
  end
2291
+ if xml_element.elements['passwordStructureValidations'] != nil
2292
+ self.password_structure_validations = xml_element.elements['passwordStructureValidations'].text
2293
+ end
2294
+ if xml_element.elements['passwordStructureValidationsDescription'] != nil
2295
+ self.password_structure_validations_description = xml_element.elements['passwordStructureValidationsDescription'].text
2296
+ end
2297
+ if xml_element.elements['passReplaceFreq'] != nil
2298
+ self.pass_replace_freq = xml_element.elements['passReplaceFreq'].text
2299
+ end
2300
+ if xml_element.elements['maxLoginAttempts'] != nil
2301
+ self.max_login_attempts = xml_element.elements['maxLoginAttempts'].text
2302
+ end
2303
+ if xml_element.elements['loginBlockPeriod'] != nil
2304
+ self.login_block_period = xml_element.elements['loginBlockPeriod'].text
2305
+ end
2306
+ if xml_element.elements['numPrevPassToKeep'] != nil
2307
+ self.num_prev_pass_to_keep = xml_element.elements['numPrevPassToKeep'].text
2308
+ end
2309
+ if xml_element.elements['twoFactorAuthenticationMode'] != nil
2310
+ self.two_factor_authentication_mode = xml_element.elements['twoFactorAuthenticationMode'].text
2311
+ end
2269
2312
  end
2270
2313
 
2271
2314
  end
@@ -4180,6 +4223,7 @@ module Kaltura
4180
4223
  attr_accessor :title
4181
4224
  attr_accessor :company
4182
4225
  attr_accessor :ks_privileges
4226
+ attr_accessor :encrypted_seed
4183
4227
 
4184
4228
  def type=(val)
4185
4229
  @type = val.to_i
@@ -4250,6 +4294,9 @@ module Kaltura
4250
4294
  if xml_element.elements['ksPrivileges'] != nil
4251
4295
  self.ks_privileges = xml_element.elements['ksPrivileges'].text
4252
4296
  end
4297
+ if xml_element.elements['encryptedSeed'] != nil
4298
+ self.encrypted_seed = xml_element.elements['encryptedSeed'].text
4299
+ end
4253
4300
  end
4254
4301
 
4255
4302
  end
@@ -7575,10 +7622,14 @@ module Kaltura
7575
7622
  attr_accessor :category_ancestor_id_in
7576
7623
  # The id of the original entry
7577
7624
  attr_accessor :redirect_from_entry_id
7625
+ attr_accessor :conversion_profile_id_equal
7578
7626
 
7579
7627
  def is_root=(val)
7580
7628
  @is_root = val.to_i
7581
7629
  end
7630
+ def conversion_profile_id_equal=(val)
7631
+ @conversion_profile_id_equal = val.to_i
7632
+ end
7582
7633
 
7583
7634
  def from_xml(xml_element)
7584
7635
  super
@@ -7603,6 +7654,9 @@ module Kaltura
7603
7654
  if xml_element.elements['redirectFromEntryId'] != nil
7604
7655
  self.redirect_from_entry_id = xml_element.elements['redirectFromEntryId'].text
7605
7656
  end
7657
+ if xml_element.elements['conversionProfileIdEqual'] != nil
7658
+ self.conversion_profile_id_equal = xml_element.elements['conversionProfileIdEqual'].text
7659
+ end
7606
7660
  end
7607
7661
 
7608
7662
  end
@@ -8742,6 +8796,7 @@ module Kaltura
8742
8796
  attr_accessor :time_zone_offset
8743
8797
  attr_accessor :report_items
8744
8798
  attr_accessor :reports_items_group
8799
+ attr_accessor :base_url
8745
8800
 
8746
8801
  def time_zone_offset=(val)
8747
8802
  @time_zone_offset = val.to_i
@@ -8761,6 +8816,9 @@ module Kaltura
8761
8816
  if xml_element.elements['reportsItemsGroup'] != nil
8762
8817
  self.reports_items_group = xml_element.elements['reportsItemsGroup'].text
8763
8818
  end
8819
+ if xml_element.elements['baseUrl'] != nil
8820
+ self.base_url = xml_element.elements['baseUrl'].text
8821
+ end
8764
8822
  end
8765
8823
 
8766
8824
  end
@@ -12775,17 +12833,17 @@ module Kaltura
12775
12833
 
12776
12834
  end
12777
12835
 
12778
- class KalturaDeliveryProfileVodPackagerPlayServer < KalturaDeliveryProfile
12779
- attr_accessor :ad_stitching_enabled
12836
+ class KalturaDeliveryProfileVod < KalturaDeliveryProfile
12837
+ attr_accessor :simulive_support
12780
12838
 
12781
- def ad_stitching_enabled=(val)
12782
- @ad_stitching_enabled = to_b(val)
12839
+ def simulive_support=(val)
12840
+ @simulive_support = to_b(val)
12783
12841
  end
12784
12842
 
12785
12843
  def from_xml(xml_element)
12786
12844
  super
12787
- if xml_element.elements['adStitchingEnabled'] != nil
12788
- self.ad_stitching_enabled = xml_element.elements['adStitchingEnabled'].text
12845
+ if xml_element.elements['simuliveSupport'] != nil
12846
+ self.simulive_support = xml_element.elements['simuliveSupport'].text
12789
12847
  end
12790
12848
  end
12791
12849
 
@@ -13379,6 +13437,15 @@ module Kaltura
13379
13437
 
13380
13438
  end
13381
13439
 
13440
+ class KalturaEntryScheduledCondition < KalturaCondition
13441
+
13442
+
13443
+ def from_xml(xml_element)
13444
+ super
13445
+ end
13446
+
13447
+ end
13448
+
13382
13449
  class KalturaEntryServerNodeBaseFilter < KalturaFilter
13383
13450
  attr_accessor :entry_id_equal
13384
13451
  attr_accessor :entry_id_in
@@ -14709,6 +14776,7 @@ module Kaltura
14709
14776
  attr_accessor :file_paths
14710
14777
  attr_accessor :reports_group
14711
14778
  attr_accessor :files
14779
+ attr_accessor :base_url
14712
14780
 
14713
14781
 
14714
14782
  def from_xml(xml_element)
@@ -14728,6 +14796,9 @@ module Kaltura
14728
14796
  if xml_element.elements['files'] != nil
14729
14797
  self.files = KalturaClientBase.object_from_xml(xml_element.elements['files'], 'KalturaReportExportFile')
14730
14798
  end
14799
+ if xml_element.elements['baseUrl'] != nil
14800
+ self.base_url = xml_element.elements['baseUrl'].text
14801
+ end
14731
14802
  end
14732
14803
 
14733
14804
  end
@@ -17058,17 +17129,17 @@ module Kaltura
17058
17129
 
17059
17130
  end
17060
17131
 
17061
- class KalturaDeliveryProfileVodPackagerHls < KalturaDeliveryProfileVodPackagerPlayServer
17062
- attr_accessor :allow_fairplay_offline
17132
+ class KalturaDeliveryProfileVodPackagerPlayServer < KalturaDeliveryProfileVod
17133
+ attr_accessor :ad_stitching_enabled
17063
17134
 
17064
- def allow_fairplay_offline=(val)
17065
- @allow_fairplay_offline = to_b(val)
17135
+ def ad_stitching_enabled=(val)
17136
+ @ad_stitching_enabled = to_b(val)
17066
17137
  end
17067
17138
 
17068
17139
  def from_xml(xml_element)
17069
17140
  super
17070
- if xml_element.elements['allowFairplayOffline'] != nil
17071
- self.allow_fairplay_offline = xml_element.elements['allowFairplayOffline'].text
17141
+ if xml_element.elements['adStitchingEnabled'] != nil
17142
+ self.ad_stitching_enabled = xml_element.elements['adStitchingEnabled'].text
17072
17143
  end
17073
17144
  end
17074
17145
 
@@ -18823,6 +18894,22 @@ module Kaltura
18823
18894
 
18824
18895
  end
18825
18896
 
18897
+ class KalturaDeliveryProfileVodPackagerHls < KalturaDeliveryProfileVodPackagerPlayServer
18898
+ attr_accessor :allow_fairplay_offline
18899
+
18900
+ def allow_fairplay_offline=(val)
18901
+ @allow_fairplay_offline = to_b(val)
18902
+ end
18903
+
18904
+ def from_xml(xml_element)
18905
+ super
18906
+ if xml_element.elements['allowFairplayOffline'] != nil
18907
+ self.allow_fairplay_offline = xml_element.elements['allowFairplayOffline'].text
18908
+ end
18909
+ end
18910
+
18911
+ end
18912
+
18826
18913
  class KalturaDeliveryServerNodeBaseFilter < KalturaServerNodeFilter
18827
18914
 
18828
18915
 
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.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaltura Inc.