import * as $dara from '@darabonba/typescript'; export declare class GetMediaConnectAvailableRegionResponseBodyContent extends $dara.Model { /** * @remarks * The default region. You can ignore the parameter. * * @example * cn-shanghai */ defaultRegion?: string; /** * @remarks * The supported regions. */ regionList?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetMediaConnectAvailableRegionResponseBody extends $dara.Model { /** * @remarks * The rsponse body. */ content?: GetMediaConnectAvailableRegionResponseBodyContent; /** * @remarks * The call description. * * @example * OK */ description?: string; /** * @remarks * The ID of the request. * * @example * 41CB9D4C-4650-5723-BA89-D6824F706ACB */ requestId?: string; /** * @remarks * The returned error code. A value of 0 indicates the call is successful. * * @example * 0 */ retCode?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }