@@ -25,19 +25,19 @@ Functions for your project.
2525
26261 . Deploy the "get" function with an HTTP trigger:
2727
28- gcloud beta functions deploy get --trigger-http
28+ gcloud functions deploy get --trigger-http
2929
30301 . Deploy the "set" function with an HTTP trigger:
3131
32- gcloud beta functions deploy set --trigger-http
32+ gcloud functions deploy set --trigger-http
3333
34341 . Deploy the "del" function with an HTTP trigger:
3535
36- gcloud beta functions deploy del --trigger-http
36+ gcloud functions deploy del --trigger-http
3737
38381 . Call the "set" function to create a new entity:
3939
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"}}'
4141
4242 or
4343
@@ -48,7 +48,7 @@ Functions for your project.
4848
49491 . Call the "get" function to read the newly created entity:
5050
51- gcloud beta functions call get --data '{"kind":"Task","key":"sampletask1"}'
51+ gcloud functions call get --data '{"kind":"Task","key":"sampletask1"}'
5252
5353 or
5454
@@ -70,7 +70,7 @@ Functions for your project.
7070
71711 . Call the "get" function again to verify it was deleted:
7272
73- gcloud beta functions call get --data '{"kind":"Task","key":"sampletask1"}'
73+ gcloud functions call get --data '{"kind":"Task","key":"sampletask1"}'
7474
7575 or
7676
0 commit comments