-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto-generated by Jenkins job OTT-Generate-ClientLibs-ForTesting/2, b…
…ranch BEO-14481
- Loading branch information
Backend CI
committed
Sep 5, 2023
1 parent
40752cb
commit bdf1d97
Showing
36 changed files
with
787 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaVodIngestAssetResultResponse } from './KalturaVodIngestAssetResultResponse'; | ||
|
||
import { KalturaVodIngestAssetResultFilter } from './KalturaVodIngestAssetResultFilter'; | ||
import { KalturaFilterPager } from './KalturaFilterPager'; | ||
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; | ||
|
||
export interface IngestStatusGetVodAssetResultActionArgs extends KalturaRequestArgs { | ||
filter? : KalturaVodIngestAssetResultFilter; | ||
pager? : KalturaFilterPager; | ||
} | ||
|
||
/** | ||
* Build request payload for service 'ingestStatus' action 'getVodAssetResult'. | ||
* | ||
* Usage: List detailed results of ingested assets | ||
* | ||
* Server response type: KalturaVodIngestAssetResultResponse | ||
* Server failure response type: KalturaAPIException | ||
* @class | ||
* @extends KalturaRequest | ||
*/ | ||
export class IngestStatusGetVodAssetResultAction extends KalturaRequest<KalturaVodIngestAssetResultResponse> { | ||
|
||
filter : KalturaVodIngestAssetResultFilter; | ||
pager : KalturaFilterPager; | ||
|
||
constructor(data? : IngestStatusGetVodAssetResultActionArgs) | ||
{ | ||
super(data, {responseType : 'o', responseSubType : 'KalturaVodIngestAssetResultResponse', responseConstructor : KalturaVodIngestAssetResultResponse }); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
service : { type : 'c', default : 'ingeststatus' }, | ||
action : { type : 'c', default : 'getVodAssetResult' }, | ||
filter : { type : 'o', subTypeConstructor : KalturaVodIngestAssetResultFilter, subType : 'KalturaVodIngestAssetResultFilter' }, | ||
pager : { type : 'o', subTypeConstructor : KalturaFilterPager, subType : 'KalturaFilterPager' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
|
||
|
||
export enum KalturaAssetRuleOrderBy { | ||
none = 'NONE' | ||
nameAsc = 'NAME_ASC', | ||
nameDesc = 'NAME_DESC', | ||
none = 'NONE' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaTypesFactory } from '../kaltura-types-factory'; | ||
import { KalturaObjectBase, KalturaObjectBaseArgs } from '../kaltura-object-base'; | ||
|
||
export interface KalturaBasePreActionConditionArgs extends KalturaObjectBaseArgs { | ||
|
||
} | ||
|
||
|
||
export class KalturaBasePreActionCondition extends KalturaObjectBase { | ||
|
||
|
||
|
||
constructor(data? : KalturaBasePreActionConditionArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaBasePreActionCondition' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaBasePreActionCondition',KalturaBasePreActionCondition); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaTypesFactory } from '../kaltura-types-factory'; | ||
import { KalturaObjectBase, KalturaObjectBaseArgs } from '../kaltura-object-base'; | ||
|
||
export interface KalturaIngestStatusVodConfigurationArgs extends KalturaObjectBaseArgs { | ||
isSupported? : boolean; | ||
retainingPeriod? : number; | ||
} | ||
|
||
|
||
export class KalturaIngestStatusVodConfiguration extends KalturaObjectBase { | ||
|
||
isSupported : boolean; | ||
retainingPeriod : number; | ||
|
||
constructor(data? : KalturaIngestStatusVodConfigurationArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaIngestStatusVodConfiguration' }, | ||
isSupported : { type : 'b' }, | ||
retainingPeriod : { type : 'n' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaIngestStatusVodConfiguration',KalturaIngestStatusVodConfiguration); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaTypesFactory } from '../kaltura-types-factory'; | ||
import { KalturaFilter, KalturaFilterArgs } from './KalturaFilter'; | ||
|
||
export interface KalturaLineupRegionalChannelFilterArgs extends KalturaFilterArgs { | ||
regionIdEqual? : number; | ||
parentRegionIncluded? : boolean; | ||
kSql? : string; | ||
lcnGreaterThanOrEqual? : number; | ||
lcnLessThanOrEqual? : number; | ||
} | ||
|
||
|
||
export class KalturaLineupRegionalChannelFilter extends KalturaFilter { | ||
|
||
regionIdEqual : number; | ||
parentRegionIncluded : boolean; | ||
kSql : string; | ||
lcnGreaterThanOrEqual : number; | ||
lcnLessThanOrEqual : number; | ||
|
||
constructor(data? : KalturaLineupRegionalChannelFilterArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaLineupRegionalChannelFilter' }, | ||
regionIdEqual : { type : 'n' }, | ||
parentRegionIncluded : { type : 'b' }, | ||
kSql : { type : 's' }, | ||
lcnGreaterThanOrEqual : { type : 'n' }, | ||
lcnLessThanOrEqual : { type : 'n' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaLineupRegionalChannelFilter',KalturaLineupRegionalChannelFilter); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
|
||
export enum KalturaLineupRegionalChannelOrderBy { | ||
lcnAsc = 'LCN_ASC', | ||
lcnDesc = 'LCN_DESC', | ||
nameAsc = 'NAME_ASC', | ||
nameDesc = 'NAME_DESC' | ||
} |
Oops, something went wrong.