From 8141c5229bc4d7e8f427a0b606b6fe4272812649 Mon Sep 17 00:00:00 2001 From: neozwu Date: Fri, 1 Jun 2018 10:55:00 -0700 Subject: [PATCH] fix example links (#3328) --- .../google-cloud-resourcemanager/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/java-resourcemanager/google-cloud-resourcemanager/README.md b/java-resourcemanager/google-cloud-resourcemanager/README.md index 09283fd079d6..ec2ea005d91b 100644 --- a/java-resourcemanager/google-cloud-resourcemanager/README.md +++ b/java-resourcemanager/google-cloud-resourcemanager/README.md @@ -39,7 +39,7 @@ libraryDependencies += "com.google.cloud" % "google-cloud-resourcemanager" % "0. Example Application -------------------- -[`ResourceManagerExample`](../google-cloud-examples/src/main/java/com/google/cloud/examples/resourcemanager/ResourceManagerExample.java) is a simple command line interface for the Cloud Resource Manager. Read more about using the application on the [`ResourceManagerExample` docs page](https://googlecloudplatform.github.io/google-cloud-java/apidocs/?com/google/cloud/examples/resourcemanager/ResourceManagerExample.html). +[`ResourceManagerExample`](../../google-cloud-examples/src/main/java/com/google/cloud/examples/resourcemanager/ResourceManagerExample.java) is a simple command line interface for the Cloud Resource Manager. Read more about using the application on the [`ResourceManagerExample` docs page](https://googlecloudplatform.github.io/google-cloud-java/apidocs/?com/google/cloud/examples/resourcemanager/ResourceManagerExample.html). Authentication -------------- @@ -203,15 +203,15 @@ We put together all the code shown above into three programs. The programs assum running from your own desktop and used the Google Cloud SDK to authenticate yourself. The first program creates a project if it does not exist. Complete source code can be found at -[GetOrCreateProject.java](../google-cloud-examples/src/main/java/com/google/cloud/examples/resourcemanager/snippets/GetOrCreateProject.java). +[GetOrCreateProject.java](../../google-cloud-examples/src/main/java/com/google/cloud/examples/resourcemanager/snippets/GetOrCreateProject.java). The second program updates a project if it exists and lists all projects the user has permission to view. Complete source code can be found at -[UpdateAndListProjects.java](../google-cloud-examples/src/main/java/com/google/cloud/examples/resourcemanager/snippets/UpdateAndListProjects.java). +[UpdateAndListProjects.java](../../google-cloud-examples/src/main/java/com/google/cloud/examples/resourcemanager/snippets/UpdateAndListProjects.java). The third program modifies the IAM policy associated with a project using the read-modify-write pattern. Complete source code can be found at -[ModifyPolicy.java](../google-cloud-examples/src/main/java/com/google/cloud/examples/resourcemanager/snippets/ModifyPolicy.java) +[ModifyPolicy.java](../../google-cloud-examples/src/main/java/com/google/cloud/examples/resourcemanager/snippets/ModifyPolicy.java) Transport ---------