Package com.google.cloud.compute

A client to Google Cloud Compute.

See: Description

Package com.google.cloud.compute Description

A client to Google Cloud Compute.

Here's a simple usage example for using gcloud-java from App/Compute Engine. This example shows how to create a snapshot from an existing disk. For the complete source code see CreateSnapshot.java.

 Compute compute = ComputeOptions.defaultInstance().service();
 DiskId diskId = DiskId.of("us-central1-a", "disk-name");
 Disk disk = compute.getDisk(diskId, Compute.DiskOption.fields());
 if (disk != null) {
   String snapshotName = "disk-name-snapshot";
   Operation operation = disk.createSnapshot(snapshotName);
   while (!operation.isDone()) {
     Thread.sleep(1000L);
   }
   if (operation.errors() == null) {
     // use snapshot
     Snapshot snapshot = compute.getSnapshot("disk-name-snapshot");
   }
 }

This second example shows how to create a virtual machine instance. Complete source code can be found at CreateInstance.java.

 Compute compute = ComputeOptions.defaultInstance().service();
 ImageId imageId = ImageId.of("debian-cloud", "debian-8-jessie-v20160329");
 NetworkId networkId = NetworkId.of("default");
 AttachedDisk attachedDisk = AttachedDisk.of(AttachedDisk.CreateDiskConfiguration.of(imageId));
 NetworkInterface networkInterface = NetworkInterface.of(networkId);
 InstanceId instanceId = InstanceId.of("us-central1-a", "instance-name");
 MachineTypeId machineTypeId = MachineTypeId.of("us-central1-a", "n1-standard-1");
 Operation operation =
 compute.create(InstanceInfo.of(instanceId, machineTypeId, attachedDisk, networkInterface));
 while (!operation.isDone()) {
   Thread.sleep(1000L);
 }
 if (operation.errors() == null) {
   // use instance
   Instance instance = compute.getInstance(instanceId);
 }
See Also:
Google Cloud Compute

Copyright © 2016 Google. All rights reserved.