Class: Kaltura::KalturaConversionProfileAssetParamsService

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

Overview

Manage the connection between Conversion Profiles and Asset Params

Instance Attribute Summary

Attributes inherited from KalturaServiceBase

#client

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ KalturaConversionProfileAssetParamsService

Returns a new instance of KalturaConversionProfileAssetParamsService.



9979
9980
9981
# File 'lib/kaltura_client.rb', line 9979

def initialize(client)
	super(client)
end

Instance Method Details

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

Lists asset parmas of conversion profile by ID



9985
9986
9987
9988
9989
9990
9991
9992
9993
9994
# File 'lib/kaltura_client.rb', line 9985

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

#update(conversion_profile_id, asset_params_id, conversion_profile_asset_params) ⇒ Object

Update asset parmas of conversion profile by ID



9998
9999
10000
10001
10002
10003
10004
10005
10006
10007
10008
# File 'lib/kaltura_client.rb', line 9998

def update(conversion_profile_id, asset_params_id, conversion_profile_asset_params)
	kparams = {}
	client.add_param(kparams, 'conversionProfileId', conversion_profile_id);
	client.add_param(kparams, 'assetParamsId', asset_params_id);
	client.add_param(kparams, 'conversionProfileAssetParams', conversion_profile_asset_params);
	client.queue_service_action_call('conversionprofileassetparams', 'update', kparams);
	if (client.is_multirequest)
		return nil;
	end
	return client.do_queue();
end