sleeveforarm
Version:
Making Azure Easy
13 lines (12 loc) • 565 B
TypeScript
import ResourceNotResourceGroup from "./resourceNotResourceGroup";
export default class MySqlAzure extends ResourceNotResourceGroup {
protected pathToMySqlInitializationScripts: string[];
/**
* Points to a text file that contains mySQL commands that
* can be passed to the mySQL client. These commands will
* be passed to the mySQL instance during deployment.
* @param scriptPath Either a path relative to the current
* directory or an absolute path
*/
addMySqlInitializationScript(scriptPath: string): this;
}