Class: Kaltura::KalturaLiveChannelSegmentService

Inherits:
KalturaServiceBase show all
Defined in:
lib/kaltura_client.rb

Overview

Manage live channel segments

Instance Attribute Summary

Attributes inherited from KalturaServiceBase

#client

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ KalturaLiveChannelSegmentService

Returns a new instance of KalturaLiveChannelSegmentService.



2170
2171
2172
# File 'lib/kaltura_client.rb', line 2170

def initialize(client)
	super(client)
end

Instance Method Details

#add(live_channel_segment) ⇒ KalturaLiveChannelSegment

Add new live channel segment



2176
2177
2178
2179
2180
2181
2182
2183
2184
# File 'lib/kaltura_client.rb', line 2176

def add(live_channel_segment)
	kparams = {}
	client.add_param(kparams, 'liveChannelSegment', live_channel_segment)
	client.queue_service_action_call('livechannelsegment', 'add', 'KalturaLiveChannelSegment', kparams)
	if (client.is_multirequest)
		return nil
	end
	return client.do_queue()
end

#delete(id) ⇒ Object

Delete live channel segment by id

Returns:



2188
2189
2190
2191
2192
2193
2194
2195
2196
# File 'lib/kaltura_client.rb', line 2188

def delete(id)
	kparams = {}
	client.add_param(kparams, 'id', id)
	client.queue_service_action_call('livechannelsegment', 'delete', '', kparams)
	if (client.is_multirequest)
		return nil
	end
	return client.do_queue()
end

#get(id) ⇒ KalturaLiveChannelSegment

Get live channel segment by id



2200
2201
2202
2203
2204
2205
2206
2207
2208
# File 'lib/kaltura_client.rb', line 2200

def get(id)
	kparams = {}
	client.add_param(kparams, 'id', id)
	client.queue_service_action_call('livechannelsegment', 'get', 'KalturaLiveChannelSegment', kparams)
	if (client.is_multirequest)
		return nil
	end
	return client.do_queue()
end

#list(filter = KalturaNotImplemented, pager = KalturaNotImplemented) ⇒ KalturaLiveChannelSegmentListResponse

List live channel segments by filter and pager



2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
# File 'lib/kaltura_client.rb', line 2212

def list(filter=KalturaNotImplemented, pager=KalturaNotImplemented)
	kparams = {}
	client.add_param(kparams, 'filter', filter)
	client.add_param(kparams, 'pager', pager)
	client.queue_service_action_call('livechannelsegment', 'list', 'KalturaLiveChannelSegmentListResponse', kparams)
	if (client.is_multirequest)
		return nil
	end
	return client.do_queue()
end

#update(id, live_channel_segment) ⇒ KalturaLiveChannelSegment

Update live channel segment by id



2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
# File 'lib/kaltura_client.rb', line 2225

def update(id, live_channel_segment)
	kparams = {}
	client.add_param(kparams, 'id', id)
	client.add_param(kparams, 'liveChannelSegment', live_channel_segment)
	client.queue_service_action_call('livechannelsegment', 'update', 'KalturaLiveChannelSegment', kparams)
	if (client.is_multirequest)
		return nil
	end
	return client.do_queue()
end