import * as $dara from '@darabonba/typescript'; export declare class GetRetcodeLogstoreResponseBodyDataRetcodeSLSConfig extends $dara.Model { /** * @remarks * The Log Service Logstore. * * @example * log-test-220431 */ logstore?: string; /** * @remarks * The Log Service project. * * @example * test-project */ project?: string; /** * @remarks * The ID of the region. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetRetcodeLogstoreResponseBodyData extends $dara.Model { /** * @remarks * The content of the log. * * @example * retcode app or task can not be found! */ message?: string; /** * @remarks * The information about Log Service. */ retcodeSLSConfig?: GetRetcodeLogstoreResponseBodyDataRetcodeSLSConfig; /** * @remarks * The status of the request. * * @example * true */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetRetcodeLogstoreResponseBody extends $dara.Model { /** * @remarks * The returned struct. */ data?: GetRetcodeLogstoreResponseBodyData; /** * @remarks * The ID of the request. * * @example * 1A9C645C-C83F-4C9D-8CCB-29BEC9E1**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }