From 0de8b6a6a67bf8832c6b863fb139480bd3aa27a5 Mon Sep 17 00:00:00 2001 From: Sita Lakshmi Sangameswaran Date: Fri, 5 Aug 2022 04:38:25 +0530 Subject: [PATCH] docs(samples): update param values (#401) --- .../cloud-client/snippets/src/main/java/CreateDenyPolicy.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java-iam/samples/cloud-client/snippets/src/main/java/CreateDenyPolicy.java b/java-iam/samples/cloud-client/snippets/src/main/java/CreateDenyPolicy.java index a41b6fc1c30d..5cbc966e165f 100644 --- a/java-iam/samples/cloud-client/snippets/src/main/java/CreateDenyPolicy.java +++ b/java-iam/samples/cloud-client/snippets/src/main/java/CreateDenyPolicy.java @@ -36,10 +36,10 @@ public static void main(String[] args) throws IOException, ExecutionException, InterruptedException, TimeoutException { // TODO(developer): Replace these variables before running the sample. // ID or number of the Google Cloud project you want to use. - String projectId = "sitalakshmi-deny"; + String projectId = "your-google-cloud-project-id"; // Specify the id of the Deny policy you want to create. - String policyId = "deny-policy-id-1"; + String policyId = "deny-policy-id"; createDenyPolicy(projectId, policyId); }