import * as $dara from '@darabonba/typescript'; export declare class ChannelAssemblySource extends $dara.Model { /** * @remarks * The ARN of the source. * * @example * acs:ims:mediaweaver:::vodSource/mySourceLocation/mySource */ arn?: string; /** * @remarks * The time when the source was created. * * @example * 2022-10-20T07:15:51Z */ gmtCreate?: string; /** * @remarks * The time when the source was last modified. * * @example * 2024-11-07T10:12:01Z */ gmtModified?: string; /** * @remarks * The source configuration. * * @example * [{ * "sourceGroupName": "mySourceGroup-1", * "relativePath": "group1/hls.m3u8", * "packageType": "hls" * }] */ httpPackageConfigurations?: string; /** * @remarks * The name of the source location. * * @example * MySourceLocation */ sourceLocationName?: string; /** * @remarks * The name of the source. * * @example * MyVodSource */ sourceName?: string; /** * @remarks * The source type. Valid values: vodSource and liveSource. * * @example * vodSource */ sourceType?: string; /** * @remarks * The status of the source. 0: normal. 1: deleted. * * @example * 0 */ state?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }