import * as $dara from '@darabonba/typescript'; export declare class DescribeEnvCustomJobResponseBodyData extends $dara.Model { /** * @remarks * If the **encryptYaml** parameter is set to `true`, a Base64-encoded YAML string is returned. Otherwise, a plaintext YAML string is returned. * * @example * Refer to supplementary instructions. */ configYaml?: string; /** * @remarks * The name of the custom job. * * @example * customJob1 */ customJobName?: string; /** * @remarks * The ID of the environment instance. * * @example * env-xxxxx */ environmentId?: string; /** * @remarks * The region ID. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The status. Valid values: * * * run * * stop * * @example * run */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeEnvCustomJobResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. The status code 200 indicates that the request was successful. * * @example * 200 */ code?: number; /** * @remarks * The returned struct. */ data?: DescribeEnvCustomJobResponseBodyData; /** * @remarks * The returned message. * * @example * success */ message?: string; /** * @remarks * The request ID. * * @example * 6A9AEA84-7186-4D8D-B498-4585C6A2**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }