#Running Functions Simple hello world target for function code.
reference:
mvn function:run -Drun.functionTarget=functions.HelloWorld
export REGION=us-east2
gcloud functions deploy hello-java-function \ --gen2 \ --entry-point=functions.HelloWorld \ --runtime=java17 \ --region=$REGION \ --source=. \ --trigger-http \ --allow-unauthenticated