UNPKG

@cloud-diagrams/gcp

Version:

Google Cloud Platform services for cloud-diagrams-ts

12 lines 457 B
import { GCPNode, type NodeMetadata } from '@cloud-diagrams/core'; export interface CloudSQLOptions extends NodeMetadata { engine?: 'mysql' | 'postgresql' | 'sqlserver'; tier?: string; region?: string; backup?: boolean; } export declare class CloudSQL extends GCPNode { constructor(label: string, options?: CloudSQLOptions); static create(label: string, options?: CloudSQLOptions): CloudSQL; } //# sourceMappingURL=cloud-sql.d.ts.map