Lines Matching +full:cloud +full:- +full:client

1 # Google Compute Engine Client for Java
3 Java idiomatic client for [Compute Engine][product-docs].
5 [![Maven][maven-version-image]][maven-version-link]
6 ![Stability][stability-image]
8 - [Product Documentation][product-docs]
9 - [Client Library Documentation][javadocs]
15 If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
21 <groupId>com.google.cloud</groupId>
22 <artifactId>libraries-bom</artifactId>
32 <groupId>com.google.cloud</groupId>
33 <artifactId>google-cloud-compute</artifactId>
39 <!-- {x-version-update-start:google-cloud-compute:released} -->
43 <groupId>com.google.cloud</groupId>
44 <artifactId>google-cloud-compute</artifactId>
52 implementation 'com.google.cloud:google-cloud-compute:1.27.0'
58 libraryDependencies += "com.google.cloud" % "google-cloud-compute" % "1.27.0"
60 <!-- {x-version-update-end} -->
68client application making API calls must be granted [authorization scopes][auth-scopes] required f…
74 You will need a [Google Cloud Platform Console][developer-console] project with the Compute Engine …
75 You will need to [enable billing][enable-billing] to use Google Compute Engine.
76 [Follow these instructions][create-project] to get your project set up. You will also need to set u…
77 [installing the Google Cloud Command Line Interface][cloud-cli] and running the following commands …
82 You'll need to obtain the `google-cloud-compute` library. See the [Quickstart](#quickstart) section
83 to add `google-cloud-compute` as a dependency in your code.
88-docs] delivers virtual machines running in Google's innovative data centers and worldwide fiber n…
92 See the [Compute Engine client library docs][javadocs] to learn how to
93 use this Compute Engine Client Library.
98 ….0 and backwards incompatible with 0.x.x. Also it is incompatible with 1.5.x-alpha and prior in a …
99 - Everything except polling methods which used to return `Operation` now returns `OperationFuture`.
100 - Library automatically polls Operation status.
101 - `Operation op = client.myMethod(args)` should be replaced with `OperationFuture<Operation, Operat…
102 - Polling is now done automatically, manual polling is no longer required. Calling `opFuture.get()`…
103 - To check for intermediate status on the future use either `opFuture.peekMetadata()` (non-blocking…
104 - If you wish to stop automatic polling call `opFuture.cancel()` - it will cancel the future on the…
105 - The calls still may be done without relying on automatic polling and/or OperationFuture. To do so…
111 import com.google.cloud.compute.v1.Address;
112 import com.google.cloud.compute.v1.AddressesClient;
113 import com.google.cloud.compute.v1.AddressesScopedList;
114 import com.google.cloud.compute.v1.Operation;
124 final String address = "test-address-21";
173 Java 8 or above is required for using this client.
175 Google's Java client libraries,
176 [Google Cloud Client Libraries][cloudlibs]
178 [Google Cloud API Libraries][apilibs],
195 Google tests its client libraries with all current LTS versions covered by
201 Google's client libraries support legacy versions of Java runtimes with long
212 the individual GitHub repository `github.com/GoogleAPIs/java-SERVICENAME`
213 and on [google-cloud-java][g-c-j].
230 this project you agree to abide by its terms. See [Code of Conduct][code-of-conduct] for more
236 Apache 2.0 - See [LICENSE][license] for more information.
241 ------------ | ------
242 Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2]
243 Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3]
244 Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4]
245 Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5]
249 [product-docs]: https://cloud.google.com/compute/
250 [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-compute/latest/overview
251 [kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-
252 [kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-j…
253 [kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-
254 [kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-j…
255 [kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-
256 [kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-j…
257 [kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-
258 [kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-j…
259 [kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-
260 [kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-j…
261 [stability-image]: https://img.shields.io/badge/stability-stable-green
262 [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-compute…
263 [maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-compute/1…
264 [authentication]: https://github.com/googleapis/google-cloud-java#authentication
265 [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
266 [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles
267 [iam-policy]: https://cloud.google.com/iam/docs/overview#cloud-iam-policy
268 [developer-console]: https://console.developers.google.com/
269 [create-project]: https://cloud.google.com/resource-manager/docs/creating-managing-projects
270 [cloud-cli]: https://cloud.google.com/cli
271 [troubleshooting]: https://github.com/googleapis/google-cloud-java/blob/main/TROUBLESHOOTING.md
272 [contributing]: https://github.com/googleapis/google-cloud-java/blob/main/CONTRIBUTING.md
273 [code-of-conduct]: https://github.com/googleapis/google-cloud-java/blob/main/CODE_OF_CONDUCT.md#con…
274 [license]: https://github.com/googleapis/google-cloud-java/blob/main/LICENSE
275 [enable-billing]: https://cloud.google.com/apis/docs/getting-started#enabling_billing
276 [enable-api]: https://console.cloud.google.com/flows/enableapi?apiid=compute.googleapis.com
277 [libraries-bom]: https://github.com/GoogleCloudPlatform/cloud-opensource-java/wiki/The-Google-Cloud…
278 [shell_img]: https://gstatic.com/cloudssh/images/open-btn.png
281 [cloudlibs]: https://cloud.google.com/apis/docs/client-libraries-explained
282 [apilibs]: https://cloud.google.com/apis/docs/client-libraries-explained#google_api_client_libraries
283 [oracle]: https://www.oracle.com/java/technologies/java-se-support-roadmap.html
284 [g-c-j]: http://github.com/googleapis/google-cloud-java