import * as $dara from '@darabonba/typescript'; import { LivePackagingConfig } from "./LivePackagingConfig"; export declare class UpdateLivePackageOriginEndpointResponseBodyLivePackageOriginEndpoint extends $dara.Model { /** * @remarks * The authorization code. * * @example * Abc123Def456 */ authorizationCode?: string; /** * @remarks * The channel name. * * @example * channel-1 */ channelName?: string; /** * @remarks * The time when the endpoint was created. * * @example * 2023-04-01T12:00:00Z */ createTime?: string; /** * @remarks * The endpoint description. */ description?: string; /** * @remarks * The endpoint name. * * @example * endpoint-1 */ endpointName?: string; /** * @remarks * The endpoint URL. * * @example * https://xxx.packagepull-abcxxx.ap-southeast-1.aliyuncsiceintl.com/v1/group01/1/ch01/manifest */ endpointUrl?: string; /** * @remarks * The channel group name. * * @example * channel-group-1 */ groupName?: string; /** * @remarks * The IP address blacklist. It supports subnet masks. Multiple IP addresses are separated by commas (,). * * @example * 10.21.222.1/32,192.168.100.0/24 */ ipBlacklist?: string; /** * @remarks * The IP address whitelist. It supports subnet masks. Multiple IP addresses are separated by commas (,). * * @example * 192.168.1.0/24,10.0.0.1/24 */ ipWhitelist?: string; /** * @remarks * The time when the endpoint was last modified. * * @example * 2023-04-01T12:00:00Z */ lastModified?: string; livePackagingConfig?: LivePackagingConfig; /** * @remarks * The playlist name. Default value: manifest. * * @example * manifest */ manifestName?: string; /** * @remarks * The protocol. Only HLS is supported. * * @example * HLS */ protocol?: string; /** * @remarks * The number of days that time-shifted content is available. Maximum value: 30. * * @example * 5 */ timeshiftVision?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class UpdateLivePackageOriginEndpointResponseBody extends $dara.Model { /** * @remarks * The information about the origin endpoint. */ livePackageOriginEndpoint?: UpdateLivePackageOriginEndpointResponseBodyLivePackageOriginEndpoint; /** * @remarks * The request ID. * * @example * b1f8d6c4-a123-4cd5-9e88-d0819e3bfa70 */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }