gsutil mb -p [PROJECT_ID] gs://[BUCKET_NAME]
gcloud functions deploy helloWorld
--stage-bucket [BUCKET_NAME]
--trigger-topic hello_world
--runtime nodejs8
DATA=$(printf 'Hello World!'|base64) && gcloud functions call helloWorld --data '{"data":"'$DATA'"}'
gcloud functions logs read helloWorld