@pulumi/mysql
Advanced tools
Comparing version 0.18.1-dev.1557530370 to 0.18.1-dev.1557880887
@@ -1,4 +0,4 @@ | ||
export declare let endpoint: string; | ||
export declare let endpoint: string | undefined; | ||
export declare let password: string | undefined; | ||
export declare let tls: string | undefined; | ||
export declare let username: string; | ||
export declare let username: string | undefined; |
@@ -7,6 +7,6 @@ "use strict"; | ||
let __config = new pulumi.Config("mysql"); | ||
exports.endpoint = __config.require("endpoint"); | ||
exports.endpoint = __config.get("endpoint"); | ||
exports.password = __config.get("password"); | ||
exports.tls = __config.get("tls"); | ||
exports.username = __config.require("username"); | ||
exports.username = __config.get("username"); | ||
//# sourceMappingURL=vars.js.map |
{ | ||
"name": "@pulumi/mysql", | ||
"version": "v0.18.1-dev.1557530370+g8f9390d", | ||
"version": "v0.18.1-dev.1557880887+ge42021d", | ||
"description": "A Pulumi package for creating and managing mysql cloud resources.", | ||
@@ -14,3 +14,3 @@ "keywords": [ | ||
"build": "tsc", | ||
"install": "node scripts/install-pulumi-plugin.js resource mysql v0.18.1-dev.1557530370+g8f9390d" | ||
"install": "node scripts/install-pulumi-plugin.js resource mysql v0.18.1-dev.1557880887+ge42021d" | ||
}, | ||
@@ -17,0 +17,0 @@ "dependencies": { |
export declare function getEnv(...vars: string[]): string | undefined; | ||
export declare function getEnvBoolean(...vars: string[]): boolean | undefined; | ||
export declare function getEnvNumber(...vars: string[]): number | undefined; | ||
export declare function requireWithDefault<T>(req: () => T, def: T | undefined): T; | ||
export declare function getVersion(): string; |
@@ -41,14 +41,2 @@ "use strict"; | ||
exports.getEnvNumber = getEnvNumber; | ||
function requireWithDefault(req, def) { | ||
try { | ||
return req(); | ||
} | ||
catch (err) { | ||
if (def === undefined) { | ||
throw err; | ||
} | ||
} | ||
return def; | ||
} | ||
exports.requireWithDefault = requireWithDefault; | ||
function getVersion() { | ||
@@ -55,0 +43,0 @@ let version = require('./package.json').version; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Install scripts
Supply chain riskInstall scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
Install scripts
Supply chain riskInstall scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
111597
1171