Functions - 14paxton/GoogleNotes GitHub Wiki
title: Functions permalink: GoogleNotes/Functions category: GoogleNotes parent: GoogleNotes layout: default has_children: false share: true shortRepo:
- googlenotes
- default
Table of contents
{: .text-delta } 1. TOC {:toc}gcloud services enable \
cloudfunctions \
cloudbuild.googleapis.com \
chat.googleapis.comwhere my-first-function is the registered name by which your function will be identified in the Google Cloud console, and --entry-point specifies your function's fully qualified class name (FQN).
gcloud functions deploy my-first-function --entry-point HelloWorld.Function --runtime dotnet6 --trigger-http --allow-unauthenticatedgcloud functions describe my-first-functiongcloud functions logs read my-first-function