/** * #orchestrator.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ export type SetDeploymentRequest = { installationId: string; /** A URL to a linked bundle to deploy. This is typically an S3 or GCS URL. */ linkedBundleUrl?: string | undefined; }; export type SetDeploymentResponse = { /** Clients can access the deployed application at this URL. */ url: string; }; export type DeleteDeploymentRequest = { installationId: string; }; export type DeleteDeploymentResponse = {}; //# sourceMappingURL=orchestrator.d.ts.map