Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
azure-mgmt-sql
Advanced tools
This project provides a Node.js package that makes it easy to manage Windows Azure SQL Database. Right now it supports:
npm install azure-mgmt-sql
This library support management certificate authentication. To authenticate the library for the REST API calls, you need to
azure account cert export
to get the .pem file.var fs = require('fs'),
sqlManagement = require('azure-mgmt-sql');
var sqlManagementClient = sqlManagement.createSqlManagementClient(sqlManagement.createCertificateCloudCredentials({
subscriptionId: '<your subscription id>',
pem: fs.readFileSync('<your pem file>')
}));
var sqlDatabaseName = "database01";
// Create a SQL database server.
sqlManagementClient.servers.create({
administratorUserName: "<your admin user name>",
administratorPassword: "<your admin password>",
location: "West US"
}, function (err, result) {
if (err) {
console.error(err);
} else {
sqlServerName = result.serverName;
console.info(result);
// Create a SQL database.
sqlManagementClient.databases.create(result.serverName, {
name: sqlDatabaseName,
edition: common.Constants.SqlAzureConstants.WEB_EDITION,
collationName: common.Constants.SqlAzureConstants.DEFAULT_COLLATION_NAME,
maximumDatabaseSizeInGB: common.Constants.SqlAzureConstants.WEB_1GB
}, function (err, result) {
if (err) {
console.error(err);
} else {
console.info(result);
}
});
}
});
FAQs
Microsoft Azure SQL Management Client Library for node
The npm package azure-mgmt-sql receives a total of 5,398 weekly downloads. As such, azure-mgmt-sql popularity was classified as popular.
We found that azure-mgmt-sql demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.