import * as $dara from '@darabonba/typescript'; export declare class DescribeTriggerResponseBody extends $dara.Model { /** * @remarks * 触发器ID。 * * @example * 75973497486****** */ id?: string; /** * @remarks * 触发器名称。 * * @example * test */ name?: string; /** * @remarks * 集群ID。 * * @example * c259f563386444ebb8d7**** */ clusterId?: string; /** * @remarks * 触发器项目名称。 * * 由应用所在命名空间及应用名称组成,格式为`${namespace}/${name}`,取值示例:default/test-app。 * * @example * default/test-app */ projectId?: string; /** * @remarks * 触发器类型。 * * 取值: * * - `deployment`:针对无状态应用的触发器。 * * - `application`:针对应用中心应用的触发器。 * * @example * deployment */ type?: string; /** * @remarks * 触发器行为,取值: * * `redeploy`: 重新部署应用。 * * @example * redeploy */ action?: string; /** * @remarks * Token信息。 * * @example * eyJhbGci*** */ token?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeTriggerResponse extends $dara.Model { headers?: { [key: string]: string; }; statusCode?: number; body?: DescribeTriggerResponseBody[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }