kaltura-client 18.16.0 → 18.20.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: fe94cfa588ff68a36f35261ded5c192496b6ca7abe314c679bb5f95ad1f227b7
4
- data.tar.gz: e0d94f186140fa6a96026822dada121898f8083f3fd2a99b4c822ee52567bb40
3
+ metadata.gz: acc22197a83360c24678a12e2bd826edf59d66e1a5ad9af252fabb7c328cb738
4
+ data.tar.gz: 5a73eac2a7ecc2bfc6a2bf93929002a2cebe9978e0cc1f6f7713e749ae697147
5
5
  SHA512:
6
- metadata.gz: 150de887ab33dcd4b2bfdf18fdd0b93be2d75fd15fc5b17ca2d4f6655443f9f4abc6c0da02e49988b34eee8e48ace907d32babb0908f54ed735d69483f8a4a0a
7
- data.tar.gz: 185985027e86df44f0114f166511bfbdb6a828e90b8768f8c2bdf3745502eb94ed512bb1c789b393809eace6cb69b5a9ad1d466b68300d76ae256d2e0e860376
6
+ metadata.gz: ea902ae50dc65c11c74fc30c8f22a49a9737bdf8433f7a05b17371e1df5733babe528a688962bfc656bb270507a799422882d7c2a529175bcf27e295e2a1f671
7
+ data.tar.gz: 208b47ed82660093af45e377a5b108652f6e714bbbdbce2f2c283fc2d324560fdf2e7b308a29b443d36b0aad444efa6f883345cf4ee1ec112584b180df7b50db
data/README CHANGED
@@ -1,5 +1,5 @@
1
1
  Kaltura Ruby API Client Library.
2
- Compatible with Kaltura server version 18.16.0 and above.
2
+ Compatible with Kaltura server version 18.20.0 and above.
3
3
 
4
4
  This source contains:
5
5
  - The Kaltura client library (kaltura_client_base.rb)
@@ -6382,8 +6382,8 @@ module Kaltura
6382
6382
 
6383
6383
  def initialize(client)
6384
6384
  super(client)
6385
- self.client_tag = 'ruby:22-10-24'
6386
- self.api_version = '18.16.0'
6385
+ self.client_tag = 'ruby:23-01-03'
6386
+ self.api_version = '18.20.0'
6387
6387
  end
6388
6388
 
6389
6389
  def client_tag=(value)
data/lib/kaltura_enums.rb CHANGED
@@ -3579,6 +3579,7 @@ module Kaltura
3579
3579
  CDN_BANDWIDTH_USAGE = "64"
3580
3580
  REACH_CATALOG_USAGE = "65"
3581
3581
  REACH_PROFILE_USAGE = "66"
3582
+ SELF_SERVE_BANDWIDTH = "67"
3582
3583
  PARTNER_USAGE = "201"
3583
3584
  MAP_OVERLAY_COUNTRY_REALTIME = "10001"
3584
3585
  MAP_OVERLAY_REGION_REALTIME = "10002"
@@ -3706,6 +3707,7 @@ module Kaltura
3706
3707
  class KalturaResetPassLinkType
3707
3708
  KMC = "1"
3708
3709
  KMS = "2"
3710
+ KME = "3"
3709
3711
  end
3710
3712
 
3711
3713
  class KalturaResponseProfileOrderBy
@@ -81,6 +81,7 @@ module Kaltura
81
81
  USER_ROLE = "UserRole"
82
82
  ACCESS_CONTROL = "accessControl"
83
83
  CATEGORY = "category"
84
+ CATEGORY_ENTRY = "categoryEntry"
84
85
  CONVERSION_PROFILE_2 = "conversionProfile2"
85
86
  ENTRY = "entry"
86
87
  FLAVOR_ASSET = "flavorAsset"
@@ -224,7 +224,7 @@ module Kaltura
224
224
  attr_accessor :conversion_profile_id
225
225
  attr_accessor :dc
226
226
  attr_accessor :path
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
+ # The amount of time, in seconds, that should pass so that a file with no change in size will be treated as "finished uploading to folder"
228
228
  attr_accessor :file_size_check_interval
