kaltura-client 17.2.0 → 17.14.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: 2033f170a1060937b6c30760d980d718d19e6d7697de6b124323d89b14e5188a
4
- data.tar.gz: 16255944a8475e9372603f33eedd68ed5adb3ed21ecbaa2e1e23f786dfcf5274
3
+ metadata.gz: cf188621b2722d9abd9fd405cee5807d9341e98e58fc7dff1c52112c7952c829
4
+ data.tar.gz: 7c8934c1c8e66a6564ba3fc3b8a50649ac3e947840f7c0316320d51034943101
5
5
  SHA512:
6
- metadata.gz: e3557bb3c30a334ddd8974e36a554beea0603153284bafd97dce4a8061e4c73af1f2d3d9ce41da10ccd537c677eb76117dcdd81c2540ea37cb67a1b33c594eee
7
- data.tar.gz: 7ddbbb2025c38d18c893186844debbddbcbbbdc31b3b46f991a6291890eca23481efd68dd79d9c18d50567c0c456293d5bacdfe797f802c97ec76709002c9f56
6
+ metadata.gz: a5b7f8971a9881529167018f12c5981a639777af222a788c50e68e1777143a34b28277bf86a9c1e33732d01987c015083649057d04c8e35d9724916dfc6e69a0
7
+ data.tar.gz: 036f2e7f78a1f9eed31e20aee4f149899c4a95ad427521c35130bdd9c56102bbf1c8c1eb70a3ec9024dd7095ec3d626cba16c0241cac493c8417925881fea1f0
data/README CHANGED
@@ -1,5 +1,5 @@
1
1
  Kaltura Ruby API Client Library.
2
- Compatible with Kaltura server version 17.2.0 and above.
2
+ Compatible with Kaltura server version 17.14.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)
@@ -3940,20 +3978,23 @@ module Kaltura
3940
3978
  end
3941
3979
 
3942
3980
  # @return [file]
3943
- def get_csv(id, params=KalturaNotImplemented)
3981
+ def get_csv(id, params=KalturaNotImplemented, excluded_fields=KalturaNotImplemented)
3944
3982
  kparams = {}
3945
3983
  client.add_param(kparams, 'id', id)
3946
3984
  client.add_param(kparams, 'params', params)
3985
+ client.add_param(kparams, 'excludedFields', excluded_fields)
3947
3986
  client.queue_service_action_call('report', 'getCsv', 'file', kparams)
3948
3987
  return client.get_serve_url()
3949
3988
  end
3950
3989
 
3951
3990
  # Returns report CSV file executed by string params with the following convention: param1=value1;param2=value2
3991
+ # excludedFields can be supplied comma separated
3952
3992
  # @return [file]
3953
- def get_csv_from_string_params(id, params=KalturaNotImplemented)
3993
+ def get_csv_from_string_params(id, params=KalturaNotImplemented, excluded_fields=KalturaNotImplemented)
3954
3994
  kparams = {}
3955
3995
  client.add_param(kparams, 'id', id)
3956
3996
  client.add_param(kparams, 'params', params)
3997
+ client.add_param(kparams, 'excludedFields', excluded_fields)
3957
3998
  client.queue_service_action_call('report', 'getCsvFromStringParams', 'file', kparams)
3958
3999
  return client.get_serve_url()
3959
4000
  end
@@ -6310,8 +6351,8 @@ module Kaltura
6310
6351
 
6311
6352
  def initialize(client)
6312
6353
  super(client)
6313
- self.client_tag = 'ruby:21-05-26'
6314
- self.api_version = '17.2.0'
6354
+ self.client_tag = 'ruby:21-11-24'
6355
+ self.api_version = '17.14.0'
6315
6356
  end
6316
6357
 
6317
6358
  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,9 @@ module Kaltura
1258
1265
  ASSET_TYPE = "16"
1259
1266
  BOOLEAN = "17"
1260
1267
  HTTP_HEADER = "18"
1268
+ ENTRY_SCHEDULED = "19"
1269
+ ACTION_NAME = "20"
1270
+ URL_AUTH_PARAMS = "21"
1261
1271
  end
