Cloud function
Introduction
Google Cloud Functions is a serverless execution environment for building and connecting cloud services.
With Cloud Functions you write simple, single-purpose functions that are attached to events emitted from your cloud infrastructure and services. Your function is triggered when an event being watched is fired. Your code executes in a fully managed environment.
Cloud Functions are written in Javascript and execute in a managed Node.js environment on Google Cloud Platform. Events from Cloud Storage and Cloud Pub/Sub can trigger Cloud Functions asynchronously, or you can use HTTP invocation for synchronous execution.
Cloud function can be triggered by pub/sub , bucket changes , firestore document changes and http call
Operation
Created function and deploy
Last updated
Was this helpful?