229
229
  attr_accessor :file_delete_policy
230
230
  attr_accessor :file_delete_regex
@@ -207,9 +207,13 @@ module Kaltura
207
207
  COUNTRY = "country"
208
208
  CREATED_AT = "created_at"
209
209
  EMAIL = "email"
210
+ EXTERNAL_ID = "external_id"
210
211
  FIRST_NAME = "first_name"
211
212
  GROUP_IDS = "group_ids"
213
+ IS_ADMIN = "is_admin"
214
+ IS_HASHED = "is_hashed"
212
215
  LAST_NAME = "last_name"
216
+ LOGIN_ENABLED = "login_enabled"
213
217
  PERMISSION_NAMES = "permission_names"
214
218
  ROLE_IDS = "role_ids"
215
219
  SCREEN_NAME = "screen_name"
@@ -40,9 +40,13 @@ module Kaltura
40
40
  COUNTRY = "country"
41
41
  CREATED_AT = "created_at"
42
42
  EMAIL = "email"
43
+ EXTERNAL_ID = "external_id"
43
44
  FIRST_NAME = "first_name"
44
45
  GROUP_IDS = "group_ids"
46
+ IS_ADMIN = "is_admin"
47
+ IS_HASHED = "is_hashed"
45
48
  LAST_NAME = "last_name"
49
+ LOGIN_ENABLED = "login_enabled"
46
50
  PERMISSION_NAMES = "permission_names"
47
51
  ROLE_IDS = "role_ids"
48
52
  SCREEN_NAME = "screen_name"
@@ -695,7 +695,11 @@ module Kaltura
695
695
  attr_accessor :media_key
696
696
  attr_accessor :caption_url
697
697
  attr_accessor :caption_token
698
+ attr_accessor :input_delay
698
699
 
700
+ def input_delay=(val)
701
+ @input_delay = val.to_i
702
+ end
699
703
 
700
704
  def from_xml(xml_element)
701
705
  super
@@ -711,6 +715,9 @@ module Kaltura
711
715
  if xml_element.elements['captionToken'] != nil
712
716
  self.caption_token = xml_element.elements['captionToken'].text
713
717
  end
718
+ if xml_element.elements['inputDelay'] != nil
719
+ self.input_delay = xml_element.elements['inputDelay'].text
720
+ end
714
721
  end
715
722
 
716
723
  end
@@ -60,6 +60,7 @@ module Kaltura
60
60
  attr_accessor :created_at
61
61
  attr_accessor :updated_at
62
62
  attr_accessor :partner_id
63
+ attr_accessor :enable_meeting_upload
63
64
 
64
65
  def id=(val)
65
66
  @id = val.to_i
@@ -82,6 +83,9 @@ module Kaltura
82
83
  def partner_id=(val)
83
84
  @partner_id = val.to_i
84
85
  end
86
+ def enable_meeting_upload=(val)
87
+ @enable_meeting_upload = val.to_i
88
+ end
85
89
 
86
90
  def from_xml(xml_element)
87
91
  super
@@ -118,6 +122,9 @@ module Kaltura
118
122
  if xml_element.elements['partnerId'] != nil
119
123
  self.partner_id = xml_element.elements['partnerId'].text
120
124
  end
125
+ if xml_element.elements['enableMeetingUpload'] != nil
126
+ self.enable_meeting_upload = xml_element.elements['enableMeetingUpload'].text
127
+ end
121
128
  end
122
129
 
123
130
  end
@@ -132,7 +139,6 @@ module Kaltura
132
139
  attr_accessor :jwt_token
133
140
  attr_accessor :enable_zoom_transcription
134
141
  attr_accessor :zoom_account_description
135
- attr_accessor :enable_meeting_upload
136
142
  attr_accessor :opt_out_group_names
137
143
  attr_accessor :opt_in_group_names
138
144
  attr_accessor :group_participation_type
@@ -149,9 +155,6 @@ module Kaltura
149
155
  def enable_zoom_transcription=(val)