1262
1272
 
1263
1273
  class KalturaConfMapsSourceLocation
@@ -3487,6 +3497,7 @@ module Kaltura
3487
3497
  MONTHS = "months"
3488
3498
  TEN_MINUTES = "ten_minutes"
3489
3499
  TEN_SECONDS = "ten_seconds"
3500
+ YEARS = "years"
3490
3501
  end
3491
3502
 
3492
3503
  class KalturaReportOrderBy
@@ -3554,6 +3565,7 @@ module Kaltura
3554
3565
  INTERACTIVE_VIDEO_NODE_SWITCH_HOTSPOT_CLICKED_PERCENTILES = "57"
3555
3566
  TOP_CUSTOM_VAR2 = "58"
3556
3567
  TOP_CUSTOM_VAR3 = "59"
3568
+ SELF_SERVE_USAGE = "60"
3557
3569
  PARTNER_USAGE = "201"
3558
3570
  MAP_OVERLAY_COUNTRY_REALTIME = "10001"
3559
3571
  MAP_OVERLAY_REGION_REALTIME = "10002"
@@ -3592,6 +3604,7 @@ module Kaltura
3592
3604
  PLAYBACK_RATE_VPAAS = "20020"
3593
3605
  PARTNER_USAGE_VPAAS = "20021"
3594
3606
  TOP_PLAYBACK_CONTEXT_VPAAS = "20022"
3607
+ SELF_SERVE_USAGE_VPAAS = "20023"
3595
3608
  QOE_OVERVIEW = "30001"
3596
3609
  QOE_EXPERIENCE = "30002"
3597
3610
  QOE_EXPERIENCE_PLATFORMS = "30003"
@@ -3892,6 +3905,7 @@ module Kaltura
3892
3905
  APCN = "apcn"
3893
3906
  APCO = "apco"
3894
3907
  APCS = "apcs"
3908
+ AV1 = "av1"
3895
3909
  COPY = "copy"
3896
3910
  DNXHD = "dnxhd"
3897
3911
  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"
@@ -74,6 +74,7 @@ module Kaltura
74
74
  ERROR_GET_DB_FILE_LIST = "4"
75
75
  DROP_FOLDER_APP_ERROR = "5"
76
76
  CONTENT_MATCH_POLICY_UNDEFINED = "6"
77
+ MISSING_CONFIG = "7"
77
78
  end
78
79
 
79
80
  class KalturaDropFolderFileErrorCode
@@ -226,6 +227,7 @@ module Kaltura
226
227
  # 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
228
  attr_accessor :file_size_check_interval
228
229
  attr_accessor :file_delete_policy
230
+ attr_accessor :file_delete_regex
229
231
  attr_accessor :auto_file_delete_days
230
232
  attr_accessor :file_handler_type
231
233
  attr_accessor :file_name_patterns
@@ -328,6 +330,9 @@ module Kaltura
328
330
  if xml_element.elements['fileDeletePolicy'] != nil
329
331
  self.file_delete_policy = xml_element.elements['fileDeletePolicy'].text
330
332
  end
333
+ if xml_element.elements['fileDeleteRegex'] != nil
334
+ self.file_delete_regex = xml_element.elements['fileDeleteRegex'].text
335
+ end
331
336
  if xml_element.elements['autoFileDeleteDays'] != nil
332
337
  self.auto_file_delete_days = xml_element.elements['autoFileDeleteDays'].text
333
338
  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
@@ -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,47 +48,101 @@ 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
61
- attr_accessor :created_at
62
- attr_accessor :updated_at
63
135
  attr_accessor :enable_meeting_upload
64
136
 
65
137
  def enable_recording_upload=(val)
66
138
  @enable_recording_upload = val.to_i
67
139
  end
68
- def create_user_if_not_exist=(val)
69
- @create_user_if_not_exist = val.to_i
70
- end
71
- def handle_participants_mode=(val)
72
- @handle_participants_mode = val.to_i
73
- end
74
140
  def zoom_user_matching_mode=(val)
75
141
  @zoom_user_matching_mode = val.to_i
76
142
  end
