kaltura-client 17.12.0 → 17.14.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6342e800e5037268c4ee3e5c095b0b6171bf146eac94f16809adf706fdce19d8
4
- data.tar.gz: a6164b03cf9bbc9a2f683b705553eacfb7a33f7db9b9b2445bacfa016cf3966c
3
+ metadata.gz: cf188621b2722d9abd9fd405cee5807d9341e98e58fc7dff1c52112c7952c829
4
+ data.tar.gz: 7c8934c1c8e66a6564ba3fc3b8a50649ac3e947840f7c0316320d51034943101
5
5
  SHA512:
6
- metadata.gz: 53728602179e9849c43aabaa67977670bd384f717921490b2b728e0dd4389f8282a4fb93d1c0c09008730c1884be504db4c195a584a75bbaf2bfc6881801979f
7
- data.tar.gz: 480bbacbf0f0bfb42e861777017ec98b06df65268481503c2d36972405cd3054acc21d2ce763bcd99469e8c3f59ef5b9493c51dec576ddfaf7b62100975f22bb
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.12.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)
@@ -3978,20 +3978,23 @@ module Kaltura
3978
3978
  end
3979
3979
 
3980
3980
  # @return [file]
3981
- def get_csv(id, params=KalturaNotImplemented)
3981
+ def get_csv(id, params=KalturaNotImplemented, excluded_fields=KalturaNotImplemented)
3982
3982
  kparams = {}
3983
3983
  client.add_param(kparams, 'id', id)
3984
3984
  client.add_param(kparams, 'params', params)
3985
+ client.add_param(kparams, 'excludedFields', excluded_fields)
3985
3986
  client.queue_service_action_call('report', 'getCsv', 'file', kparams)
3986
3987
  return client.get_serve_url()
3987
3988
  end
3988
3989
 
3989
3990
  # Returns report CSV file executed by string params with the following convention: param1=value1;param2=value2
3991
+ # excludedFields can be supplied comma separated
3990
3992
  # @return [file]
3991
- def get_csv_from_string_params(id, params=KalturaNotImplemented)
3993
+ def get_csv_from_string_params(id, params=KalturaNotImplemented, excluded_fields=KalturaNotImplemented)
3992
3994
  kparams = {}
3993
3995
  client.add_param(kparams, 'id', id)
3994
3996
  client.add_param(kparams, 'params', params)
3997
+ client.add_param(kparams, 'excludedFields', excluded_fields)
3995
3998
  client.queue_service_action_call('report', 'getCsvFromStringParams', 'file', kparams)
3996
3999
  return client.get_serve_url()
3997
4000
  end
@@ -6348,8 +6351,8 @@ module Kaltura
6348
6351
 
6349
6352
  def initialize(client)
6350
6353
  super(client)
6351
- self.client_tag = 'ruby:21-10-18'
6352
- self.api_version = '17.12.0'
6354
+ self.client_tag = 'ruby:21-11-24'
6355
+ self.api_version = '17.14.0'
6353
6356
  end
6354
6357
 
6355
6358
  def client_tag=(value)
data/lib/kaltura_enums.rb CHANGED
@@ -1266,6 +1266,8 @@ module Kaltura
1266
1266
  BOOLEAN = "17"
1267
1267
  HTTP_HEADER = "18"
1268
1268
  ENTRY_SCHEDULED = "19"
1269
+ ACTION_NAME = "20"
1270
+ URL_AUTH_PARAMS = "21"
1269
1271
  end
1270
1272
 
1271
1273
  class KalturaConfMapsSourceLocation
@@ -3495,6 +3497,7 @@ module Kaltura
3495
3497
  MONTHS = "months"
3496
3498
  TEN_MINUTES = "ten_minutes"
3497
3499
  TEN_SECONDS = "ten_seconds"
3500
+ YEARS = "years"
3498
3501
  end
3499
3502
 
3500
3503
  class KalturaReportOrderBy
@@ -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
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
@@ -1969,6 +1982,7 @@ module Kaltura
1969
1982
  attr_accessor :login_block_period
1970
1983
  attr_accessor :num_prev_pass_to_keep
1971
1984
  attr_accessor :two_factor_authentication_mode
1985
+ attr_accessor :is_self_serve
1972
1986
 
1973
1987
  def id=(val)
1974
1988
  @id = val.to_i
@@ -2081,6 +2095,9 @@ module Kaltura
2081
2095
  def two_factor_authentication_mode=(val)
2082
2096
  @two_factor_authentication_mode = val.to_i
2083
2097
  end
2098
+ def is_self_serve=(val)
2099
+ @is_self_serve = to_b(val)
2100
+ end
2084
2101
 
2085
2102
  def from_xml(xml_element)
2086
2103
  super
@@ -2289,7 +2306,7 @@ module Kaltura
2289
2306
  self.monitor_usage = xml_element.elements['monitorUsage'].text
2290
2307
  end
2291
2308
  if xml_element.elements['passwordStructureValidations'] != nil
2292
- self.password_structure_validations = xml_element.elements['passwordStructureValidations'].text
2309
+ self.password_structure_validations = KalturaClientBase.object_from_xml(xml_element.elements['passwordStructureValidations'], 'KalturaRegexItem')
2293
2310
  end
2294
2311
  if xml_element.elements['passwordStructureValidationsDescription'] != nil
2295
2312
  self.password_structure_validations_description = xml_element.elements['passwordStructureValidationsDescription'].text
@@ -2309,6 +2326,9 @@ module Kaltura
2309
2326
  if xml_element.elements['twoFactorAuthenticationMode'] != nil
2310
2327
  self.two_factor_authentication_mode = xml_element.elements['twoFactorAuthenticationMode'].text
2311
2328
  end
2329
+ if xml_element.elements['isSelfServe'] != nil
2330
+ self.is_self_serve = xml_element.elements['isSelfServe'].text
2331
+ end
2312
2332
  end
2313
2333
 
2314
2334
  end
@@ -15624,6 +15644,15 @@ module Kaltura
15624
15644
 
15625
15645
  end
15626
15646
 
15647
+ class KalturaUrlAuthenticationParamsCondition < KalturaCondition
15648
+
15649
+
15650
+ def from_xml(xml_element)
15651
+ super
15652
+ end
15653
+
15654
+ end
15655
+
15627
15656
  class KalturaUrlRecognizerAkamaiG2O < KalturaUrlRecognizer
15628
15657
  # headerData
15629
15658
  attr_accessor :header_data
@@ -18550,6 +18579,15 @@ module Kaltura
18550
18579
 
18551
18580
  end
18552
18581
 
18582
+ class KalturaActionNameCondition < KalturaRegexCondition
18583
+
18584
+
18585
+ def from_xml(xml_element)
18586
+ super
18587
+ end
18588
+
18589
+ end
18590
+
18553
18591
  class KalturaAmazonS3StorageExportJobData < KalturaStorageExportJobData
18554
18592
  attr_accessor :files_permission_in_s3
18555
18593
  attr_accessor :s3region
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.12.0
4
+ version: 17.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaltura Inc.