Pipeline/frontend/src/api/generated/model/gatewayCreate.ts

19 lines
364 B
TypeScript
Raw Normal View History

/**
* Generated by orval v8.3.0 🍺
* Do not edit manually.
* Mission Control API
* OpenAPI spec version: 0.1.0
*/
/**
* Payload for creating a gateway configuration.
*/
export interface GatewayCreate {
name: string;
url: string;
workspace_root: string;
allow_insecure_tls?: boolean;
disable_device_pairing?: boolean;
token?: string | null;
}