From 9561b975fe790575633f39d3f1180894c6e8275e Mon Sep 17 00:00:00 2001 From: gurusai-voleti Date: Fri, 9 Jan 2026 07:54:50 +0000 Subject: [PATCH 1/2] chore: Migrate gsutil usage to gcloud storage --- auth/AuthSample/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auth/AuthSample/README.md b/auth/AuthSample/README.md index 80dccc5bddc..db405484131 100644 --- a/auth/AuthSample/README.md +++ b/auth/AuthSample/README.md @@ -31,8 +31,8 @@ can use [this older sample]( At a Powershell prompt, type: ```ps1 - PS > gsutil mb gs:// - PS > gsutil defacl set public-read gs:// + PS > gcloud storage buckets create gs:// + PS > gcloud storage buckets update --predefined-default-object-acl=public-read gs:// ``` 6. ```ps1 From ad7dfc857681a8306482d1673d28e9dde4c0af53 Mon Sep 17 00:00:00 2001 From: gurusai-voleti Date: Fri, 9 Jan 2026 14:30:18 +0530 Subject: [PATCH 2/2] Update README.md --- auth/AuthSample/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/AuthSample/README.md b/auth/AuthSample/README.md index db405484131..dbd01c90dfc 100644 --- a/auth/AuthSample/README.md +++ b/auth/AuthSample/README.md @@ -32,7 +32,7 @@ can use [this older sample]( ```ps1 PS > gcloud storage buckets create gs:// - PS > gcloud storage buckets update --predefined-default-object-acl=public-read gs:// + PS > gcloud storage buckets update --predefined-default-object-acl=publicRead gs:// ``` 6. ```ps1