Search in sources :

Example 1 with InstanceProperties

use of com.google.cloud.compute.v1.InstanceProperties in project java-docs-samples by GoogleCloudPlatform.

the class CreateInstanceTemplate method createInstanceTemplate.

/*
    Create a new instance template with the provided name and a specific
    instance configuration.
   */
public static void createInstanceTemplate(String projectId, String templateName) throws IOException, ExecutionException, InterruptedException {
    try (InstanceTemplatesClient instanceTemplatesClient = InstanceTemplatesClient.create()) {
        String machineType = "e2-standard-4";
        String sourceImage = "projects/debian-cloud/global/images/family/debian-11";
        // The template describes the size and source image of the boot disk
        // to attach to the instance.
        AttachedDisk attachedDisk = AttachedDisk.newBuilder().setInitializeParams(AttachedDiskInitializeParams.newBuilder().setSourceImage(sourceImage).setDiskSizeGb(250).build()).setAutoDelete(true).setBoot(true).build();
        // The template connects the instance to the `default` network,
        // without specifying a subnetwork.
        NetworkInterface networkInterface = NetworkInterface.newBuilder().setName("global/networks/default").addAccessConfigs(AccessConfig.newBuilder().setName("External NAT").setType(AccessConfig.Type.ONE_TO_ONE_NAT.toString()).setNetworkTier(NetworkTier.PREMIUM.toString()).build()).build();
        InstanceProperties instanceProperties = InstanceProperties.newBuilder().addDisks(attachedDisk).setMachineType(machineType).addNetworkInterfaces(networkInterface).build();
        InsertInstanceTemplateRequest insertInstanceTemplateRequest = InsertInstanceTemplateRequest.newBuilder().setProject(projectId).setInstanceTemplateResource(InstanceTemplate.newBuilder().setName(templateName).setProperties(instanceProperties).build()).build();
        // Create the Instance Template.
        Operation response = instanceTemplatesClient.insertAsync(insertInstanceTemplateRequest).get();
        if (response.hasError()) {
            System.out.println("Instance Template creation failed ! ! " + response);
            return;
        }
        System.out.printf("Instance Template Operation Status %s: %s", templateName, response.getStatus());
    }
}
Also used : InstanceProperties(com.google.cloud.compute.v1.InstanceProperties) AttachedDisk(com.google.cloud.compute.v1.AttachedDisk) NetworkInterface(com.google.cloud.compute.v1.NetworkInterface) Operation(com.google.cloud.compute.v1.Operation) InsertInstanceTemplateRequest(com.google.cloud.compute.v1.InsertInstanceTemplateRequest) InstanceTemplatesClient(com.google.cloud.compute.v1.InstanceTemplatesClient)

Example 2 with InstanceProperties

use of com.google.cloud.compute.v1.InstanceProperties in project java-docs-samples by GoogleCloudPlatform.

the class CreateTemplateWithSubnet method createTemplateWithSubnet.

// Create an instance template that uses a provided subnet.
public static void createTemplateWithSubnet(String projectId, String network, String subnetwork, String templateName) throws IOException, ExecutionException, InterruptedException {
    try (InstanceTemplatesClient instanceTemplatesClient = InstanceTemplatesClient.create();
        GlobalOperationsClient globalOperationsClient = GlobalOperationsClient.create()) {
        AttachedDisk disk = AttachedDisk.newBuilder().setInitializeParams(AttachedDiskInitializeParams.newBuilder().setSourceImage(String.format("projects/%s/global/images/family/%s", "debian-cloud", "debian-11")).setDiskSizeGb(250).build()).setAutoDelete(true).setBoot(true).build();
        InstanceProperties instanceProperties = InstanceProperties.newBuilder().addDisks(disk).setMachineType("e2-standard-4").addNetworkInterfaces(NetworkInterface.newBuilder().setNetwork(network).setSubnetwork(subnetwork).build()).build();
        InstanceTemplate instanceTemplate = InstanceTemplate.newBuilder().setName(templateName).setProperties(instanceProperties).build();
        InsertInstanceTemplateRequest insertInstanceTemplateRequest = InsertInstanceTemplateRequest.newBuilder().setProject(projectId).setInstanceTemplateResource(instanceTemplate).build();
        Operation operation = instanceTemplatesClient.insertCallable().futureCall(insertInstanceTemplateRequest).get();
        Operation response = globalOperationsClient.wait(projectId, operation.getName());
        if (response.hasError()) {
            System.out.println("Template creation from subnet failed ! ! " + response);
            return;
        }
        System.out.printf("Template creation from subnet operation status %s: %s", templateName, response.getStatus());
    }
}
Also used : InstanceProperties(com.google.cloud.compute.v1.InstanceProperties) AttachedDisk(com.google.cloud.compute.v1.AttachedDisk) GlobalOperationsClient(com.google.cloud.compute.v1.GlobalOperationsClient) Operation(com.google.cloud.compute.v1.Operation) InsertInstanceTemplateRequest(com.google.cloud.compute.v1.InsertInstanceTemplateRequest) InstanceTemplatesClient(com.google.cloud.compute.v1.InstanceTemplatesClient) InstanceTemplate(com.google.cloud.compute.v1.InstanceTemplate)