77
143
  def enable_webinar_uploads=(val)
78
144
  @enable_webinar_uploads = val.to_i
79
145
  end
80
- def conversion_profile_id=(val)
81
- @conversion_profile_id = val.to_i
82
- end
83
- def deletion_policy=(val)
84
- @deletion_policy = val.to_i
85
- end
86
146
  def enable_zoom_transcription=(val)
87
147
  @enable_zoom_transcription = val.to_i
88
148
  end
@@ -92,24 +152,12 @@ module Kaltura
92
152
 
93
153
  def from_xml(xml_element)
94
154
  super
95
- if xml_element.elements['defaultUserId'] != nil
96
- self.default_user_id = xml_element.elements['defaultUserId'].text
97
- end
98
155
  if xml_element.elements['zoomCategory'] != nil
99
156
  self.zoom_category = xml_element.elements['zoomCategory'].text
100
157
  end
101
- if xml_element.elements['accountId'] != nil
102
- self.account_id = xml_element.elements['accountId'].text
103
- end
104
158
  if xml_element.elements['enableRecordingUpload'] != nil
105
159
  self.enable_recording_upload = xml_element.elements['enableRecordingUpload'].text
106
160
  end
107
- if xml_element.elements['createUserIfNotExist'] != nil
108
- self.create_user_if_not_exist = xml_element.elements['createUserIfNotExist'].text
109
- end
110
- if xml_element.elements['handleParticipantsMode'] != nil
111
- self.handle_participants_mode = xml_element.elements['handleParticipantsMode'].text
112
- end
113
161
  if xml_element.elements['zoomUserMatchingMode'] != nil
114
162
  self.zoom_user_matching_mode = xml_element.elements['zoomUserMatchingMode'].text
115
163
  end
@@ -122,27 +170,15 @@ module Kaltura
122
170
  if xml_element.elements['enableWebinarUploads'] != nil
123
171
  self.enable_webinar_uploads = xml_element.elements['enableWebinarUploads'].text
124
172
  end
125
- if xml_element.elements['conversionProfileId'] != nil
126
- self.conversion_profile_id = xml_element.elements['conversionProfileId'].text
127
- end
128
173
  if xml_element.elements['jwtToken'] != nil
129
174
  self.jwt_token = xml_element.elements['jwtToken'].text
130
175
  end
131
- if xml_element.elements['deletionPolicy'] != nil
132
- self.deletion_policy = xml_element.elements['deletionPolicy'].text
133
- end
134
176
  if xml_element.elements['enableZoomTranscription'] != nil
135
177
  self.enable_zoom_transcription = xml_element.elements['enableZoomTranscription'].text
136
178
  end
137
179
  if xml_element.elements['zoomAccountDescription'] != nil
138
180
  self.zoom_account_description = xml_element.elements['zoomAccountDescription'].text
139
181
  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
182
  if xml_element.elements['enableMeetingUpload'] != nil
147
183
  self.enable_meeting_upload = xml_element.elements['enableMeetingUpload'].text
148
184
  end
@@ -271,6 +307,75 @@ module Kaltura
271
307
  end
272
308
  end
273
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
+
274
379
  class KalturaClient < KalturaClientBase
275
380
  attr_reader :zoom_vendor_service
276
381
  def zoom_vendor_service
@@ -280,6 +385,14 @@ module Kaltura
280
385
  return @zoom_vendor_service
281
386
  end
282
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
+
283
396
  end
284
397
 
285
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
@@ -1887,6 +1887,19 @@ module Kaltura
1887
1887
 
1888
1888
  end
1889
1889
 
1890
+ class KalturaRegexItem < KalturaObjectBase
1891
+ attr_accessor :regex
1892
+
1893
+
1894
+ def from_xml(xml_element)
1895
+ super
1896
+ if xml_element.elements['regex'] != nil
1897
+ self.regex = xml_element.elements['regex'].text
1898
+ end
1899
+ end
1900
+
1901
+ end
1902
+
1890
1903
  class KalturaPartner < KalturaObjectBase
1891
1904
  attr_accessor :id
1892
1905
  attr_accessor :name
