Google Cloud Functions can create function based API endpoints.
To create HTTP endpoints as event sources for your Google Cloud Functions, use the http
event syntax.
It might be helpful to read the Google Cloud Functions HTTP docs to learn the full functionality.
This setup specifies that the first
function should be run when someone accesses the Functions API endpoint. You can get the URL for the endpoint by running the serverless info
command after deploying your service.
Here's an example:
# serverless.yml
functions:
first:
handler: http
events:
- http: foo # the value of this key is ignored. It is the presence of the http key that matters to serverless.
// index.js
exports.first = (request, response) => {
response.status(200).send('Hello World!');
};
The configuration for Google Cloud Functions is a bit different than some other providers:
https://YOUR_URL/http
. As a result, you cannot configure nested routes such as http/hello
in your serverless.yml
file. Instead, Google passes all URLs that appear to be subdirectories of your URL to your handler function so that you can determine the appropriate behavior. The complete path is still available as req.path
and can be parsed to provide nested routes, path/URL parameters, and more.Note: See the documentation about the function handlers to learn how your handler signature should look like to work with this type of event.
Product