bulky-businessperson-73745
11/04/2019, 5:18 PMHttpCallbackFunction
is meant to serve as an abstraction over the regular gcp.cloudfunctions.Function
resource. Am I correct in assuming that only the latter allows for customization of the node runtime, available memory, etc.?tall-librarian-49374
11/04/2019, 7:18 PMavailableMemoryMb
. The runtime is fixed to node js because that's what you write your callback for.bulky-businessperson-73745
11/04/2019, 10:32 PMHttpCallbackFunction
, just regular function. by runtime i mean node 10 vs 8tall-librarian-49374
11/04/2019, 10:37 PMnew gcp.cloudfunctions.HttpCallbackFunction("f", {
availableMemoryMb: 128,
callback: work,
});
bulky-businessperson-73745
11/05/2019, 5:51 PM