Deploy Function

https://cloud.google.com/functions/docs/create-deploy-gcloud#functions_quickstart_helloworld-python

gcloud functions deploy python-http-function \
--gen2 \
--runtime=python312 \
--region=us-central1 \
--source=. \
--entry-point=hello_get \
--trigger-http 

gcloud functions describe python-http-function --gen2 --region REGION --format="value(serviceConfig.uri)"

update URI with output:

    -H "Authorization: Bearer $(gcloud auth print-identity-token)" \
    -H "Content-Type: application/json" \
    -d '{}'

gcloud functions delete python-http-function --gen2 --region us-central1