UNPKG

@cloud-diagrams/gcp

Version:

Google Cloud Platform services for cloud-diagrams-ts

13 lines 545 B
import { GCPNode, type NodeMetadata } from '@cloud-diagrams/core'; export interface GKEOptions extends NodeMetadata { nodeCount?: number; machineType?: string; kubernetesVersion?: string; autopilot?: boolean; } export declare class KubernetesEngine extends GCPNode { constructor(label: string, options?: GKEOptions); static create(label: string, options?: GKEOptions): KubernetesEngine; } export declare const GKE: (label: string, options?: GKEOptions) => KubernetesEngine; //# sourceMappingURL=kubernetes-engine.d.ts.map