@@ -31,19 +31,19 @@ Functions for your project.
31
31
32
32
1 . Deploy the "get" function with an HTTP trigger:
33
33
34
- gcloud alpha functions deploy get --stage-bucket YOUR_BUCKET_NAME --trigger-http
34
+ gcloud beta functions deploy get --stage-bucket YOUR_BUCKET_NAME --trigger-http
35
35
36
36
1 . Deploy the "set" function with an HTTP trigger:
37
37
38
- gcloud alpha functions deploy set --stage-bucket YOUR_BUCKET_NAME --trigger-http
38
+ gcloud beta functions deploy set --stage-bucket YOUR_BUCKET_NAME --trigger-http
39
39
40
40
1 . Deploy the "del" function with an HTTP trigger:
41
41
42
- gcloud alpha functions deploy del --stage-bucket YOUR_BUCKET_NAME --trigger-http
42
+ gcloud beta functions deploy del --stage-bucket YOUR_BUCKET_NAME --trigger-http
43
43
44
44
1 . Call the "set" function to create a new entity:
45
45
46
- gcloud alpha functions call set --data '{"kind":"Task","key":"sampletask1","value":{"description":"Buy milk"}}'
46
+ gcloud beta functions call set --data '{"kind":"Task","key":"sampletask1","value":{"description":"Buy milk"}}'
47
47
48
48
or
49
49
@@ -54,7 +54,7 @@ Functions for your project.
54
54
55
55
1 . Call the "get" function to read the newly created entity:
56
56
57
- gcloud alpha functions call get --data '{"kind":"Task","key":"sampletask1"}'
57
+ gcloud beta functions call get --data '{"kind":"Task","key":"sampletask1"}'
58
58
59
59
or
60
60
@@ -76,7 +76,7 @@ Functions for your project.
76
76
77
77
1 . Call the "get" function again to verify it was deleted:
78
78
79
- gcloud alpha functions call get --data '{"kind":"Task","key":"sampletask1"}'
79
+ gcloud beta functions call get --data '{"kind":"Task","key":"sampletask1"}'
80
80
81
81
or
82
82
0 commit comments