class Kaltura::KalturaConversionProfileAssetParamsService

Manage the connection between Conversion Profiles and Asset Params

Public Class Methods

new(client) click to toggle source
Calls superclass method
# File lib/kaltura_client.rb, line 1165
def initialize(client)
        super(client)
end

Public Instance Methods

list(filter=KalturaNotImplemented, pager=KalturaNotImplemented) click to toggle source

Lists asset parmas of conversion profile by ID @return [KalturaConversionProfileAssetParamsListResponse]

# File lib/kaltura_client.rb, line 1171
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', 'KalturaConversionProfileAssetParamsListResponse', kparams)
        if (client.is_multirequest)
                return nil
        end
        return client.do_queue()
end
update(conversion_profile_id, asset_params_id, conversion_profile_asset_params) click to toggle source

Update asset parmas of conversion profile by ID @return [KalturaConversionProfileAssetParams]

# File lib/kaltura_client.rb, line 1184
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', 'KalturaConversionProfileAssetParams', kparams)
        if (client.is_multirequest)
                return nil
        end
        return client.do_queue()
end