はじめに
この記事では、Cloud Functionsの関数の作成、デプロイのデモを行います。
関数の作成
- まずはGoogle Cloud Functionsのコンソールに移動し、「CREATE FUNCTION」ボタンをクリックします。
2.「Function name」に任意の関数名を入力し、「SAVE」ボタンをクリックします。
- 「NEXT」ボタンをクリックします。
- コードを記述します。今回はでデフォルトのままで「DEPLOY」ボタンをクリックします。
関数の実行
- 作成した関数を実行できるロールをアタッチします。
bash
$ gcloud alpha functions add-iam-policy-binding sample-func \
--region=us-central1 \
--member=allUsers \
--role=roles/cloudfunctions.invoker
- 作成した関数のトリガーURL取得します。
bash
$ gcloud functions describe demo-function --region us-central1 | grep url
- トリガーURLに対してPOSTリクエストを送信します。
bash
$ curl -X POST <トリガーURL> \
-H 'Content-Type:application/json' \
-d '{"message":"Hello World!"}'
これにより関数が実行され、レスポンスが返ってきます。
Hello World!
参考
AlloyDB
Amazon Cognito
Amazon EC2
Amazon ECS
Amazon QuickSight
Amazon RDS
Amazon Redshift
Amazon S3
API
Autonomous Vehicle
AWS
AWS API Gateway
AWS Chalice
AWS Control Tower
AWS IAM
AWS Lambda
AWS VPC
BERT
BigQuery
Causal Inference
ChatGPT
Chrome Extension
CircleCI
Classification
Cloud Functions
Cloud IAM
Cloud Run
Cloud Storage
Clustering
CSS
Data Engineering
Data Modeling
Database
dbt
Decision Tree
Deep Learning
Descriptive Statistics
Differential Equation
Dimensionality Reduction
Discrete Choice Model
Docker
Economics
FastAPI
Firebase
GIS
git
GitHub
GitHub Actions
Google
Google Cloud
Google Search Console
Hugging Face
Hypothesis Testing
Inferential Statistics
Interval Estimation
JavaScript
Jinja
Kedro
Kubernetes
LightGBM
Linux
LLM
Mac
Machine Learning
Macroeconomics
Marketing
Mathematical Model
Meltano
MLflow
MLOps
MySQL
NextJS
NLP
Nodejs
NoSQL
ONNX
OpenAI
Optimization Problem
Optuna
Pandas
Pinecone
PostGIS
PostgreSQL
Probability Distribution
Product
Project
Psychology
Python
PyTorch
QGIS
R
ReactJS
Regression
Rideshare
SEO
Singer
sklearn
Slack
Snowflake
Software Development
SQL
Statistical Model
Statistics
Streamlit
Tabular
Tailwind CSS
TensorFlow
Terraform
Transportation
TypeScript
Urban Planning
Vector Database
Vertex AI
VSCode
XGBoost