@@ -1962,6 +1975,14 @@ module Kaltura
1962
1975
  attr_accessor :usage_limit_warning
1963
1976
  attr_accessor :last_free_trial_notification_day
1964
1977
  attr_accessor :monitor_usage
1978
+ attr_accessor :password_structure_validations
1979
+ attr_accessor :password_structure_validations_description
1980
+ attr_accessor :pass_replace_freq
1981
+ attr_accessor :max_login_attempts
1982
+ attr_accessor :login_block_period
1983
+ attr_accessor :num_prev_pass_to_keep
1984
+ attr_accessor :two_factor_authentication_mode
1985
+ attr_accessor :is_self_serve
1965
1986
 
1966
1987
  def id=(val)
1967
1988
  @id = val.to_i
@@ -2059,6 +2080,24 @@ module Kaltura
2059
2080
  def monitor_usage=(val)
2060
2081
  @monitor_usage = val.to_i
2061
2082
  end
2083
+ def pass_replace_freq=(val)
2084
+ @pass_replace_freq = val.to_i
2085
+ end
2086
+ def max_login_attempts=(val)
2087
+ @max_login_attempts = val.to_i
2088
+ end
2089
+ def login_block_period=(val)
2090
+ @login_block_period = val.to_i
2091
+ end
2092
+ def num_prev_pass_to_keep=(val)
2093
+ @num_prev_pass_to_keep = val.to_i
2094
+ end
2095
+ def two_factor_authentication_mode=(val)
2096
+ @two_factor_authentication_mode = val.to_i
2097
+ end
2098
+ def is_self_serve=(val)
2099
+ @is_self_serve = to_b(val)
2100
+ end
2062
2101
 
2063
2102
  def from_xml(xml_element)
2064
2103
  super
@@ -2266,6 +2305,30 @@ module Kaltura
2266
2305
  if xml_element.elements['monitorUsage'] != nil
2267
2306
  self.monitor_usage = xml_element.elements['monitorUsage'].text
2268
2307
  end
2308
+ if xml_element.elements['passwordStructureValidations'] != nil
2309
+ self.password_structure_validations = KalturaClientBase.object_from_xml(xml_element.elements['passwordStructureValidations'], 'KalturaRegexItem')
2310
+ end
2311
+ if xml_element.elements['passwordStructureValidationsDescription'] != nil
2312
+ self.password_structure_validations_description = xml_element.elements['passwordStructureValidationsDescription'].text
2313
+ end
2314
+ if xml_element.elements['passReplaceFreq'] != nil
2315
+ self.pass_replace_freq = xml_element.elements['passReplaceFreq'].text
2316
+ end
2317
+ if xml_element.elements['maxLoginAttempts'] != nil
2318
+ self.max_login_attempts = xml_element.elements['maxLoginAttempts'].text
2319
+ end
2320
+ if xml_element.elements['loginBlockPeriod'] != nil
2321
+ self.login_block_period = xml_element.elements['loginBlockPeriod'].text
2322
+ end
2323
+ if xml_element.elements['numPrevPassToKeep'] != nil
2324
+ self.num_prev_pass_to_keep = xml_element.elements['numPrevPassToKeep'].text
2325
+ end
2326
+ if xml_element.elements['twoFactorAuthenticationMode'] != nil
2327
+ self.two_factor_authentication_mode = xml_element.elements['twoFactorAuthenticationMode'].text
2328
+ end
2329
+ if xml_element.elements['isSelfServe'] != nil
2330
+ self.is_self_serve = xml_element.elements['isSelfServe'].text
2331
+ end
2269
2332
  end
2270
2333
 
2271
2334
  end
@@ -4180,6 +4243,7 @@ module Kaltura
4180
4243
  attr_accessor :title
4181
4244
  attr_accessor :company
4182
4245
  attr_accessor :ks_privileges
4246
+ attr_accessor :encrypted_seed
4183
4247
 
4184
4248
  def type=(val)
4185
4249
  @type = val.to_i
@@ -4250,6 +4314,9 @@ module Kaltura
4250
4314
  if xml_element.elements['ksPrivileges'] != nil
