-
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/1015, branch BE…
…O-13063_add_recording_2
- Loading branch information
Backend CI
committed
Dec 22, 2022
1 parent
fed1ee2
commit a8d49ed
Showing
37 changed files
with
761 additions
and
54 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,65 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaAssetListResponse } from './KalturaAssetListResponse'; | ||
|
||
import { KalturaAssetGroupBy } from './KalturaAssetGroupBy'; | ||
import { KalturaUnmatchedItemsPolicy } from './KalturaUnmatchedItemsPolicy'; | ||
import { KalturaBaseAssetOrder } from './KalturaBaseAssetOrder'; | ||
import { KalturaListGroupsRepresentativesFilter } from './KalturaListGroupsRepresentativesFilter'; | ||
import { KalturaRepresentativeSelectionPolicy } from './KalturaRepresentativeSelectionPolicy'; | ||
import { KalturaFilterPager } from './KalturaFilterPager'; | ||
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; | ||
|
||
export interface AssetGroupRepresentativeListActionArgs extends KalturaRequestArgs { | ||
groupBy : KalturaAssetGroupBy; | ||
unmatchedItemsPolicy : KalturaUnmatchedItemsPolicy; | ||
orderBy? : KalturaBaseAssetOrder; | ||
filter? : KalturaListGroupsRepresentativesFilter; | ||
selectionPolicy? : KalturaRepresentativeSelectionPolicy; | ||
pager? : KalturaFilterPager; | ||
} | ||
|
||
/** | ||
* Build request payload for service 'asset' action 'groupRepresentativeList'. | ||
* | ||
* Usage: Returns assets deduplicated by asset metadata (or supported asset's property) | ||
* | ||
* Server response type: KalturaAssetListResponse | ||
* Server failure response type: KalturaAPIException | ||
* @class | ||
* @extends KalturaRequest | ||
*/ | ||
export class AssetGroupRepresentativeListAction extends KalturaRequest<KalturaAssetListResponse> { | ||
|
||
groupBy : KalturaAssetGroupBy; | ||
unmatchedItemsPolicy : KalturaUnmatchedItemsPolicy; | ||
orderBy : KalturaBaseAssetOrder; | ||
filter : KalturaListGroupsRepresentativesFilter; | ||
selectionPolicy : KalturaRepresentativeSelectionPolicy; | ||
pager : KalturaFilterPager; | ||
|
||
constructor(data : AssetGroupRepresentativeListActionArgs) | ||
{ | ||
super(data, {responseType : 'o', responseSubType : 'KalturaAssetListResponse', responseConstructor : KalturaAssetListResponse }); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
service : { type : 'c', default : 'asset' }, | ||
action : { type : 'c', default : 'groupRepresentativeList' }, | ||
groupBy : { type : 'o', subTypeConstructor : KalturaAssetGroupBy, subType : 'KalturaAssetGroupBy' }, | ||
unmatchedItemsPolicy : { type : 'es', subTypeConstructor : KalturaUnmatchedItemsPolicy, subType : 'KalturaUnmatchedItemsPolicy' }, | ||
orderBy : { type : 'o', subTypeConstructor : KalturaBaseAssetOrder, subType : 'KalturaBaseAssetOrder' }, | ||
filter : { type : 'o', subTypeConstructor : KalturaListGroupsRepresentativesFilter, subType : 'KalturaListGroupsRepresentativesFilter' }, | ||
selectionPolicy : { type : 'o', subTypeConstructor : KalturaRepresentativeSelectionPolicy, subType : 'KalturaRepresentativeSelectionPolicy' }, | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaBulkUploadStatistics } from './KalturaBulkUploadStatistics'; | ||
|
||
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; | ||
|
||
export interface BulkUploadStatisticsGetActionArgs extends KalturaRequestArgs { | ||
bulkObjectTypeEqual : string; | ||
createDateGreaterThanOrEqual : number; | ||
} | ||
|
||
/** | ||
* Build request payload for service 'bulkUploadStatistics' action 'get'. | ||
* | ||
* Usage: Get BulkUploadStatistics count summary by status | ||
* | ||
* Server response type: KalturaBulkUploadStatistics | ||
* Server failure response type: KalturaAPIException | ||
* @class | ||
* @extends KalturaRequest | ||
*/ | ||
export class BulkUploadStatisticsGetAction extends KalturaRequest<KalturaBulkUploadStatistics> { | ||
|
||
bulkObjectTypeEqual : string; | ||
createDateGreaterThanOrEqual : number; | ||
|
||
constructor(data : BulkUploadStatisticsGetActionArgs) | ||
{ | ||
super(data, {responseType : 'o', responseSubType : 'KalturaBulkUploadStatistics', responseConstructor : KalturaBulkUploadStatistics }); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
service : { type : 'c', default : 'bulkuploadstatistics' }, | ||
action : { type : 'c', default : 'get' }, | ||
bulkObjectTypeEqual : { type : 's' }, | ||
createDateGreaterThanOrEqual : { type : 'n' } | ||
} | ||
); | ||
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
|
||
export enum KalturaBooleanOperator { | ||
and = 'And', | ||
or = 'Or' | ||
} |
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,61 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaTypesFactory } from '../kaltura-types-factory'; | ||
import { KalturaObjectBase, KalturaObjectBaseArgs } from '../kaltura-object-base'; | ||
|
||
export interface KalturaBulkUploadStatisticsArgs extends KalturaObjectBaseArgs { | ||
pending? : number; | ||
uploaded? : number; | ||
queued? : number; | ||
parsing? : number; | ||
processing? : number; | ||
processed? : number; | ||
success? : number; | ||
partial? : number; | ||
failed? : number; | ||
fatal? : number; | ||
} | ||
|
||
|
||
export class KalturaBulkUploadStatistics extends KalturaObjectBase { | ||
|
||
pending : number; | ||
uploaded : number; | ||
queued : number; | ||
parsing : number; | ||
processing : number; | ||
processed : number; | ||
success : number; | ||
partial : number; | ||
failed : number; | ||
fatal : number; | ||
|
||
constructor(data? : KalturaBulkUploadStatisticsArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaBulkUploadStatistics' }, | ||
pending : { type : 'n' }, | ||
uploaded : { type : 'n' }, | ||
queued : { type : 'n' }, | ||
parsing : { type : 'n' }, | ||
processing : { type : 'n' }, | ||
processed : { type : 'n' }, | ||
success : { type : 'n' }, | ||
partial : { type : 'n' }, | ||
failed : { type : 'n' }, | ||
fatal : { type : 'n' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaBulkUploadStatistics',KalturaBulkUploadStatistics); |
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,34 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaTypesFactory } from '../kaltura-types-factory'; | ||
import { KalturaCampaignSearchFilter, KalturaCampaignSearchFilterArgs } from './KalturaCampaignSearchFilter'; | ||
|
||
export interface KalturaCampaignSegmentFilterArgs extends KalturaCampaignSearchFilterArgs { | ||
segmentIdEqual? : number; | ||
} | ||
|
||
|
||
export class KalturaCampaignSegmentFilter extends KalturaCampaignSearchFilter { | ||
|
||
segmentIdEqual : number; | ||
|
||
constructor(data? : KalturaCampaignSegmentFilterArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaCampaignSegmentFilter' }, | ||
segmentIdEqual : { type : 'n' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaCampaignSegmentFilter',KalturaCampaignSegmentFilter); |
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 was deleted.
Oops, something went wrong.
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,38 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaTypesFactory } from '../kaltura-types-factory'; | ||
import { KalturaRecording, KalturaRecordingArgs } from './KalturaRecording'; | ||
|
||
export interface KalturaImmediateRecordingArgs extends KalturaRecordingArgs { | ||
|
||
} | ||
|
||
|
||
export class KalturaImmediateRecording extends KalturaRecording { | ||
|
||
readonly endPadding : number; | ||
readonly absoluteStart : number; | ||
readonly absoluteEnd : number; | ||
|
||
constructor(data? : KalturaImmediateRecordingArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaImmediateRecording' }, | ||
endPadding : { type : 'n', readOnly : true }, | ||
absoluteStart : { type : 'n', readOnly : true }, | ||
absoluteEnd : { type : 'n', readOnly : true } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaImmediateRecording',KalturaImmediateRecording); |
Oops, something went wrong.