@@ -25,19 +25,19 @@ Functions for your project.
25
25
26
26
1 . Deploy the "get" function with an HTTP trigger:
27
27
28
- gcloud beta functions deploy get --trigger-http
28
+ gcloud functions deploy get --trigger-http
29
29
30
30
1 . Deploy the "set" function with an HTTP trigger:
31
31
32
- gcloud beta functions deploy set --trigger-http
32
+ gcloud functions deploy set --trigger-http
33
33
34
34
1 . Deploy the "del" function with an HTTP trigger:
35
35
36
- gcloud beta functions deploy del --trigger-http
36
+ gcloud functions deploy del --trigger-http
37
37
38
38
1 . Call the "set" function to create a new entity:
39
39
40
- gcloud beta functions call set --data '{"kind":"Task","key":"sampletask1","value":{"description":"Buy milk"}}'
40
+ gcloud functions call set --data '{"kind":"Task","key":"sampletask1","value":{"description":"Buy milk"}}'
41
41
42
42
or
43
43
@@ -48,7 +48,7 @@ Functions for your project.
48
48
49
49
1 . Call the "get" function to read the newly created entity:
50
50
51
- gcloud beta functions call get --data '{"kind":"Task","key":"sampletask1"}'
51
+ gcloud functions call get --data '{"kind":"Task","key":"sampletask1"}'
52
52
53
53
or
54
54
@@ -70,7 +70,7 @@ Functions for your project.
70
70
71
71
1 . Call the "get" function again to verify it was deleted:
72
72
73
- gcloud beta functions call get --data '{"kind":"Task","key":"sampletask1"}'
73
+ gcloud functions call get --data '{"kind":"Task","key":"sampletask1"}'
74
74
75
75
or
76
76
0 commit comments