Class: Kaltura::Service::EntryAdminService

Inherits:
BaseService
  • Object
show all
Defined in:
lib/kaltura/service.rb

Overview

EntryAdminService is not documented by Kaltura. Probably best not to play with this. This is likely just used internally by the KMC.

Instance Attribute Summary

Attributes inherited from BaseService

#client

Instance Method Summary collapse

Methods inherited from BaseService

#initialize, #perform_request

Constructor Details

This class inherits a constructor from Kaltura::Service::BaseService

Instance Method Details

#get(entry_id, version = -1)) ⇒ Object

Gets an EntryAdmin object by entry_id.

Parameters:

  • entry_id (String)

    Media entry id

  • version (Integer) (defaults to: -1))

    Desired version of the data.

Returns:

  • (Object)

    Not entirely sure what this returns.

Raises:



134
135
136
137
138
139
# File 'lib/kaltura/service.rb', line 134

def get(entry_id, version=-1)
	kparams = {}
	client.add_param(kparams, 'entryId', entry_id)
	client.add_param(kparams, 'version', version)
	perform_request('entryAdmin','get',kparams,false)
end