4251
4315
  self.ks_privileges = xml_element.elements['ksPrivileges'].text
4252
4316
  end
4317
+ if xml_element.elements['encryptedSeed'] != nil
4318
+ self.encrypted_seed = xml_element.elements['encryptedSeed'].text
4319
+ end
4253
4320
  end
4254
4321
 
4255
4322
  end
@@ -7575,10 +7642,14 @@ module Kaltura
7575
7642
  attr_accessor :category_ancestor_id_in
7576
7643
  # The id of the original entry
7577
7644
  attr_accessor :redirect_from_entry_id
7645
+ attr_accessor :conversion_profile_id_equal
7578
7646
 
7579
7647
  def is_root=(val)
7580
7648
  @is_root = val.to_i
7581
7649
  end
7650
+ def conversion_profile_id_equal=(val)
7651
+ @conversion_profile_id_equal = val.to_i
7652
+ end
7582
7653
 
7583
7654
  def from_xml(xml_element)
7584
7655
  super
@@ -7603,6 +7674,9 @@ module Kaltura
7603
7674
  if xml_element.elements['redirectFromEntryId'] != nil
7604
7675
  self.redirect_from_entry_id = xml_element.elements['redirectFromEntryId'].text
7605
7676
  end
7677
+ if xml_element.elements['conversionProfileIdEqual'] != nil
7678
+ self.conversion_profile_id_equal = xml_element.elements['conversionProfileIdEqual'].text
7679
+ end
7606
7680
  end
7607
7681
 
7608
7682
  end
@@ -8742,6 +8816,7 @@ module Kaltura
8742
8816
  attr_accessor :time_zone_offset
8743
8817
  attr_accessor :report_items
8744
8818
  attr_accessor :reports_items_group
8819
+ attr_accessor :base_url
8745
8820
 
8746
8821
  def time_zone_offset=(val)
8747
8822
  @time_zone_offset = val.to_i
@@ -8761,6 +8836,9 @@ module Kaltura
8761
8836
  if xml_element.elements['reportsItemsGroup'] != nil
8762
8837
  self.reports_items_group = xml_element.elements['reportsItemsGroup'].text
8763
8838
  end
8839
+ if xml_element.elements['baseUrl'] != nil
8840
+ self.base_url = xml_element.elements['baseUrl'].text
8841
+ end
8764
8842
  end
8765
8843
 
8766
8844
  end
@@ -12775,17 +12853,17 @@ module Kaltura
12775
12853
 
12776
12854
  end
12777
12855
 
12778
- class KalturaDeliveryProfileVodPackagerPlayServer < KalturaDeliveryProfile
12779
- attr_accessor :ad_stitching_enabled
12856
+ class KalturaDeliveryProfileVod < KalturaDeliveryProfile
12857
+ attr_accessor :simulive_support
12780
12858
 
12781
- def ad_stitching_enabled=(val)
12782
- @ad_stitching_enabled = to_b(val)
12859
+ def simulive_support=(val)
12860
+ @simulive_support = to_b(val)
12783
12861
  end
12784
12862
 
12785
12863
  def from_xml(xml_element)
12786
12864
  super
12787
- if xml_element.elements['adStitchingEnabled'] != nil
12788
- self.ad_stitching_enabled = xml_element.elements['adStitchingEnabled'].text
12865
+ if xml_element.elements['simuliveSupport'] != nil
12866
+ self.simulive_support = xml_element.elements['simuliveSupport'].text
12789
12867
  end
12790
12868
  end
12791
12869
 
@@ -13379,6 +13457,15 @@ module Kaltura
13379
13457
 
13380
13458
  end
13381
13459
 
13460
+ class KalturaEntryScheduledCondition < KalturaCondition
13461
+
13462
+
13463
+ def from_xml(xml_element)
13464
+ super
13465
+ end
13466
+
13467
+ end
13468
+
13382
13469
  class KalturaEntryServerNodeBaseFilter < KalturaFilter
13383
13470
  attr_accessor :entry_id_equal
13384
13471
  attr_accessor :entry_id_in
