UNPKG

@veecode-platform/safira-cli

Version:

Generate a microservice project from your spec.

20 lines (19 loc) 533 B
import { KongMode } from "./kong-mode"; import { KongPlaneEnum } from "./kong-plane-enum"; export declare class KongDeployImpl implements KongDeploy { deploy(options: KongDeployOptions): Promise<void>; } export interface KongDeploy { deploy(options: KongDeployOptions): void; } export interface KongDeployOptions { domain: string; secure: boolean; mode: KongMode; license: string; HA: boolean; rbacPassword: string; kongPlane: KongPlaneEnum; kongTelemetryUrl: string; kongCpUrl: string; }