System.out.println("command `disable' is only available with Resin Pro");
return;
}
ResinScalingClient scalingClient = getScalingClient(args, client);
String server = args.getDefaultArg();
if (server == null)
throw new ConfigException("server is not specified");
CloudServerState state = scalingClient.disable(server);
scalingClient.close();
String message;
if (state == null)
message = L.l("server `{0}' is not found", server);
else