import * as $dara from '@darabonba/typescript'; export declare class CreateSourceLocationRequest extends $dara.Model { /** * @remarks * The protocol and hostname of the source location. * * This parameter is required. * * @example * http://xxx.com */ baseUrl?: string; /** * @remarks * Specifies whether to use an independent domain name to access the segments. * * @example * true */ enableSegmentDelivery?: boolean; /** * @remarks * The domain name used to access the segments. * * @example * http://xxxxx.com */ segmentDeliveryUrl?: string; /** * @remarks * The name of the source location. * * This parameter is required. * * @example * MySourcelocation */ sourceLocationName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }