export type ApplicationDeployment = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; applicationVersionId: string; action: ApplicationDeployment.action; eventBrokerId: string; id?: string; type?: string; }; export declare namespace ApplicationDeployment { enum action { DEPLOY = "deploy", UNDEPLOY = "undeploy" } }