Я пытаюсь написать пользовательскую оболочку, используя функции без сервера и облачные функции Google.
const serverless = new Serverless({
interactive: false,
servicePath: "/Users/user/work/faas-artillery"
})
var options = {
function: 'my-function',
stage: 'my-stage',
region: 'my-region'
};
//console.log(options)
// Set the serverless artillery to use Google.
// This constructor then adds Google plugins to the serverless framework
var googleIndex = new GoogleIndex(serverless, options);
serverless.init();
// Now find the GoogleInvoke by constructor name within the serverless
const invoke = serverless.pluginManager.plugins.find(
plugin => Object.getPrototypeOf(plugin).constructor.name === 'GoogleInvoke'
)
serverless.run()
При выполнении вышеупомянутой команды я получаю команду invoke not found.Есть ли способ, которым я могу назначить параметры CLI для без сервера.