@cloud-diagrams/azure
Version:
Azure services for cloud-diagrams-ts
13 lines • 536 B
TypeScript
import { AzureNode, type NodeMetadata } from '@cloud-diagrams/core';
export interface SQLOptions extends NodeMetadata {
tier?: 'basic' | 'standard' | 'premium';
size?: string;
backup?: boolean;
encryption?: boolean;
}
export declare class SQLDatabase extends AzureNode {
constructor(label: string, options?: SQLOptions);
static create(label: string, options?: SQLOptions): SQLDatabase;
}
export declare const SqlDB: (label: string, options?: SQLOptions) => SQLDatabase;
//# sourceMappingURL=sql-database.d.ts.map