import * as $dara from '@darabonba/typescript'; export declare class UpdateEnvCustomJobRequest extends $dara.Model { /** * @remarks * The language. Valid values: zh and en. Default value: zh. * * @example * zh */ aliyunLang?: string; /** * @remarks * The YAML configuration string. * * @example * Refer to supplementary instructions. */ configYaml?: string; /** * @remarks * The name of the custom job. * * This parameter is required. * * @example * customJob1 */ customJobName?: string; /** * @remarks * The environment ID. * * This parameter is required. * * @example * env-xxxxx */ environmentId?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The status of the custom job. Valid values: run and stop. * * @example * run */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }