Skip to content

Commit fdaf5bc

Browse files
authored
Fix urls from GoogleCloudPlatform org to googleapis org (googleapis#3793)
* Fix urls from GoogleCloudPlatform org to googleapis org * Fix typo
1 parent a7d327b commit fdaf5bc

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

java-resourcemanager/google-cloud-resourcemanager/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ libraryDependencies += "com.google.cloud" % "google-cloud-resourcemanager" % "0.
3737

3838
Example Application
3939
--------------------
40-
[`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).
40+
[`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://googleapis.github.io/google-cloud-java/apidocs/?com/google/cloud/examples/resourcemanager/ResourceManagerExample.html).
4141

4242
Authentication
4343
--------------
4444

45-
Unlike other `google-cloud` service libraries, `google-cloud-resourcemanager` only accepts Google Cloud SDK credentials at this time. If you are having trouble authenticating, it may be that you have other types of credentials that override your Google Cloud SDK credentials. See more about Google Cloud SDK credentials and credential precedence in the global README's [Authentication section](https://github.com/GoogleCloudPlatform/google-cloud-java#authentication).
45+
Unlike other `google-cloud` service libraries, `google-cloud-resourcemanager` only accepts Google Cloud SDK credentials at this time. If you are having trouble authenticating, it may be that you have other types of credentials that override your Google Cloud SDK credentials. See more about Google Cloud SDK credentials and credential precedence in the global README's [Authentication section](https://github.com/googleapis/google-cloud-java#authentication).
4646

4747
About Google Cloud Resource Manager
4848
-----------------------------------
@@ -249,10 +249,10 @@ License
249249
Apache 2.0 - See [LICENSE] for more information.
250250

251251

252-
[CONTRIBUTING]:https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/CONTRIBUTING.md
253-
[LICENSE]: https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/LICENSE
254-
[TESTING]: https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/TESTING.md#testing-code-that-uses-resource-manager
252+
[CONTRIBUTING]:https://github.com/googleapis/google-cloud-java/blob/master/CONTRIBUTING.md
253+
[LICENSE]: https://github.com/googleapis/google-cloud-java/blob/master/LICENSE
254+
[TESTING]: https://github.com/googleapis/google-cloud-java/blob/master/TESTING.md#testing-code-that-uses-resource-manager
255255
[cloud-platform]: https://cloud.google.com/
256256
[cloud-resourcemanager]: https://cloud.google.com/resource-manager/
257257
[resourcemanager-product-docs]: https://cloud.google.com/resource-manager/docs/
258-
[resourcemanager-client-lib-docs]: https://googlecloudplatform.github.io/google-cloud-java/apidocs/index.html?com/google/cloud/resourcemanager/package-summary.html
258+
[resourcemanager-client-lib-docs]: https://googleapis.github.io/google-cloud-java/apidocs/index.html?com/google/cloud/resourcemanager/package-summary.html

java-resourcemanager/google-cloud-resourcemanager/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<version>0.66.1-alpha-SNAPSHOT</version><!-- {x-version-update:google-cloud-resourcemanager:current} -->
66
<packaging>jar</packaging>
77
<name>Google Cloud Resource Manager</name>
8-
<url>https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-clients/google-cloud-resourcemanager</url>
8+
<url>https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-resourcemanager</url>
99
<description>
1010
Java idiomatic client for Google Cloud Resource Manager.
1111
</description>

java-resourcemanager/google-cloud-resourcemanager/src/main/java/com/google/cloud/resourcemanager/package-info.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* <p>Here's a simple usage example for using google-cloud from App/Compute Engine. This example
2222
* creates a project if it does not exist. For the complete source code see
23-
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/resourcemanager/snippets/GetOrCreateProject.java">
23+
* <a href="https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/resourcemanager/snippets/GetOrCreateProject.java">
2424
* GetOrCreateProject.java</a>.
2525
* <pre> {@code
2626
* ResourceManager resourceManager = ResourceManagerOptions.getDefaultInstance().getService();
@@ -34,7 +34,7 @@
3434
* <p>
3535
* This second example shows how to update a project if it exists and list all projects the user has
3636
* permission to view. For the complete source code see
37-
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/resourcemanager/snippets/UpdateAndListProjects.java">
37+
* <a href="https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/resourcemanager/snippets/UpdateAndListProjects.java">
3838
* UpdateAndListProjects.java</a>.
3939
* <pre> {@code
4040
* ResourceManager resourceManager = ResourceManagerOptions.getDefaultInstance().getService();
@@ -53,7 +53,7 @@
5353
* System.out.println(projectIterator.next().getProjectId());
5454
* }}</pre>
5555
* <p>Remember that you must authenticate using the Google Cloud SDK. See more about
56-
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java#specifying-a-project-id">providing
56+
* <a href="https://github.com/googleapis/google-cloud-java#specifying-a-project-id">providing
5757
* credentials here</a>.
5858
*
5959
* @see <a href="https://cloud.google.com/resource-manager/">Google Cloud Resource Manager</a>

0 commit comments

Comments
 (0)