import * as $dara from '@darabonba/typescript'; export declare class DescribeEnvCustomJobRequest extends $dara.Model { /** * @remarks * The name of the custom job. * * This parameter is required. * * @example * customJob1 */ customJobName?: string; /** * @remarks * Specifies whether to return an encrypted YAML string. * * @example * true */ encryptYaml?: boolean; /** * @remarks * The ID of the environment instance. * * This parameter is required. * * @example * env-xxxxxx */ environmentId?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }