UNPKG

@cloud-diagrams/gcp

Version:

Google Cloud Platform services for cloud-diagrams-ts

13 lines 537 B
import { GCPNode, type NodeMetadata } from '@cloud-diagrams/core'; export interface ComputeOptions extends NodeMetadata { machineType?: string; zone?: string; diskSize?: string; preemptible?: boolean; } export declare class ComputeEngine extends GCPNode { constructor(label: string, options?: ComputeOptions); static create(label: string, options?: ComputeOptions): ComputeEngine; } export declare const GCE: (label: string, options?: ComputeOptions) => ComputeEngine; //# sourceMappingURL=compute-engine.d.ts.map