Example 3 with InstanceProperties

use of com.google.cloud.compute.v1.InstanceProperties in project incubator-skywalking by apache.

the class ServiceManagementHandlerTest method testHandler.

@Test
public void testHandler() {
    InstanceProperties properties = InstanceProperties.newBuilder().setService(SERVICE).setServiceInstance(SERVICE_INSTANCE).build();
    InstancePingPkg ping = InstancePingPkg.newBuilder().setService(SERVICE).setServiceInstance(SERVICE_INSTANCE).build();
    handler.handle(new ConsumerRecord<>(TOPIC_NAME, 0, 0, "register", Bytes.wrap(properties.toByteArray())));
    handler.handle(new ConsumerRecord<>(TOPIC_NAME, 0, 0, ping.getServiceInstance(), Bytes.wrap(ping.toByteArray())));
}
Also used : InstanceProperties(org.apache.skywalking.apm.network.management.v3.InstanceProperties) InstancePingPkg(org.apache.skywalking.apm.network.management.v3.InstancePingPkg) Test(org.junit.Test)

Example 4 with InstanceProperties

use of com.google.cloud.compute.v1.InstanceProperties in project skywalking by apache.

the class ServiceManagementHandlerTest method testHandler.

@Test
public void testHandler() {
    InstanceProperties properties = InstanceProperties.newBuilder().setService(SERVICE).setServiceInstance(SERVICE_INSTANCE).build();
    InstancePingPkg ping = InstancePingPkg.newBuilder().setService(SERVICE).setServiceInstance(SERVICE_INSTANCE).build();
    handler.handle(new ConsumerRecord<>(TOPIC_NAME, 0, 0, "register", Bytes.wrap(properties.toByteArray())));
    handler.handle(new ConsumerRecord<>(TOPIC_NAME, 0, 0, ping.getServiceInstance(), Bytes.wrap(ping.toByteArray())));
}
Also used : InstanceProperties(org.apache.skywalking.apm.network.management.v3.InstanceProperties) InstancePingPkg(org.apache.skywalking.apm.network.management.v3.InstancePingPkg) Test(org.junit.Test)

Aggregations

AttachedDisk (com.google.cloud.compute.v1.AttachedDisk)2 InsertInstanceTemplateRequest (com.google.cloud.compute.v1.InsertInstanceTemplateRequest)2 InstanceProperties (com.google.cloud.compute.v1.InstanceProperties)2 InstanceTemplatesClient (com.google.cloud.compute.v1.InstanceTemplatesClient)2 Operation (com.google.cloud.compute.v1.Operation)2 InstancePingPkg (org.apache.skywalking.apm.network.management.v3.InstancePingPkg)2 InstanceProperties (org.apache.skywalking.apm.network.management.v3.InstanceProperties)2 Test (org.junit.Test)2 GlobalOperationsClient (com.google.cloud.compute.v1.GlobalOperationsClient)1 InstanceTemplate (com.google.cloud.compute.v1.InstanceTemplate)1 NetworkInterface (com.google.cloud.compute.v1.NetworkInterface)1