150
156
  @enable_zoom_transcription = val.to_i
151
157
  end
152
- def enable_meeting_upload=(val)
153
- @enable_meeting_upload = val.to_i
154
- end
155
158
  def group_participation_type=(val)
156
159
  @group_participation_type = val.to_i
157
160
  end
@@ -185,9 +188,6 @@ module Kaltura
185
188
  if xml_element.elements['zoomAccountDescription'] != nil
186
189
  self.zoom_account_description = xml_element.elements['zoomAccountDescription'].text
187
190
  end
188
- if xml_element.elements['enableMeetingUpload'] != nil
189
- self.enable_meeting_upload = xml_element.elements['enableMeetingUpload'].text
190
- end
191
191
  if xml_element.elements['optOutGroupNames'] != nil
192
192
  self.opt_out_group_names = xml_element.elements['optOutGroupNames'].text
193
193
  end
data/lib/kaltura_types.rb CHANGED
@@ -2016,11 +2016,13 @@ module Kaltura
2016
2016
  attr_accessor :max_login_attempts
2017
2017
  attr_accessor :login_block_period
2018
2018
  attr_accessor :num_prev_pass_to_keep
2019
+ attr_accessor :allow_default_password_restrictions
2019
2020
  attr_accessor :two_factor_authentication_mode
2020
2021
  attr_accessor :is_self_serve
2021
2022
  attr_accessor :allowed_domains
2022
2023
  attr_accessor :excluded_admin_role_name
2023
2024
  attr_accessor :event_platform_allowed_templates
2025
+ attr_accessor :vertical_classification_id
2024
2026
 
2025
2027
  def id=(val)
2026
2028
  @id = val.to_i
@@ -2130,12 +2132,18 @@ module Kaltura
2130
2132
  def num_prev_pass_to_keep=(val)
2131
2133
  @num_prev_pass_to_keep = val.to_i
2132
2134
  end
2135
+ def allow_default_password_restrictions=(val)
2136
+ @allow_default_password_restrictions = to_b(val)
2137
+ end
2133
2138
  def two_factor_authentication_mode=(val)
2134
2139
  @two_factor_authentication_mode = val.to_i
2135
2140
  end
2136
2141
  def is_self_serve=(val)
2137
2142
  @is_self_serve = to_b(val)
2138
2143
  end
2144
+ def vertical_classification_id=(val)
2145
+ @vertical_classification_id = val.to_i
2146
+ end
2139
2147
 
2140
2148
  def from_xml(xml_element)
2141
2149
  super
@@ -2361,6 +2369,9 @@ module Kaltura
2361
2369
  if xml_element.elements['numPrevPassToKeep'] != nil
2362
2370
  self.num_prev_pass_to_keep = xml_element.elements['numPrevPassToKeep'].text
2363
2371
  end
2372
+ if xml_element.elements['allowDefaultPasswordRestrictions'] != nil
2373
+ self.allow_default_password_restrictions = xml_element.elements['allowDefaultPasswordRestrictions'].text
2374
+ end
2364
2375
  if xml_element.elements['twoFactorAuthenticationMode'] != nil
2365
2376
  self.two_factor_authentication_mode = xml_element.elements['twoFactorAuthenticationMode'].text
2366
2377
  end
@@ -2376,6 +2387,9 @@ module Kaltura
2376
2387
  if xml_element.elements['eventPlatformAllowedTemplates'] != nil
2377
2388
  self.event_platform_allowed_templates = xml_element.elements['eventPlatformAllowedTemplates'].text
2378
2389
  end
2390
+ if xml_element.elements['verticalClassificationId'] != nil
2391
+ self.vertical_classification_id = xml_element.elements['verticalClassificationId'].text
2392
+ end
2379
2393
  end
2380
2394
 
2381
2395
  end
@@ -4297,6 +4311,7 @@ module Kaltura
4297
4311
  attr_accessor :date_of_birth
4298
4312
  attr_accessor :gender
4299
4313
  attr_accessor :is_admin
4314
+ attr_accessor :is_guest
4300
4315
  attr_accessor :role_ids
