New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

sacloud

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sacloud - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

15

lib/sacloud/command.requests.js

@@ -335,4 +335,13 @@ /**

args.forEach(function(arg, i) {
if (arg === 'hostname') r.HostName = args[i + 1];
if (arg === 'publickey') r.SSHKey = { PublicKey: args[i + 1] };
if (arg === 'hostname') r.HostName = args[i + 1];
if (arg === 'publickey') r.SSHKey = { PublicKey: args[i + 1] };
if (arg === 'ipaddress') r.UserIPAddress = args[i + 1];
if (arg === 'ipv4') r.UserIPAddress = args[i + 1];
if (arg === 'prefix' || arg === 'gw' || arg === 'gateway') {
if (!r.UserSubnet) r.UserSubnet = {};
if (arg === 'prefix') r.UserSubnet.NetworkMaskLen = args[i + 1];
if (arg === 'gw') r.UserSubnet.DefaultRoute = args[i + 1];
if (arg === 'gateway') r.UserSubnet.DefaultRoute = args[i + 1];
}
});

@@ -343,3 +352,3 @@

path : [resource, args[0], 'config'].join('/'),
body : { Disk: r }
body : r
});

@@ -346,0 +355,0 @@

2

package.json
{
"name": "sacloud",
"version": "0.0.5",
"version": "0.0.6",
"description": "A Node.js Module and CLI for SAKURA Internet Cloud APIs.",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc