kaltura-client 16.5.0 → 16.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 +4 -4
- data/README +1 -1
- data/lib/kaltura_client.rb +5 -4
- data/lib/kaltura_enums.rb +42 -3
- data/lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb +12 -0
- data/lib/kaltura_plugins/kaltura_http_notification_client_plugin.rb +5 -0
- data/lib/kaltura_plugins/kaltura_reach_client_plugin.rb +53 -0
- data/lib/kaltura_plugins/kaltura_schedule_client_plugin.rb +21 -0
- data/lib/kaltura_plugins/kaltura_sip_client_plugin.rb +10 -3
- data/lib/kaltura_plugins/kaltura_vendor_client_plugin.rb +24 -5
- data/lib/kaltura_types.rb +166 -22
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cd9e6805b4f69530ce831dd4b4ce6a93394a85060e93deef57a1169e66201ba7
|
4
|
+
data.tar.gz: 3faeee5518e2af804b7e8c44701c8ce8260589f07b204ee835eee15dcdc01008
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f20644949499334c72a4da6009da863aaa9773381a2fa893e5160605bbcb720b98d28aedb1050d457a5ade390d798564f89d9b916fe83f3809606afcdf2938f
|
7
|
+
data.tar.gz: 1b7a906a48bfa0d2f664c50b91b2ff58808316ffd26ebf9c36da6c03362102c03384e81afab7d7a05f7499214e97565177d44f7d57df1ab82da7b46f6a8869a8
|
data/README
CHANGED
data/lib/kaltura_client.rb
CHANGED
@@ -2618,7 +2618,7 @@ module Kaltura
|
|
2618
2618
|
|
2619
2619
|
# Delivering the status of a live stream (on-air/offline) if it is possible
|
2620
2620
|
# @return [bool]
|
2621
|
-
def is_live(id, protocol)
|
2621
|
+
def is_live(id, protocol=KalturaNotImplemented)
|
2622
2622
|
kparams = {}
|
2623
2623
|
client.add_param(kparams, 'id', id)
|
2624
2624
|
client.add_param(kparams, 'protocol', protocol)
|
@@ -5699,9 +5699,10 @@ module Kaltura
|
|
5699
5699
|
|
5700
5700
|
# Reset user's password and send the user an email to generate a new one.
|
5701
5701
|
# @return []
|
5702
|
-
def reset_password(email)
|
5702
|
+
def reset_password(email, link_type=KalturaNotImplemented)
|
5703
5703
|
kparams = {}
|
5704
5704
|
client.add_param(kparams, 'email', email)
|
5705
|
+
client.add_param(kparams, 'linkType', link_type)
|
5705
5706
|
client.queue_service_action_call('user', 'resetPassword', '', kparams)
|
5706
5707
|
if (client.is_multirequest)
|
5707
5708
|
return nil
|
@@ -6293,8 +6294,8 @@ module Kaltura
|
|
6293
6294
|
|
6294
6295
|
def initialize(client)
|
6295
6296
|
super(client)
|
6296
|
-
self.client_tag = 'ruby:
|
6297
|
-
self.api_version = '16.
|
6297
|
+
self.client_tag = 'ruby:21-01-07'
|
6298
|
+
self.api_version = '16.14.0'
|
6298
6299
|
end
|
6299
6300
|
|
6300
6301
|
def client_tag=(value)
|
data/lib/kaltura_enums.rb
CHANGED
@@ -1135,6 +1135,7 @@ module Kaltura
|
|
1135
1135
|
STORAGE_PERIODIC_EXPORT = "53"
|
1136
1136
|
STORAGE_PERIODIC_PURGE = "54"
|
1137
1137
|
STORAGE_PERIODIC_DELETE_LOCAL = "55"
|
1138
|
+
REACH_JOB_CLEANER = "56"
|
1138
1139
|
end
|
1139
1140
|
|
1140
1141
|
class KalturaBulkUploadAction
|
@@ -1622,6 +1623,17 @@ module Kaltura
|
|
1622
1623
|
UPDATED_AT_DESC = "-updatedAt"
|
1623
1624
|
end
|
1624
1625
|
|
1626
|
+
class KalturaEntryApplication
|
1627
|
+
KMC = "0"
|
1628
|
+
KMS = "1"
|
1629
|
+
KAF = "2"
|
1630
|
+
PITCH = "3"
|
1631
|
+
KMS_GO = "4"
|
1632
|
+
WEBCAST_APP = "5"
|
1633
|
+
PERSONAL_CAPTURE = "6"
|
1634
|
+
KALTURA_MEETING = "7"
|
1635
|
+
end
|
1636
|
+
|
1625
1637
|
class KalturaEntryIdentifierField
|
1626
1638
|
ID = "id"
|
1627
1639
|
REFERENCE_ID = "referenceId"
|
@@ -2081,6 +2093,7 @@ module Kaltura
|
|
2081
2093
|
FRP = "Franco-Prove"
|
2082
2094
|
FRK = "Frankish"
|
2083
2095
|
FR = "French"
|
2096
|
+
FR_CA = "French (Canada)"
|
2084
2097
|
FY = "Frisian"
|
2085
2098
|
FRR = "Frisian Northern"
|
2086
2099
|
FUR = "Friulian"
|
@@ -2114,8 +2127,8 @@ module Kaltura
|
|
2114
2127
|
HNI = "Hani"
|
2115
2128
|
HA = "Hausa"
|
2116
2129
|
HAW = "Hawaiian"
|
2117
|
-
HE = "Hebrew"
|
2118
2130
|
IW = "Hebrew"
|
2131
|
+
HE = "Hebrew"
|
2119
2132
|
HEI = "Heiltsuk"
|
2120
2133
|
HID = "Hidatsa"
|
2121
2134
|
HIL = "Hiligaynon"
|
@@ -2129,8 +2142,8 @@ module Kaltura
|
|
2129
2142
|
KPO = "Ikposo"
|
2130
2143
|
ILO = "Iloko"
|
2131
2144
|
SMN = "Inari Sami"
|
2132
|
-
ID = "Indonesian"
|
2133
2145
|
IN = "Indonesian"
|
2146
|
+
ID = "Indonesian"
|
2134
2147
|
IZH = "Ingrian"
|
2135
2148
|
INH = "Ingush"
|
2136
2149
|
IA = "Interlingua"
|
@@ -2318,6 +2331,7 @@ module Kaltura
|
|
2318
2331
|
PL = "Polish"
|
2319
2332
|
PNT = "Pontic"
|
2320
2333
|
PT = "Portuguese"
|
2334
|
+
PT_BR = "Portuguese (Brazil)"
|
2321
2335
|
POT = "Potawatomi"
|
2322
2336
|
PRG = "Prussian"
|
2323
2337
|
FUC = "Pulaar"
|
@@ -2390,6 +2404,7 @@ module Kaltura
|
|
2390
2404
|
SMA = "Southern Sami"
|
2391
2405
|
TCE = "Southern Tutchone"
|
2392
2406
|
ES = "Spanish"
|
2407
|
+
ES_XL = "Spanish (Latin America)"
|
2393
2408
|
SRN = "Sranan"
|
2394
2409
|
STO = "Stoney"
|
2395
2410
|
XSV = "Sudovian"
|
@@ -2410,6 +2425,7 @@ module Kaltura
|
|
2410
2425
|
TGX = "Tagish"
|
2411
2426
|
THT = "Tahltan"
|
2412
2427
|
TDD = "Tai Na"
|
2428
|
+
ZH_TW = "Taiwanese Mandarin"
|
2413
2429
|
TG = "Tajik"
|
2414
2430
|
TLY = "Talysh"
|
2415
2431
|
TTQ = "Tamajaq Tawallammat"
|
@@ -2477,8 +2493,8 @@ module Kaltura
|
|
2477
2493
|
WYM = "Wymysorys"
|
2478
2494
|
XH = "Xhosa"
|
2479
2495
|
AME = "Yanesha"
|
2480
|
-
YI = "Yiddish"
|
2481
2496
|
JI = "Yiddish"
|
2497
|
+
YI = "Yiddish"
|
2482
2498
|
YO = "Yoruba"
|
2483
2499
|
ZAI = "Zapotec Isthmus"
|
2484
2500
|
DJE = "Zarma"
|
@@ -2520,6 +2536,7 @@ module Kaltura
|
|
2520
2536
|
EN_US = "en_us"
|
2521
2537
|
EO = "eo"
|
2522
2538
|
ES = "es"
|
2539
|
+
ES_XL = "es_xl"
|
2523
2540
|
ET = "et"
|
2524
2541
|
EU = "eu"
|
2525
2542
|
FA = "fa"
|
@@ -2527,6 +2544,7 @@ module Kaltura
|
|
2527
2544
|
FJ = "fj"
|
2528
2545
|
FO = "fo"
|
2529
2546
|
FR = "fr"
|
2547
|
+
FR_CA = "fr_ca"
|
2530
2548
|
FY = "fy"
|
2531
2549
|
GA = "ga"
|
2532
2550
|
GD = "gd"
|
@@ -2598,6 +2616,7 @@ module Kaltura
|
|
2598
2616
|
PL = "pl"
|
2599
2617
|
PS = "ps"
|
2600
2618
|
PT = "pt"
|
2619
|
+
PT_BR = "pt_br"
|
2601
2620
|
QU = "qu"
|
2602
2621
|
RM = "rm"
|
2603
2622
|
RN = "rn"
|
@@ -2649,6 +2668,7 @@ module Kaltura
|
|
2649
2668
|
YI = "yi"
|
2650
2669
|
YO = "yo"
|
2651
2670
|
ZH = "zh"
|
2671
|
+
ZH_TW = "zh_tw"
|
2652
2672
|
ZU = "zu"
|
2653
2673
|
ZXX = "zxx"
|
2654
2674
|
end
|
@@ -3381,6 +3401,7 @@ module Kaltura
|
|
3381
3401
|
APPLE_HTTP = "applehttp"
|
3382
3402
|
APPLE_HTTP_TO_MC = "applehttp_to_mc"
|
3383
3403
|
AUTO = "auto"
|
3404
|
+
DOWNLOAD = "download"
|
3384
3405
|
AKAMAI_HD = "hdnetwork"
|
3385
3406
|
AKAMAI_HDS = "hdnetworkmanifest"
|
3386
3407
|
HDS = "hds"
|
@@ -3531,6 +3552,8 @@ module Kaltura
|
|
3531
3552
|
INTERCATIVE_VIDEO_NODE_SWITCH_TOP_HOTSPOTS = "55"
|
3532
3553
|
INTERACTIVE_VIDEO_HOTSPOT_CLICKED_PERCENTILES = "56"
|
3533
3554
|
INTERACTIVE_VIDEO_NODE_SWITCH_HOTSPOT_CLICKED_PERCENTILES = "57"
|
3555
|
+
TOP_CUSTOM_VAR2 = "58"
|
3556
|
+
TOP_CUSTOM_VAR3 = "59"
|
3534
3557
|
PARTNER_USAGE = "201"
|
3535
3558
|
MAP_OVERLAY_COUNTRY_REALTIME = "10001"
|
3536
3559
|
MAP_OVERLAY_REGION_REALTIME = "10002"
|
@@ -3633,6 +3656,22 @@ module Kaltura
|
|
3633
3656
|
QOE_ENGAGEMENT_APPLICATION_VERSION = "30062"
|
3634
3657
|
QOE_STREAM_QUALITY_APPLICATION_VERSION = "30063"
|
3635
3658
|
QOE_ERROR_TRACKING_APPLICATION_VERSION = "30064"
|
3659
|
+
HIGHLIGHTS_WEBCAST = "40001"
|
3660
|
+
ENGAGEMENT_WEBCAST = "40002"
|
3661
|
+
QUALITY_WEBCAST = "40003"
|
3662
|
+
MAP_OVERLAY_COUNTRY_WEBCAST = "40004"
|
3663
|
+
MAP_OVERLAY_REGION_WEBCAST = "40005"
|
3664
|
+
MAP_OVERLAY_CITY_WEBCAST = "40006"
|
3665
|
+
PLATFORMS_WEBCAST = "40007"
|
3666
|
+
TOP_DOMAINS_WEBCAST = "40008"
|
3667
|
+
TOP_USERS_WEBCAST = "40009"
|
3668
|
+
ENGAGEMENT_BREAKDOWN_WEBCAST = "40010"
|
3669
|
+
ENGAGMENT_TIMELINE_WEBCAST = "40011"
|
3670
|
+
end
|
3671
|
+
|
3672
|
+
class KalturaResetPassLinkType
|
3673
|
+
KMC = "1"
|
3674
|
+
KMS = "2"
|
3636
3675
|
end
|
3637
3676
|
|
3638
3677
|
class KalturaResponseProfileOrderBy
|
@@ -1263,6 +1263,18 @@ module Kaltura
|
|
1263
1263
|
end
|
1264
1264
|
return client.do_queue()
|
1265
1265
|
end
|
1266
|
+
|
1267
|
+
# @return []
|
1268
|
+
def update_status(drop_folder_id, status)
|
1269
|
+
kparams = {}
|
1270
|
+
client.add_param(kparams, 'dropFolderId', drop_folder_id)
|
1271
|
+
client.add_param(kparams, 'status', status)
|
1272
|
+
client.queue_service_action_call('dropfolder_dropfolder', 'updateStatus', '', kparams)
|
1273
|
+
if (client.is_multirequest)
|
1274
|
+
return nil
|
1275
|
+
end
|
1276
|
+
return client.do_queue()
|
1277
|
+
end
|
1266
1278
|
end
|
1267
1279
|
|
1268
1280
|
# DropFolderFile service lets you create and manage drop folder files
|
@@ -317,6 +317,8 @@ module Kaltura
|
|
317
317
|
attr_accessor :url
|
318
318
|
# Request method.
|
319
319
|
attr_accessor :method
|
320
|
+
# The type of the data to send.
|
321
|
+
attr_accessor :content_type
|
320
322
|
# Data to send.
|
321
323
|
attr_accessor :data
|
322
324
|
# The maximum number of seconds to allow cURL functions to execute.
|
@@ -378,6 +380,9 @@ module Kaltura
|
|
378
380
|
if xml_element.elements['method'] != nil
|
379
381
|
self.method = xml_element.elements['method'].text
|
380
382
|
end
|
383
|
+
if xml_element.elements['contentType'] != nil
|
384
|
+
self.content_type = xml_element.elements['contentType'].text
|
385
|
+
end
|
381
386
|
if xml_element.elements['data'] != nil
|
382
387
|
self.data = xml_element.elements['data'].text
|
383
388
|
end
|
@@ -129,6 +129,8 @@ module Kaltura
|
|
129
129
|
EN_GB = "English (British)"
|
130
130
|
FI = "Finnish"
|
131
131
|
FR = "French"
|
132
|
+
FR_CA = "French (Canada)"
|
133
|
+
GD = "Gaelic (Scottish)"
|
132
134
|
DE = "German"
|
133
135
|
EL = "Greek"
|
134
136
|
HE = "Hebrew"
|
@@ -136,19 +138,30 @@ module Kaltura
|
|
136
138
|
HU = "Hungarian"
|
137
139
|
IS = "Icelandic"
|
138
140
|
IN = "Indonesian"
|
141
|
+
GA = "Irish"
|
139
142
|
IT = "Italian"
|
140
143
|
JA = "Japanese"
|
141
144
|
KO = "Korean"
|
145
|
+
ML = "Malayalam"
|
142
146
|
CMN = "Mandarin Chinese"
|
143
147
|
NO = "Norwegian"
|
144
148
|
PL = "Polish"
|
145
149
|
PT = "Portuguese"
|
150
|
+
PT_BR = "Portuguese (Brazil)"
|
146
151
|
RO = "Romanian"
|
147
152
|
RU = "Russian"
|
148
153
|
ES = "Spanish"
|
154
|
+
ES_XL = "Spanish (Latin America)"
|
149
155
|
SV = "Swedish"
|
156
|
+
ZH_TW = "Taiwanese Mandarin"
|
157
|
+
TA = "Tamil"
|
150
158
|
TH = "Thai"
|
151
159
|
TR = "Turkish"
|
160
|
+
UK = "Ukrainian"
|
161
|
+
UR = "Urdu"
|
162
|
+
VI = "Vietnamese"
|
163
|
+
CY = "Welsh"
|
164
|
+
ZU = "Zulu"
|
152
165
|
end
|
153
166
|
|
154
167
|
class KalturaEntryVendorTaskOrderBy
|
@@ -243,10 +256,18 @@ module Kaltura
|
|
243
256
|
end
|
244
257
|
|
245
258
|
class KalturaVendorTaskData < KalturaObjectBase
|
259
|
+
# The duration of the entry for which the task was created for in milliseconds
|
260
|
+
attr_accessor :entry_duration
|
246
261
|
|
262
|
+
def entry_duration=(val)
|
263
|
+
@entry_duration = val.to_i
|
264
|
+
end
|
247
265
|
|
248
266
|
def from_xml(xml_element)
|
249
267
|
super
|
268
|
+
if xml_element.elements['entryDuration'] != nil
|
269
|
+
self.entry_duration = xml_element.elements['entryDuration'].text
|
270
|
+
end
|
250
271
|
end
|
251
272
|
|
252
273
|
end
|
@@ -638,6 +659,7 @@ module Kaltura
|
|
638
659
|
attr_accessor :service_feature
|
639
660
|
attr_accessor :turn_around_time
|
640
661
|
attr_accessor :pricing
|
662
|
+
attr_accessor :allow_resubmission
|
641
663
|
|
642
664
|
def id=(val)
|
643
665
|
@id = val.to_i
|
@@ -663,6 +685,9 @@ module Kaltura
|
|
663
685
|
def turn_around_time=(val)
|
664
686
|
@turn_around_time = val.to_i
|
665
687
|
end
|
688
|
+
def allow_resubmission=(val)
|
689
|
+
@allow_resubmission = to_b(val)
|
690
|
+
end
|
666
691
|
|
667
692
|
def from_xml(xml_element)
|
668
693
|
super
|
@@ -699,6 +724,9 @@ module Kaltura
|
|
699
724
|
if xml_element.elements['pricing'] != nil
|
700
725
|
self.pricing = KalturaClientBase.object_from_xml(xml_element.elements['pricing'], 'KalturaVendorCatalogItemPricing')
|
701
726
|
end
|
727
|
+
if xml_element.elements['allowResubmission'] != nil
|
728
|
+
self.allow_resubmission = xml_element.elements['allowResubmission'].text
|
729
|
+
end
|
702
730
|
end
|
703
731
|
|
704
732
|
end
|
@@ -1876,6 +1904,20 @@ module Kaltura
|
|
1876
1904
|
return client.do_queue()
|
1877
1905
|
end
|
1878
1906
|
|
1907
|
+
# @return [string]
|
1908
|
+
def get_serve_url(filter_type=KalturaNotImplemented, filter_input=KalturaNotImplemented, status=KalturaNotImplemented, due_date=KalturaNotImplemented)
|
1909
|
+
kparams = {}
|
1910
|
+
client.add_param(kparams, 'filterType', filter_type)
|
1911
|
+
client.add_param(kparams, 'filterInput', filter_input)
|
1912
|
+
client.add_param(kparams, 'status', status)
|
1913
|
+
client.add_param(kparams, 'dueDate', due_date)
|
1914
|
+
client.queue_service_action_call('reach_entryvendortask', 'getServeUrl', 'string', kparams)
|
1915
|
+
if (client.is_multirequest)
|
1916
|
+
return nil
|
1917
|
+
end
|
1918
|
+
return client.do_queue()
|
1919
|
+
end
|
1920
|
+
|
1879
1921
|
# List KalturaEntryVendorTask objects
|
1880
1922
|
# @return [KalturaEntryVendorTaskListResponse]
|
1881
1923
|
def list(filter=KalturaNotImplemented, pager=KalturaNotImplemented)
|
@@ -1902,6 +1944,17 @@ module Kaltura
|
|
1902
1944
|
return client.do_queue()
|
1903
1945
|
end
|
1904
1946
|
|
1947
|
+
# @return [file]
|
1948
|
+
def serve(vendor_partner_id=KalturaNotImplemented, partner_id=KalturaNotImplemented, status=KalturaNotImplemented, due_date=KalturaNotImplemented)
|
1949
|
+
kparams = {}
|
1950
|
+
client.add_param(kparams, 'vendorPartnerId', vendor_partner_id)
|
1951
|
+
client.add_param(kparams, 'partnerId', partner_id)
|
1952
|
+
client.add_param(kparams, 'status', status)
|
1953
|
+
client.add_param(kparams, 'dueDate', due_date)
|
1954
|
+
client.queue_service_action_call('reach_entryvendortask', 'serve', 'file', kparams)
|
1955
|
+
return client.get_serve_url()
|
1956
|
+
end
|
1957
|
+
|
1905
1958
|
# Will serve a requested csv
|
1906
1959
|
# @return [string]
|
1907
1960
|
def serve_csv(id)
|
@@ -689,16 +689,37 @@ module Kaltura
|
|
689
689
|
class KalturaLiveStreamScheduleEvent < KalturaEntryScheduleEvent
|
690
690
|
# Defines the expected audience.
|
691
691
|
attr_accessor :projected_audience
|
692
|
+
# The entry ID of the source entry (for simulive)
|
693
|
+
attr_accessor :source_entry_id
|
694
|
+
# The time relative time before the startTime considered as preStart time
|
695
|
+
attr_accessor :pre_start_time
|
696
|
+
# The time relative time before the endTime considered as postEnd time
|
697
|
+
attr_accessor :post_end_time
|
692
698
|
|
693
699
|
def projected_audience=(val)
|
694
700
|
@projected_audience = val.to_i
|
695
701
|
end
|
702
|
+
def pre_start_time=(val)
|
703
|
+
@pre_start_time = val.to_i
|
704
|
+
end
|
705
|
+
def post_end_time=(val)
|
706
|
+
@post_end_time = val.to_i
|
707
|
+
end
|
696
708
|
|
697
709
|
def from_xml(xml_element)
|
698
710
|
super
|
699
711
|
if xml_element.elements['projectedAudience'] != nil
|
700
712
|
self.projected_audience = xml_element.elements['projectedAudience'].text
|
701
713
|
end
|
714
|
+
if xml_element.elements['sourceEntryId'] != nil
|
715
|
+
self.source_entry_id = xml_element.elements['sourceEntryId'].text
|
716
|
+
end
|
717
|
+
if xml_element.elements['preStartTime'] != nil
|
718
|
+
self.pre_start_time = xml_element.elements['preStartTime'].text
|
719
|
+
end
|
720
|
+
if xml_element.elements['postEndTime'] != nil
|
721
|
+
self.post_end_time = xml_element.elements['postEndTime'].text
|
722
|
+
end
|
702
723
|
end
|
703
724
|
|
704
725
|
end
|
@@ -29,6 +29,12 @@ require 'kaltura_client.rb'
|
|
29
29
|
|
30
30
|
module Kaltura
|
31
31
|
|
32
|
+
class KalturaSipSourceType
|
33
|
+
PICTURE_IN_PICTURE = 1
|
34
|
+
TALKING_HEADS = 2
|
35
|
+
SCREEN_SHARE = 3
|
36
|
+
end
|
37
|
+
|
32
38
|
class KalturaSipServerNodeOrderBy
|
33
39
|
CREATED_AT_ASC = "+createdAt"
|
34
40
|
HEARTBEAT_TIME_ASC = "+heartbeatTime"
|
@@ -111,10 +117,11 @@ module Kaltura
|
|
111
117
|
end
|
112
118
|
|
113
119
|
# @return [string]
|
114
|
-
def generate_sip_url(entry_id, regenerate=false)
|
120
|
+
def generate_sip_url(entry_id, regenerate=false, source_type=1)
|
115
121
|
kparams = {}
|
116
122
|
client.add_param(kparams, 'entryId', entry_id)
|
117
123
|
client.add_param(kparams, 'regenerate', regenerate)
|
124
|
+
client.add_param(kparams, 'sourceType', source_type)
|
118
125
|
client.queue_service_action_call('sip_pexip', 'generateSipUrl', 'string', kparams)
|
119
126
|
if (client.is_multirequest)
|
120
127
|
return nil
|
@@ -122,10 +129,10 @@ module Kaltura
|
|
122
129
|
return client.do_queue()
|
123
130
|
end
|
124
131
|
|
125
|
-
# @return [
|
132
|
+
# @return []
|
126
133
|
def handle_incoming_call()
|
127
134
|
kparams = {}
|
128
|
-
client.queue_service_action_call('sip_pexip', 'handleIncomingCall', '
|
135
|
+
client.queue_service_action_call('sip_pexip', 'handleIncomingCall', '', kparams)
|
129
136
|
if (client.is_multirequest)
|
130
137
|
return nil
|
131
138
|
end
|
@@ -47,11 +47,12 @@ module Kaltura
|
|
47
47
|
attr_accessor :account_id
|
48
48
|
attr_accessor :enable_recording_upload
|
49
49
|
attr_accessor :create_user_if_not_exist
|
50
|
-
attr_accessor :
|
50
|
+
attr_accessor :handle_participants_mode
|
51
51
|
attr_accessor :zoom_user_matching_mode
|
52
52
|
attr_accessor :zoom_user_postfix
|
53
53
|
attr_accessor :zoom_webinar_category
|
54
54
|
attr_accessor :enable_webinar_uploads
|
55
|
+
attr_accessor :conversion_profile_id
|
55
56
|
|
56
57
|
def enable_recording_upload=(val)
|
57
58
|
@enable_recording_upload = val.to_i
|
@@ -59,8 +60,8 @@ module Kaltura
|
|
59
60
|
def create_user_if_not_exist=(val)
|
60
61
|
@create_user_if_not_exist = val.to_i
|
61
62
|
end
|
62
|
-
def
|
63
|
-
@
|
63
|
+
def handle_participants_mode=(val)
|
64
|
+
@handle_participants_mode = val.to_i
|
64
65
|
end
|
65
66
|
def zoom_user_matching_mode=(val)
|
66
67
|
@zoom_user_matching_mode = val.to_i
|
@@ -68,6 +69,9 @@ module Kaltura
|
|
68
69
|
def enable_webinar_uploads=(val)
|
69
70
|
@enable_webinar_uploads = val.to_i
|
70
71
|
end
|
72
|
+
def conversion_profile_id=(val)
|
73
|
+
@conversion_profile_id = val.to_i
|
74
|
+
end
|
71
75
|
|
72
76
|
def from_xml(xml_element)
|
73
77
|
super
|
@@ -86,8 +90,8 @@ module Kaltura
|
|
86
90
|
if xml_element.elements['createUserIfNotExist'] != nil
|
87
91
|
self.create_user_if_not_exist = xml_element.elements['createUserIfNotExist'].text
|
88
92
|
end
|
89
|
-
if xml_element.elements['
|
90
|
-
self.
|
93
|
+
if xml_element.elements['handleParticipantsMode'] != nil
|
94
|
+
self.handle_participants_mode = xml_element.elements['handleParticipantsMode'].text
|
91
95
|
end
|
92
96
|
if xml_element.elements['zoomUserMatchingMode'] != nil
|
93
97
|
self.zoom_user_matching_mode = xml_element.elements['zoomUserMatchingMode'].text
|
@@ -101,6 +105,9 @@ module Kaltura
|
|
101
105
|
if xml_element.elements['enableWebinarUploads'] != nil
|
102
106
|
self.enable_webinar_uploads = xml_element.elements['enableWebinarUploads'].text
|
103
107
|
end
|
108
|
+
if xml_element.elements['conversionProfileId'] != nil
|
109
|
+
self.conversion_profile_id = xml_element.elements['conversionProfileId'].text
|
110
|
+
end
|
104
111
|
end
|
105
112
|
|
106
113
|
end
|
@@ -133,6 +140,18 @@ module Kaltura
|
|
133
140
|
return client.do_queue()
|
134
141
|
end
|
135
142
|
|
143
|
+
# Retrieve zoom integration setting object by partner id
|
144
|
+
# @return [KalturaZoomIntegrationSetting]
|
145
|
+
def get(partner_id)
|
146
|
+
kparams = {}
|
147
|
+
client.add_param(kparams, 'partnerId', partner_id)
|
148
|
+
client.queue_service_action_call('vendor_zoomvendor', 'get', 'KalturaZoomIntegrationSetting', kparams)
|
149
|
+
if (client.is_multirequest)
|
150
|
+
return nil
|
151
|
+
end
|
152
|
+
return client.do_queue()
|
153
|
+
end
|
154
|
+
|
136
155
|
# @return [string]
|
137
156
|
def oauth_validation()
|
138
157
|
kparams = {}
|
data/lib/kaltura_types.rb
CHANGED
@@ -594,6 +594,8 @@ module Kaltura
|
|
594
594
|
attr_accessor :partner_description
|
595
595
|
# Comma separated list of source flavor params ids
|
596
596
|
attr_accessor :actual_source_asset_params_ids
|
597
|
+
# The size (in Bytes) of the asset
|
598
|
+
attr_accessor :size_in_bytes
|
597
599
|
|
598
600
|
def partner_id=(val)
|
599
601
|
@partner_id = val.to_i
|
@@ -613,6 +615,9 @@ module Kaltura
|
|
613
615
|
def deleted_at=(val)
|
614
616
|
@deleted_at = val.to_i
|
615
617
|
end
|
618
|
+
def size_in_bytes=(val)
|
619
|
+
@size_in_bytes = val.to_i
|
620
|
+
end
|
616
621
|
|
617
622
|
def from_xml(xml_element)
|
618
623
|
super
|
@@ -658,6 +663,9 @@ module Kaltura
|
|
658
663
|
if xml_element.elements['actualSourceAssetParamsIds'] != nil
|
659
664
|
self.actual_source_asset_params_ids = xml_element.elements['actualSourceAssetParamsIds'].text
|
660
665
|
end
|
666
|
+
if xml_element.elements['sizeInBytes'] != nil
|
667
|
+
self.size_in_bytes = xml_element.elements['sizeInBytes'].text
|
668
|
+
end
|
661
669
|
end
|
662
670
|
|
663
671
|
end
|
@@ -940,6 +948,10 @@ module Kaltura
|
|
940
948
|
attr_accessor :template_entry_id
|
941
949
|
# should we display this entry in search
|
942
950
|
attr_accessor :display_in_search
|
951
|
+
# Entry application
|
952
|
+
attr_accessor :application
|
953
|
+
# Entry application version
|
954
|
+
attr_accessor :application_version
|
943
955
|
|
944
956
|
def partner_id=(val)
|
945
957
|
@partner_id = val.to_i
|
@@ -1130,6 +1142,12 @@ module Kaltura
|
|
1130
1142
|
if xml_element.elements['displayInSearch'] != nil
|
1131
1143
|
self.display_in_search = xml_element.elements['displayInSearch'].text
|
1132
1144
|
end
|
1145
|
+
if xml_element.elements['application'] != nil
|
1146
|
+
self.application = xml_element.elements['application'].text
|
1147
|
+
end
|
1148
|
+
if xml_element.elements['applicationVersion'] != nil
|
1149
|
+
self.application_version = xml_element.elements['applicationVersion'].text
|
1150
|
+
end
|
1133
1151
|
end
|
1134
1152
|
|
1135
1153
|
end
|
@@ -1913,6 +1931,7 @@ module Kaltura
|
|
1913
1931
|
attr_accessor :embed_code_types
|
1914
1932
|
attr_accessor :template_partner_id
|
1915
1933
|
attr_accessor :ignore_seo_links
|
1934
|
+
attr_accessor :block_direct_login
|
1916
1935
|
attr_accessor :host
|
1917
1936
|
attr_accessor :cdn_host
|
1918
1937
|
attr_accessor :is_first_login
|
@@ -1993,6 +2012,9 @@ module Kaltura
|
|
1993
2012
|
def ignore_seo_links=(val)
|
1994
2013
|
@ignore_seo_links = to_b(val)
|
1995
2014
|
end
|
2015
|
+
def block_direct_login=(val)
|
2016
|
+
@block_direct_login = to_b(val)
|
2017
|
+
end
|
1996
2018
|
def is_first_login=(val)
|
1997
2019
|
@is_first_login = to_b(val)
|
1998
2020
|
end
|
@@ -2170,6 +2192,9 @@ module Kaltura
|
|
2170
2192
|
if xml_element.elements['ignoreSeoLinks'] != nil
|
2171
2193
|
self.ignore_seo_links = xml_element.elements['ignoreSeoLinks'].text
|
2172
2194
|
end
|
2195
|
+
if xml_element.elements['blockDirectLogin'] != nil
|
2196
|
+
self.block_direct_login = xml_element.elements['blockDirectLogin'].text
|
2197
|
+
end
|
2173
2198
|
if xml_element.elements['host'] != nil
|
2174
2199
|
self.host = xml_element.elements['host'].text
|
2175
2200
|
end
|
@@ -4138,6 +4163,8 @@ module Kaltura
|
|
4138
4163
|
attr_accessor :first_name
|
4139
4164
|
attr_accessor :last_name
|
4140
4165
|
attr_accessor :login_enabled
|
4166
|
+
attr_accessor :registration_info
|
4167
|
+
attr_accessor :attendance_info
|
4141
4168
|
|
4142
4169
|
def type=(val)
|
4143
4170
|
@type = val.to_i
|
@@ -4193,6 +4220,12 @@ module Kaltura
|
|
4193
4220
|
if xml_element.elements['loginEnabled'] != nil
|
4194
4221
|
self.login_enabled = xml_element.elements['loginEnabled'].text
|
4195
4222
|
end
|
4223
|
+
if xml_element.elements['registrationInfo'] != nil
|
4224
|
+
self.registration_info = xml_element.elements['registrationInfo'].text
|
4225
|
+
end
|
4226
|
+
if xml_element.elements['attendanceInfo'] != nil
|
4227
|
+
self.attendance_info = xml_element.elements['attendanceInfo'].text
|
4228
|
+
end
|
4196
4229
|
end
|
4197
4230
|
|
4198
4231
|
end
|
@@ -4560,6 +4593,8 @@ module Kaltura
|
|
4560
4593
|
attr_accessor :conversion_quality
|
4561
4594
|
# The source type of the entry
|
4562
4595
|
attr_accessor :source_type
|
4596
|
+
# The source version of the entry
|
4597
|
+
attr_accessor :source_version
|
4563
4598
|
# The search provider type used to import this entry
|
4564
4599
|
attr_accessor :search_provider_type
|
4565
4600
|
# The ID of the media in the importing site
|
@@ -4603,6 +4638,9 @@ module Kaltura
|
|
4603
4638
|
if xml_element.elements['sourceType'] != nil
|
4604
4639
|
self.source_type = xml_element.elements['sourceType'].text
|
4605
4640
|
end
|
4641
|
+
if xml_element.elements['sourceVersion'] != nil
|
4642
|
+
self.source_version = xml_element.elements['sourceVersion'].text
|
4643
|
+
end
|
4606
4644
|
if xml_element.elements['searchProviderType'] != nil
|
4607
4645
|
self.search_provider_type = xml_element.elements['searchProviderType'].text
|
4608
4646
|
end
|
@@ -6924,10 +6962,14 @@ module Kaltura
|
|
6924
6962
|
# The Streams primary server node id
|
6925
6963
|
attr_accessor :primary_server_node_id
|
6926
6964
|
attr_accessor :sip_token
|
6965
|
+
attr_accessor :sip_source_type
|
6927
6966
|
|
6928
6967
|
def primary_server_node_id=(val)
|
6929
6968
|
@primary_server_node_id = val.to_i
|
6930
6969
|
end
|
6970
|
+
def sip_source_type=(val)
|
6971
|
+
@sip_source_type = val.to_i
|
6972
|
+
end
|
6931
6973
|
|
6932
6974
|
def from_xml(xml_element)
|
6933
6975
|
super
|
@@ -6988,6 +7030,9 @@ module Kaltura
|
|
6988
7030
|
if xml_element.elements['sipToken'] != nil
|
6989
7031
|
self.sip_token = xml_element.elements['sipToken'].text
|
6990
7032
|
end
|
7033
|
+
if xml_element.elements['sipSourceType'] != nil
|
7034
|
+
self.sip_source_type = xml_element.elements['sipSourceType'].text
|
7035
|
+
end
|
6991
7036
|
end
|
6992
7037
|
|
6993
7038
|
end
|
@@ -8095,6 +8140,22 @@ module Kaltura
|
|
8095
8140
|
|
8096
8141
|
end
|
8097
8142
|
|
8143
|
+
class KalturaTypedArray < KalturaObjectBase
|
8144
|
+
attr_accessor :count
|
8145
|
+
|
8146
|
+
def count=(val)
|
8147
|
+
@count = val.to_i
|
8148
|
+
end
|
8149
|
+
|
8150
|
+
def from_xml(xml_element)
|
8151
|
+
super
|
8152
|
+
if xml_element.elements['count'] != nil
|
8153
|
+
self.count = xml_element.elements['count'].text
|
8154
|
+
end
|
8155
|
+
end
|
8156
|
+
|
8157
|
+
end
|
8158
|
+
|
8098
8159
|
class KalturaPlaybackContext < KalturaObjectBase
|
8099
8160
|
attr_accessor :sources
|
8100
8161
|
attr_accessor :playback_captions
|
@@ -8103,6 +8164,7 @@ module Kaltura
|
|
8103
8164
|
attr_accessor :actions
|
8104
8165
|
# Array of actions as received from the rules that invalidated
|
8105
8166
|
attr_accessor :messages
|
8167
|
+
attr_accessor :bumper_data
|
8106
8168
|
|
8107
8169
|
|
8108
8170
|
def from_xml(xml_element)
|
@@ -8122,6 +8184,9 @@ module Kaltura
|
|
8122
8184
|
if xml_element.elements['messages'] != nil
|
8123
8185
|
self.messages = KalturaClientBase.object_from_xml(xml_element.elements['messages'], 'KalturaAccessControlMessage')
|
8124
8186
|
end
|
8187
|
+
if xml_element.elements['bumperData'] != nil
|
8188
|
+
self.bumper_data = KalturaClientBase.object_from_xml(xml_element.elements['bumperData'], 'KalturaTypedArray')
|
8189
|
+
end
|
8125
8190
|
end
|
8126
8191
|
|
8127
8192
|
end
|
@@ -8331,6 +8396,23 @@ module Kaltura
|
|
8331
8396
|
|
8332
8397
|
end
|
8333
8398
|
|
8399
|
+
class KalturaReportExportFile < KalturaObjectBase
|
8400
|
+
attr_accessor :file_id
|
8401
|
+
attr_accessor :file_name
|
8402
|
+
|
8403
|
+
|
8404
|
+
def from_xml(xml_element)
|
8405
|
+
super
|
8406
|
+
if xml_element.elements['fileId'] != nil
|
8407
|
+
self.file_id = xml_element.elements['fileId'].text
|
8408
|
+
end
|
8409
|
+
if xml_element.elements['fileName'] != nil
|
8410
|
+
self.file_name = xml_element.elements['fileName'].text
|
8411
|
+
end
|
8412
|
+
end
|
8413
|
+
|
8414
|
+
end
|
8415
|
+
|
8334
8416
|
class KalturaReportInputBaseFilter < KalturaObjectBase
|
8335
8417
|
# Start date as Unix timestamp (In seconds)
|
8336
8418
|
attr_accessor :from_date
|
@@ -8627,6 +8709,7 @@ module Kaltura
|
|
8627
8709
|
# Time zone offset in minutes (between client to UTC)
|
8628
8710
|
attr_accessor :time_zone_offset
|
8629
8711
|
attr_accessor :report_items
|
8712
|
+
attr_accessor :reports_items_group
|
8630
8713
|
|
8631
8714
|
def time_zone_offset=(val)
|
8632
8715
|
@time_zone_offset = val.to_i
|
@@ -8643,6 +8726,9 @@ module Kaltura
|
|
8643
8726
|
if xml_element.elements['reportItems'] != nil
|
8644
8727
|
self.report_items = KalturaClientBase.object_from_xml(xml_element.elements['reportItems'], 'KalturaReportExportItem')
|
8645
8728
|
end
|
8729
|
+
if xml_element.elements['reportsItemsGroup'] != nil
|
8730
|
+
self.reports_items_group = xml_element.elements['reportsItemsGroup'].text
|
8731
|
+
end
|
8646
8732
|
end
|
8647
8733
|
|
8648
8734
|
end
|
@@ -9465,6 +9551,7 @@ module Kaltura
|
|
9465
9551
|
attr_accessor :protocol
|
9466
9552
|
attr_accessor :storage_url
|
9467
9553
|
attr_accessor :storage_base_dir
|
9554
|
+
attr_accessor :path_prefix
|
9468
9555
|
attr_accessor :storage_username
|
9469
9556
|
attr_accessor :storage_password
|
9470
9557
|
attr_accessor :storage_ftp_passive_mode
|
@@ -9588,6 +9675,9 @@ module Kaltura
|
|
9588
9675
|
if xml_element.elements['storageBaseDir'] != nil
|
9589
9676
|
self.storage_base_dir = xml_element.elements['storageBaseDir'].text
|
9590
9677
|
end
|
9678
|
+
if xml_element.elements['pathPrefix'] != nil
|
9679
|
+
self.path_prefix = xml_element.elements['pathPrefix'].text
|
9680
|
+
end
|
9591
9681
|
if xml_element.elements['storageUsername'] != nil
|
9592
9682
|
self.storage_username = xml_element.elements['storageUsername'].text
|
9593
9683
|
end
|
@@ -10148,6 +10238,7 @@ module Kaltura
|
|
10148
10238
|
# Addes the HTML5 script line to the widget's embed code
|
10149
10239
|
attr_accessor :add_embed_html5support
|
10150
10240
|
attr_accessor :roles
|
10241
|
+
attr_accessor :privileges
|
10151
10242
|
|
10152
10243
|
def partner_id=(val)
|
10153
10244
|
@partner_id = val.to_i
|
@@ -10224,6 +10315,9 @@ module Kaltura
|
|
10224
10315
|
if xml_element.elements['roles'] != nil
|
10225
10316
|
self.roles = xml_element.elements['roles'].text
|
10226
10317
|
end
|
10318
|
+
if xml_element.elements['privileges'] != nil
|
10319
|
+
self.privileges = xml_element.elements['privileges'].text
|
10320
|
+
end
|
10227
10321
|
end
|
10228
10322
|
|
10229
10323
|
end
|
@@ -12408,23 +12502,6 @@ module Kaltura
|
|
12408
12502
|
|
12409
12503
|
end
|
12410
12504
|
|
12411
|
-
class KalturaDeliveryProfileAkamaiHttp < KalturaDeliveryProfile
|
12412
|
-
# Should we use intelliseek
|
12413
|
-
attr_accessor :use_intelliseek
|
12414
|
-
|
12415
|
-
def use_intelliseek=(val)
|
12416
|
-
@use_intelliseek = to_b(val)
|
12417
|
-
end
|
12418
|
-
|
12419
|
-
def from_xml(xml_element)
|
12420
|
-
super
|
12421
|
-
if xml_element.elements['useIntelliseek'] != nil
|
12422
|
-
self.use_intelliseek = xml_element.elements['useIntelliseek'].text
|
12423
|
-
end
|
12424
|
-
end
|
12425
|
-
|
12426
|
-
end
|
12427
|
-
|
12428
12505
|
class KalturaDeliveryProfileBaseFilter < KalturaFilter
|
12429
12506
|
attr_accessor :id_equal
|
12430
12507
|
attr_accessor :id_in
|
@@ -12565,7 +12642,7 @@ module Kaltura
|
|
12565
12642
|
|
12566
12643
|
end
|
12567
12644
|
|
12568
|
-
class
|
12645
|
+
class KalturaDeliveryProfileGenericSilverLight < KalturaDeliveryProfile
|
12569
12646
|
attr_accessor :pattern
|
12570
12647
|
|
12571
12648
|
|
@@ -12578,14 +12655,17 @@ module Kaltura
|
|
12578
12655
|
|
12579
12656
|
end
|
12580
12657
|
|
12581
|
-
class
|
12582
|
-
attr_accessor :
|
12658
|
+
class KalturaDeliveryProfileHttp < KalturaDeliveryProfile
|
12659
|
+
attr_accessor :max_size
|
12583
12660
|
|
12661
|
+
def max_size=(val)
|
12662
|
+
@max_size = val.to_i
|
12663
|
+
end
|
12584
12664
|
|
12585
12665
|
def from_xml(xml_element)
|
12586
12666
|
super
|
12587
|
-
if xml_element.elements['
|
12588
|
-
self.
|
12667
|
+
if xml_element.elements['maxSize'] != nil
|
12668
|
+
self.max_size = xml_element.elements['maxSize'].text
|
12589
12669
|
end
|
12590
12670
|
end
|
12591
12671
|
|
@@ -14580,6 +14660,8 @@ module Kaltura
|
|
14580
14660
|
attr_accessor :recipient_email
|
14581
14661
|
attr_accessor :report_items
|
14582
14662
|
attr_accessor :file_paths
|
14663
|
+
attr_accessor :reports_group
|
14664
|
+
attr_accessor :files
|
14583
14665
|
|
14584
14666
|
|
14585
14667
|
def from_xml(xml_element)
|
@@ -14593,6 +14675,12 @@ module Kaltura
|
|
14593
14675
|
if xml_element.elements['filePaths'] != nil
|
14594
14676
|
self.file_paths = xml_element.elements['filePaths'].text
|
14595
14677
|
end
|
14678
|
+
if xml_element.elements['reportsGroup'] != nil
|
14679
|
+
self.reports_group = xml_element.elements['reportsGroup'].text
|
14680
|
+
end
|
14681
|
+
if xml_element.elements['files'] != nil
|
14682
|
+
self.files = KalturaClientBase.object_from_xml(xml_element.elements['files'], 'KalturaReportExportFile')
|
14683
|
+
end
|
14596
14684
|
end
|
14597
14685
|
|
14598
14686
|
end
|
@@ -15450,6 +15538,19 @@ module Kaltura
|
|
15450
15538
|
|
15451
15539
|
end
|
15452
15540
|
|
15541
|
+
class KalturaUrlRecognizerKaltura < KalturaUrlRecognizer
|
15542
|
+
attr_accessor :key
|
15543
|
+
|
15544
|
+
|
15545
|
+
def from_xml(xml_element)
|
15546
|
+
super
|
15547
|
+
if xml_element.elements['key'] != nil
|
15548
|
+
self.key = xml_element.elements['key'].text
|
15549
|
+
end
|
15550
|
+
end
|
15551
|
+
|
15552
|
+
end
|
15553
|
+
|
15453
15554
|
class KalturaUrlTokenizerAkamaiHttp < KalturaUrlTokenizer
|
15454
15555
|
# param
|
15455
15556
|
attr_accessor :param_name
|
@@ -15612,6 +15713,15 @@ module Kaltura
|
|
15612
15713
|
|
15613
15714
|
end
|
15614
15715
|
|
15716
|
+
class KalturaUrlTokenizerKaltura < KalturaUrlTokenizer
|
15717
|
+
|
15718
|
+
|
15719
|
+
def from_xml(xml_element)
|
15720
|
+
super
|
15721
|
+
end
|
15722
|
+
|
15723
|
+
end
|
15724
|
+
|
15615
15725
|
class KalturaUrlTokenizerKs < KalturaUrlTokenizer
|
15616
15726
|
attr_accessor :use_path
|
15617
15727
|
attr_accessor :additional_uris
|
@@ -16754,6 +16864,7 @@ module Kaltura
|
|
16754
16864
|
attr_accessor :custom_data
|
16755
16865
|
attr_accessor :extra_dest_file_syncs
|
16756
16866
|
attr_accessor :engine_message
|
16867
|
+
attr_accessor :dest_file_sync_shared_path
|
16757
16868
|
attr_accessor :user_cpu
|
16758
16869
|
|
16759
16870
|
def user_cpu=(val)
|
@@ -16789,6 +16900,9 @@ module Kaltura
|
|
16789
16900
|
if xml_element.elements['engineMessage'] != nil
|
16790
16901
|
self.engine_message = xml_element.elements['engineMessage'].text
|
16791
16902
|
end
|
16903
|
+
if xml_element.elements['destFileSyncSharedPath'] != nil
|
16904
|
+
self.dest_file_sync_shared_path = xml_element.elements['destFileSyncSharedPath'].text
|
16905
|
+
end
|
16792
16906
|
if xml_element.elements['userCpu'] != nil
|
16793
16907
|
self.user_cpu = xml_element.elements['userCpu'].text
|
16794
16908
|
end
|
@@ -16810,6 +16924,23 @@ module Kaltura
|
|
16810
16924
|
|
16811
16925
|
end
|
16812
16926
|
|
16927
|
+
class KalturaDeliveryProfileAkamaiHttp < KalturaDeliveryProfileHttp
|
16928
|
+
# Should we use intelliseek
|
16929
|
+
attr_accessor :use_intelliseek
|
16930
|
+
|
16931
|
+
def use_intelliseek=(val)
|
16932
|
+
@use_intelliseek = to_b(val)
|
16933
|
+
end
|
16934
|
+
|
16935
|
+
def from_xml(xml_element)
|
16936
|
+
super
|
16937
|
+
if xml_element.elements['useIntelliseek'] != nil
|
16938
|
+
self.use_intelliseek = xml_element.elements['useIntelliseek'].text
|
16939
|
+
end
|
16940
|
+
end
|
16941
|
+
|
16942
|
+
end
|
16943
|
+
|
16813
16944
|
class KalturaDeliveryProfileFilter < KalturaDeliveryProfileBaseFilter
|
16814
16945
|
attr_accessor :is_live
|
16815
16946
|
|
@@ -16826,6 +16957,19 @@ module Kaltura
|
|
16826
16957
|
|
16827
16958
|
end
|
16828
16959
|
|
16960
|
+
class KalturaDeliveryProfileGenericHttp < KalturaDeliveryProfileHttp
|
16961
|
+
attr_accessor :pattern
|
16962
|
+
|
16963
|
+
|
16964
|
+
def from_xml(xml_element)
|
16965
|
+
super
|
16966
|
+
if xml_element.elements['pattern'] != nil
|
16967
|
+
self.pattern = xml_element.elements['pattern'].text
|
16968
|
+
end
|
16969
|
+
end
|
16970
|
+
|
16971
|
+
end
|
16972
|
+
|
16829
16973
|
class KalturaDeliveryProfileGenericRtmp < KalturaDeliveryProfileRtmp
|
16830
16974
|
attr_accessor :pattern
|
16831
16975
|
# rendererClass
|
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: 16.
|
4
|
+
version: 16.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kaltura Inc.
|
@@ -169,7 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
169
169
|
- !ruby/object:Gem::Version
|
170
170
|
version: '0'
|
171
171
|
requirements: []
|
172
|
-
rubygems_version: 3.
|
172
|
+
rubygems_version: 3.2.0.rc.2
|
173
173
|
signing_key:
|
174
174
|
specification_version: 4
|
175
175
|
summary: A gem implementation of Kaltura's Ruby Client
|