4301
4316
  attr_accessor :role_names
4302
4317
  attr_accessor :is_account_owner
@@ -4311,6 +4326,8 @@ module Kaltura
4311
4326
  attr_accessor :ks_privileges
4312
4327
  attr_accessor :encrypted_seed
4313
4328
  attr_accessor :is_sso_excluded
4329
+ # This field should be sent instead of the id field whenever you want to work with hashed user ids
4330
+ attr_accessor :external_id
4314
4331
 
4315
4332
  def type=(val)
4316
4333
  @type = val.to_i
@@ -4324,6 +4341,9 @@ module Kaltura
4324
4341
  def is_admin=(val)
4325
4342
  @is_admin = to_b(val)
4326
4343
  end
4344
+ def is_guest=(val)
4345
+ @is_guest = to_b(val)
4346
+ end
4327
4347
  def is_account_owner=(val)
4328
4348
  @is_account_owner = to_b(val)
4329
4349
  end
@@ -4348,6 +4368,9 @@ module Kaltura
4348
4368
  if xml_element.elements['isAdmin'] != nil
4349
4369
  self.is_admin = xml_element.elements['isAdmin'].text
4350
4370
  end
4371
+ if xml_element.elements['isGuest'] != nil
4372
+ self.is_guest = xml_element.elements['isGuest'].text
4373
+ end
4351
4374
  if xml_element.elements['roleIds'] != nil
4352
4375
  self.role_ids = xml_element.elements['roleIds'].text
4353
4376
  end
@@ -4390,6 +4413,9 @@ module Kaltura
4390
4413
  if xml_element.elements['isSsoExcluded'] != nil
4391
4414
  self.is_sso_excluded = xml_element.elements['isSsoExcluded'].text
4392
4415
  end
4416
+ if xml_element.elements['externalId'] != nil
4417
+ self.external_id = xml_element.elements['externalId'].text
4418
+ end
4393
4419
  end
4394
4420
 
4395
4421
  end
@@ -11861,6 +11887,7 @@ module Kaltura
11861
11887
  attr_accessor :first_name
11862
11888
  attr_accessor :last_name
11863
11889
  attr_accessor :group
11890
+ attr_accessor :external_id
11864
11891
 
11865
11892
  def date_of_birth=(val)
11866
11893
  @date_of_birth = val.to_i
@@ -11913,6 +11940,9 @@ module Kaltura
11913
11940
  if xml_element.elements['group'] != nil
11914
11941
  self.group = xml_element.elements['group'].text
11915
11942
  end
11943
+ if xml_element.elements['externalId'] != nil
11944
+ self.external_id = xml_element.elements['externalId'].text
11945
+ end
11916
11946
  end
11917
11947
 
11918
11948
  end
@@ -14164,6 +14194,7 @@ module Kaltura
14164
14194
  attr_accessor :recording_info
14165
14195
  attr_accessor :is_playable_user
14166
14196
  attr_accessor :view_mode
14197
+ attr_accessor :features_updated_at
14167
14198
 
14168
14199
  def is_playable_user=(val)
14169
14200
  @is_playable_user = to_b(val)
@@ -14171,6 +14202,9 @@ module Kaltura
14171
14202
  def view_mode=(val)
14172
14203
  @view_mode = val.to_i
14173
14204
  end
14205
+ def features_updated_at=(val)
14206
+ @features_updated_at = val.to_i
14207
+ end
14174
14208
 
14175
14209
  def from_xml(xml_element)
14176
14210
  super
@@ -14186,6 +14220,9 @@ module Kaltura
14186
14220
  if xml_element.elements['viewMode'] != nil
14187
14221
  self.view_mode = xml_element.elements['viewMode'].text
14188
14222
  end
14223
+ if xml_element.elements['featuresUpdatedAt'] != nil
14224
+ self.features_updated_at = xml_element.elements['featuresUpdatedAt'].text
14225
+ end
14189
14226
  end
14190
14227
 
14191
14228
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kaltura-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 18.16.0
4
+ version: 18.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaltura Inc.