@@ -14709,6 +14796,7 @@ module Kaltura
14709
14796
  attr_accessor :file_paths
14710
14797
  attr_accessor :reports_group
14711
14798
  attr_accessor :files
14799
+ attr_accessor :base_url
14712
14800
 
14713
14801
 
14714
14802
  def from_xml(xml_element)
@@ -14728,6 +14816,9 @@ module Kaltura
14728
14816
  if xml_element.elements['files'] != nil
14729
14817
  self.files = KalturaClientBase.object_from_xml(xml_element.elements['files'], 'KalturaReportExportFile')
14730
14818
  end
14819
+ if xml_element.elements['baseUrl'] != nil
14820
+ self.base_url = xml_element.elements['baseUrl'].text
14821
+ end
14731
14822
  end
14732
14823
 
14733
14824
  end
@@ -15553,6 +15644,15 @@ module Kaltura
15553
15644
 
15554
15645
  end
15555
15646
 
15647
+ class KalturaUrlAuthenticationParamsCondition < KalturaCondition
15648
+
15649
+
15650
+ def from_xml(xml_element)
15651
+ super
15652
+ end
15653
+
15654
+ end
15655
+
15556
15656
  class KalturaUrlRecognizerAkamaiG2O < KalturaUrlRecognizer
15557
15657
  # headerData
15558
15658
  attr_accessor :header_data
@@ -17058,17 +17158,17 @@ module Kaltura
17058
17158
 
17059
17159
  end
17060
17160
 
17061
- class KalturaDeliveryProfileVodPackagerHls < KalturaDeliveryProfileVodPackagerPlayServer
17062
- attr_accessor :allow_fairplay_offline
17161
+ class KalturaDeliveryProfileVodPackagerPlayServer < KalturaDeliveryProfileVod
17162
+ attr_accessor :ad_stitching_enabled
17063
17163
 
17064
- def allow_fairplay_offline=(val)
17065
- @allow_fairplay_offline = to_b(val)
17164
+ def ad_stitching_enabled=(val)
17165
+ @ad_stitching_enabled = to_b(val)
17066
17166
  end
17067
17167
 
17068
17168
  def from_xml(xml_element)
17069
17169
  super
17070
- if xml_element.elements['allowFairplayOffline'] != nil
17071
- self.allow_fairplay_offline = xml_element.elements['allowFairplayOffline'].text
17170
+ if xml_element.elements['adStitchingEnabled'] != nil
17171
+ self.ad_stitching_enabled = xml_element.elements['adStitchingEnabled'].text
17072
17172
  end
17073
17173
  end
17074
17174
 
@@ -18479,6 +18579,15 @@ module Kaltura
18479
18579
 
18480
18580
  end
18481
18581
 
18582
+ class KalturaActionNameCondition < KalturaRegexCondition
18583
+
18584
+
18585
+ def from_xml(xml_element)
18586
+ super
18587
+ end
18588
+
18589
+ end
18590
+
18482
18591
  class KalturaAmazonS3StorageExportJobData < KalturaStorageExportJobData
18483
18592
  attr_accessor :files_permission_in_s3
18484
18593
  attr_accessor :s3region
@@ -18823,6 +18932,22 @@ module Kaltura
18823
18932
 
18824
18933
  end
18825
18934
 
18935
+ class KalturaDeliveryProfileVodPackagerHls < KalturaDeliveryProfileVodPackagerPlayServer
18936
+ attr_accessor :allow_fairplay_offline
18937
+
18938
+ def allow_fairplay_offline=(val)
18939
+ @allow_fairplay_offline = to_b(val)
18940
+ end
18941
+
18942
+ def from_xml(xml_element)
18943
+ super
18944
+ if xml_element.elements['allowFairplayOffline'] != nil
18945
+ self.allow_fairplay_offline = xml_element.elements['allowFairplayOffline'].text
18946
+ end
18947
+ end
18948
+
18949
+ end
18950
+
18826
18951
  class KalturaDeliveryServerNodeBaseFilter < KalturaServerNodeFilter
18827
18952
 
18828
18953
 
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.2.0
4
+ version: 17.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaltura Inc.