Cloud Functions - Definition
Serverless computing platform designed to run single-purpose pieces of code in response to events in GCP environments (PaaS)
How are Cloud Functions managed? (3 key points)
How long can a Cloud Function run?
default timeout is 1 min, but can be configured up to 9 min
What languages do Cloud Functions support?
Node.js 8
Node.js 10
Python 3.7
Go 1.1
Cloud Functions - key points (3)
How do cloud functions work?
Events have triggers which executes a function in response to the event.
Examples of Cloud Function events (5)
Cloud Function functions - key points (3)
Cloud Functions use case examples (4)
What needs to be filled in when creating a cloud function via the cloud console?
Create cloud function via shell - main command
gcloud functions deploy [NAME]
Cloud function shell parameters (3)
- -trigger-event
Command to delete a cloud function via shell?
gcloud functions delete [NAME]