import * as $dara from '@darabonba/typescript'; export declare class DescribeTriggerRequest extends $dara.Model { /** * @remarks * The application name. * * This parameter is required. * * @example * web-server */ name?: string; /** * @remarks * The namespace to which the application belongs. * * This parameter is required. * * @example * default */ namespace?: string; /** * @remarks * The trigger type. Valid values: * * - `deployment`: a trigger for a stateless application. * * - `application`: a trigger for an application in Open Applications. * * Default value: `deployment`. * * If you do not specify a trigger type, the query results are not filtered by trigger type. * * @example * deployment */ type?: string; /** * @remarks * The trigger action. Valid values: * * `redeploy`: redeploys the application. * * If you do not specify a trigger action, the query results are not filtered by trigger action. * * @example * redeploy */ action?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }