import * as $dara from '@darabonba/typescript'; export declare class CreateKubernetesTriggerResponseBody extends $dara.Model { /** * @remarks * The trigger action. For example, `redeploy`: redeploy. * * @example * redeploy */ action?: string; /** * @remarks * The cluster ID. * * @example * c5cdf7e3938bc4f8eb0e44b21a80f**** */ clusterId?: string; /** * @remarks * The trigger ID. * * @example * 111 */ id?: string; /** * @remarks * The trigger project name. * * @example * default/test-app */ projectId?: string; /** * @remarks * The trigger type. * * Valid values: * * - `deployment`: a trigger for stateless applications. * * - `application`: a trigger for Application Center applications. * * @example * deployment */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }