import * as sql from '@pulumi/azure-native/sql'; import { BasicResourceArgs, WithLockable, ResourceInfoWithInstance } from '../types'; import { Input, Output } from '@pulumi/pulumi'; export type SqlDbSku = 'Basic' | 'S0' | 'S1' | 'S2' | 'S3' | 'P1' | 'P2' | 'P4' | 'P6' | 'P11'; export interface SqlDbProps extends BasicResourceArgs, WithLockable { sqlServerName: Input; elasticPoolId?: Output; /** Provide this if elasticPoolId is not provided. Default is S0 */ copyFrom?: Input; asSecondaryFrom?: Input; sku?: SqlDbSku; } declare const _default: ({ group, name, sqlServerName, elasticPoolId, copyFrom, asSecondaryFrom, sku, dependsOn, importUri, ignoreChanges, lock, }: SqlDbProps) => ResourceInfoWithInstance; export default _default;