Class DisksClient

  • All Implemented Interfaces:
    com.google.api.gax.core.BackgroundResource, AutoCloseable

    @Generated("by gapic-generator-java")
    public class DisksClient
    extends Object
    implements com.google.api.gax.core.BackgroundResource
    Service Description: The Disks API.

    This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:

    
     // This snippet has been automatically generated and should be regarded as a code template only.
     // It will require modifications to work:
     // - It may require correct/in-range values for request initialization.
     // - It may require specifying regional endpoints when creating the service client as shown in
     // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
     try (DisksClient disksClient = DisksClient.create()) {
       String project = "project-309310695";
       String zone = "zone3744684";
       String disk = "disk3083677";
       Disk response = disksClient.get(project, zone, disk);
     }
     

    Note: close() needs to be called on the DisksClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().

    The surface of this class includes several types of Java methods for each of the API's methods:

    1. A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
    2. A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
    3. A "callable" method. This type of method takes no parameters and returns an immutable API callable object, which can be used to initiate calls to the service.

    See the individual methods for example code.

    Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.

    This class can be customized by passing in a custom instance of DisksSettings to create(). For example:

    To customize credentials:

    
     // This snippet has been automatically generated and should be regarded as a code template only.
     // It will require modifications to work:
     // - It may require correct/in-range values for request initialization.
     // - It may require specifying regional endpoints when creating the service client as shown in
     // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
     DisksSettings disksSettings =
         DisksSettings.newBuilder()
             .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
             .build();
     DisksClient disksClient = DisksClient.create(disksSettings);
     

    To customize the endpoint:

    
     // This snippet has been automatically generated and should be regarded as a code template only.
     // It will require modifications to work:
     // - It may require correct/in-range values for request initialization.
     // - It may require specifying regional endpoints when creating the service client as shown in
     // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
     DisksSettings disksSettings = DisksSettings.newBuilder().setEndpoint(myEndpoint).build();
     DisksClient disksClient = DisksClient.create(disksSettings);
     

    Please refer to the GitHub repository's samples for more quickstart code snippets.

    • Constructor Detail

      • DisksClient

        protected DisksClient​(DisksSettings settings)
                       throws IOException
        Constructs an instance of DisksClient, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.
        Throws:
        IOException
      • DisksClient

        protected DisksClient​(DisksStub stub)
    • Method Detail

      • create

        public static final DisksClient create​(DisksSettings settings)
                                        throws IOException
        Constructs an instance of DisksClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.
        Throws:
        IOException
      • create

        public static final DisksClient create​(DisksStub stub)
        Constructs an instance of DisksClient, using the given stub for making calls. This is for advanced usage - prefer using create(DisksSettings).
      • addResourcePoliciesAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> addResourcePoliciesAsync​(String project,
                                                                                                                        String zone,
                                                                                                                        String disk,
                                                                                                                        DisksAddResourcePoliciesRequest disksAddResourcePoliciesRequestResource)
        Adds existing resource policies to a disk. You can only add one policy which will be applied to this disk for scheduling snapshot creation.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String disk = "disk3083677";
           DisksAddResourcePoliciesRequest disksAddResourcePoliciesRequestResource =
               DisksAddResourcePoliciesRequest.newBuilder().build();
           Operation response =
               disksClient
                   .addResourcePoliciesAsync(
                       project, zone, disk, disksAddResourcePoliciesRequestResource)
                   .get();
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone for this request.
        disk - The disk name for this request.
        disksAddResourcePoliciesRequestResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • addResourcePoliciesAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> addResourcePoliciesAsync​(AddResourcePoliciesDiskRequest request)
        Adds existing resource policies to a disk. You can only add one policy which will be applied to this disk for scheduling snapshot creation.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           AddResourcePoliciesDiskRequest request =
               AddResourcePoliciesDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setDisksAddResourcePoliciesRequestResource(
                       DisksAddResourcePoliciesRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           Operation response = disksClient.addResourcePoliciesAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • addResourcePoliciesOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<AddResourcePoliciesDiskRequest,​Operation,​Operation> addResourcePoliciesOperationCallable()
        Adds existing resource policies to a disk. You can only add one policy which will be applied to this disk for scheduling snapshot creation.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           AddResourcePoliciesDiskRequest request =
               AddResourcePoliciesDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setDisksAddResourcePoliciesRequestResource(
                       DisksAddResourcePoliciesRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           OperationFuture<Operation, Operation> future =
               disksClient.addResourcePoliciesOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • addResourcePoliciesCallable

        public final com.google.api.gax.rpc.UnaryCallable<AddResourcePoliciesDiskRequest,​Operation> addResourcePoliciesCallable()
        Adds existing resource policies to a disk. You can only add one policy which will be applied to this disk for scheduling snapshot creation.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           AddResourcePoliciesDiskRequest request =
               AddResourcePoliciesDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setDisksAddResourcePoliciesRequestResource(
                       DisksAddResourcePoliciesRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Operation> future = disksClient.addResourcePoliciesCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • aggregatedList

        public final DisksClient.AggregatedListPagedResponse aggregatedList​(String project)
        Retrieves an aggregated list of persistent disks.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           for (Map.Entry<String, DisksScopedList> element :
               disksClient.aggregatedList(project).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        project - Project ID for this request.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • aggregatedList

        public final DisksClient.AggregatedListPagedResponse aggregatedList​(AggregatedListDisksRequest request)
        Retrieves an aggregated list of persistent disks.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           AggregatedListDisksRequest request =
               AggregatedListDisksRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setIncludeAllScopes(true)
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .build();
           for (Map.Entry<String, DisksScopedList> element :
               disksClient.aggregatedList(request).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • aggregatedListPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<AggregatedListDisksRequest,​DisksClient.AggregatedListPagedResponse> aggregatedListPagedCallable()
        Retrieves an aggregated list of persistent disks.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           AggregatedListDisksRequest request =
               AggregatedListDisksRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setIncludeAllScopes(true)
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .build();
           ApiFuture<Map.Entry<String, DisksScopedList>> future =
               disksClient.aggregatedListPagedCallable().futureCall(request);
           // Do something.
           for (Map.Entry<String, DisksScopedList> element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • aggregatedListCallable

        public final com.google.api.gax.rpc.UnaryCallable<AggregatedListDisksRequest,​DiskAggregatedList> aggregatedListCallable()
        Retrieves an aggregated list of persistent disks.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           AggregatedListDisksRequest request =
               AggregatedListDisksRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setIncludeAllScopes(true)
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .build();
           while (true) {
             DiskAggregatedList response = disksClient.aggregatedListCallable().call(request);
             for (Map.Entry<String, DisksScopedList> element : response.getItemsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • bulkInsertAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> bulkInsertAsync​(String project,
                                                                                                               String zone,
                                                                                                               BulkInsertDiskResource bulkInsertDiskResourceResource)
        Bulk create a set of disks.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           BulkInsertDiskResource bulkInsertDiskResourceResource =
               BulkInsertDiskResource.newBuilder().build();
           Operation response =
               disksClient.bulkInsertAsync(project, zone, bulkInsertDiskResourceResource).get();
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone for this request.
        bulkInsertDiskResourceResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • bulkInsertAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> bulkInsertAsync​(BulkInsertDiskRequest request)
        Bulk create a set of disks.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           BulkInsertDiskRequest request =
               BulkInsertDiskRequest.newBuilder()
                   .setBulkInsertDiskResourceResource(BulkInsertDiskResource.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           Operation response = disksClient.bulkInsertAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • bulkInsertOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<BulkInsertDiskRequest,​Operation,​Operation> bulkInsertOperationCallable()
        Bulk create a set of disks.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           BulkInsertDiskRequest request =
               BulkInsertDiskRequest.newBuilder()
                   .setBulkInsertDiskResourceResource(BulkInsertDiskResource.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           OperationFuture<Operation, Operation> future =
               disksClient.bulkInsertOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • bulkInsertCallable

        public final com.google.api.gax.rpc.UnaryCallable<BulkInsertDiskRequest,​Operation> bulkInsertCallable()
        Bulk create a set of disks.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           BulkInsertDiskRequest request =
               BulkInsertDiskRequest.newBuilder()
                   .setBulkInsertDiskResourceResource(BulkInsertDiskResource.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Operation> future = disksClient.bulkInsertCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • createSnapshotAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> createSnapshotAsync​(String project,
                                                                                                                   String zone,
                                                                                                                   String disk,
                                                                                                                   Snapshot snapshotResource)
        Creates a snapshot of a specified persistent disk. For regular snapshot creation, consider using snapshots.insert instead, as that method supports more features, such as creating snapshots in a project different from the source disk project.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String disk = "disk3083677";
           Snapshot snapshotResource = Snapshot.newBuilder().build();
           Operation response =
               disksClient.createSnapshotAsync(project, zone, disk, snapshotResource).get();
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone for this request.
        disk - Name of the persistent disk to snapshot.
        snapshotResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createSnapshotAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> createSnapshotAsync​(CreateSnapshotDiskRequest request)
        Creates a snapshot of a specified persistent disk. For regular snapshot creation, consider using snapshots.insert instead, as that method supports more features, such as creating snapshots in a project different from the source disk project.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           CreateSnapshotDiskRequest request =
               CreateSnapshotDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setGuestFlush(true)
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setSnapshotResource(Snapshot.newBuilder().build())
                   .setZone("zone3744684")
                   .build();
           Operation response = disksClient.createSnapshotAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createSnapshotOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<CreateSnapshotDiskRequest,​Operation,​Operation> createSnapshotOperationCallable()
        Creates a snapshot of a specified persistent disk. For regular snapshot creation, consider using snapshots.insert instead, as that method supports more features, such as creating snapshots in a project different from the source disk project.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           CreateSnapshotDiskRequest request =
               CreateSnapshotDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setGuestFlush(true)
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setSnapshotResource(Snapshot.newBuilder().build())
                   .setZone("zone3744684")
                   .build();
           OperationFuture<Operation, Operation> future =
               disksClient.createSnapshotOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • createSnapshotCallable

        public final com.google.api.gax.rpc.UnaryCallable<CreateSnapshotDiskRequest,​Operation> createSnapshotCallable()
        Creates a snapshot of a specified persistent disk. For regular snapshot creation, consider using snapshots.insert instead, as that method supports more features, such as creating snapshots in a project different from the source disk project.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           CreateSnapshotDiskRequest request =
               CreateSnapshotDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setGuestFlush(true)
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setSnapshotResource(Snapshot.newBuilder().build())
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Operation> future = disksClient.createSnapshotCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • deleteAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> deleteAsync​(String project,
                                                                                                           String zone,
                                                                                                           String disk)
        Deletes the specified persistent disk. Deleting a disk removes its data permanently and is irreversible. However, deleting a disk does not delete any snapshots previously made from the disk. You must separately delete snapshots.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String disk = "disk3083677";
           Operation response = disksClient.deleteAsync(project, zone, disk).get();
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone for this request.
        disk - Name of the persistent disk to delete.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> deleteAsync​(DeleteDiskRequest request)
        Deletes the specified persistent disk. Deleting a disk removes its data permanently and is irreversible. However, deleting a disk does not delete any snapshots previously made from the disk. You must separately delete snapshots.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           DeleteDiskRequest request =
               DeleteDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           Operation response = disksClient.deleteAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<DeleteDiskRequest,​Operation,​Operation> deleteOperationCallable()
        Deletes the specified persistent disk. Deleting a disk removes its data permanently and is irreversible. However, deleting a disk does not delete any snapshots previously made from the disk. You must separately delete snapshots.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           DeleteDiskRequest request =
               DeleteDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           OperationFuture<Operation, Operation> future =
               disksClient.deleteOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • deleteCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteDiskRequest,​Operation> deleteCallable()
        Deletes the specified persistent disk. Deleting a disk removes its data permanently and is irreversible. However, deleting a disk does not delete any snapshots previously made from the disk. You must separately delete snapshots.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           DeleteDiskRequest request =
               DeleteDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Operation> future = disksClient.deleteCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • get

        public final Disk get​(String project,
                              String zone,
                              String disk)
        Returns the specified persistent disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String disk = "disk3083677";
           Disk response = disksClient.get(project, zone, disk);
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone for this request.
        disk - Name of the persistent disk to return.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • get

        public final Disk get​(GetDiskRequest request)
        Returns the specified persistent disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           GetDiskRequest request =
               GetDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setProject("project-309310695")
                   .setZone("zone3744684")
                   .build();
           Disk response = disksClient.get(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetDiskRequest,​Disk> getCallable()
        Returns the specified persistent disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           GetDiskRequest request =
               GetDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setProject("project-309310695")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Disk> future = disksClient.getCallable().futureCall(request);
           // Do something.
           Disk response = future.get();
         }
         
      • getIamPolicy

        public final Policy getIamPolicy​(String project,
                                         String zone,
                                         String resource)
        Gets the access control policy for a resource. May be empty if no such policy or resource exists.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String resource = "resource-341064690";
           Policy response = disksClient.getIamPolicy(project, zone, resource);
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone for this request.
        resource - Name or id of the resource for this request.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getIamPolicy

        public final Policy getIamPolicy​(GetIamPolicyDiskRequest request)
        Gets the access control policy for a resource. May be empty if no such policy or resource exists.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           GetIamPolicyDiskRequest request =
               GetIamPolicyDiskRequest.newBuilder()
                   .setOptionsRequestedPolicyVersion(-574521795)
                   .setProject("project-309310695")
                   .setResource("resource-341064690")
                   .setZone("zone3744684")
                   .build();
           Policy response = disksClient.getIamPolicy(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getIamPolicyCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetIamPolicyDiskRequest,​Policy> getIamPolicyCallable()
        Gets the access control policy for a resource. May be empty if no such policy or resource exists.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           GetIamPolicyDiskRequest request =
               GetIamPolicyDiskRequest.newBuilder()
                   .setOptionsRequestedPolicyVersion(-574521795)
                   .setProject("project-309310695")
                   .setResource("resource-341064690")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Policy> future = disksClient.getIamPolicyCallable().futureCall(request);
           // Do something.
           Policy response = future.get();
         }
         
      • insertAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> insertAsync​(String project,
                                                                                                           String zone,
                                                                                                           Disk diskResource)
        Creates a persistent disk in the specified project using the data in the request. You can create a disk from a source (sourceImage, sourceSnapshot, or sourceDisk) or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           Disk diskResource = Disk.newBuilder().build();
           Operation response = disksClient.insertAsync(project, zone, diskResource).get();
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone for this request.
        diskResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • insertAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> insertAsync​(InsertDiskRequest request)
        Creates a persistent disk in the specified project using the data in the request. You can create a disk from a source (sourceImage, sourceSnapshot, or sourceDisk) or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           InsertDiskRequest request =
               InsertDiskRequest.newBuilder()
                   .setDiskResource(Disk.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setSourceImage("sourceImage-105174528")
                   .setZone("zone3744684")
                   .build();
           Operation response = disksClient.insertAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • insertOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<InsertDiskRequest,​Operation,​Operation> insertOperationCallable()
        Creates a persistent disk in the specified project using the data in the request. You can create a disk from a source (sourceImage, sourceSnapshot, or sourceDisk) or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           InsertDiskRequest request =
               InsertDiskRequest.newBuilder()
                   .setDiskResource(Disk.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setSourceImage("sourceImage-105174528")
                   .setZone("zone3744684")
                   .build();
           OperationFuture<Operation, Operation> future =
               disksClient.insertOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • insertCallable

        public final com.google.api.gax.rpc.UnaryCallable<InsertDiskRequest,​Operation> insertCallable()
        Creates a persistent disk in the specified project using the data in the request. You can create a disk from a source (sourceImage, sourceSnapshot, or sourceDisk) or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           InsertDiskRequest request =
               InsertDiskRequest.newBuilder()
                   .setDiskResource(Disk.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setSourceImage("sourceImage-105174528")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Operation> future = disksClient.insertCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • list

        public final DisksClient.ListPagedResponse list​(String project,
                                                        String zone)
        Retrieves a list of persistent disks contained within the specified zone.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           for (Disk element : disksClient.list(project, zone).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone for this request.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • list

        public final DisksClient.ListPagedResponse list​(ListDisksRequest request)
        Retrieves a list of persistent disks contained within the specified zone.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           ListDisksRequest request =
               ListDisksRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .setZone("zone3744684")
                   .build();
           for (Disk element : disksClient.list(request).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListDisksRequest,​DisksClient.ListPagedResponse> listPagedCallable()
        Retrieves a list of persistent disks contained within the specified zone.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           ListDisksRequest request =
               ListDisksRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Disk> future = disksClient.listPagedCallable().futureCall(request);
           // Do something.
           for (Disk element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListDisksRequest,​DiskList> listCallable()
        Retrieves a list of persistent disks contained within the specified zone.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           ListDisksRequest request =
               ListDisksRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .setZone("zone3744684")
                   .build();
           while (true) {
             DiskList response = disksClient.listCallable().call(request);
             for (Disk element : response.getItemsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • removeResourcePoliciesAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> removeResourcePoliciesAsync​(String project,
                                                                                                                           String zone,
                                                                                                                           String disk,
                                                                                                                           DisksRemoveResourcePoliciesRequest disksRemoveResourcePoliciesRequestResource)
        Removes resource policies from a disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String disk = "disk3083677";
           DisksRemoveResourcePoliciesRequest disksRemoveResourcePoliciesRequestResource =
               DisksRemoveResourcePoliciesRequest.newBuilder().build();
           Operation response =
               disksClient
                   .removeResourcePoliciesAsync(
                       project, zone, disk, disksRemoveResourcePoliciesRequestResource)
                   .get();
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone for this request.
        disk - The disk name for this request.
        disksRemoveResourcePoliciesRequestResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • removeResourcePoliciesAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> removeResourcePoliciesAsync​(RemoveResourcePoliciesDiskRequest request)
        Removes resource policies from a disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           RemoveResourcePoliciesDiskRequest request =
               RemoveResourcePoliciesDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setDisksRemoveResourcePoliciesRequestResource(
                       DisksRemoveResourcePoliciesRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           Operation response = disksClient.removeResourcePoliciesAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • removeResourcePoliciesOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<RemoveResourcePoliciesDiskRequest,​Operation,​Operation> removeResourcePoliciesOperationCallable()
        Removes resource policies from a disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           RemoveResourcePoliciesDiskRequest request =
               RemoveResourcePoliciesDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setDisksRemoveResourcePoliciesRequestResource(
                       DisksRemoveResourcePoliciesRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           OperationFuture<Operation, Operation> future =
               disksClient.removeResourcePoliciesOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • removeResourcePoliciesCallable

        public final com.google.api.gax.rpc.UnaryCallable<RemoveResourcePoliciesDiskRequest,​Operation> removeResourcePoliciesCallable()
        Removes resource policies from a disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           RemoveResourcePoliciesDiskRequest request =
               RemoveResourcePoliciesDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setDisksRemoveResourcePoliciesRequestResource(
                       DisksRemoveResourcePoliciesRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Operation> future =
               disksClient.removeResourcePoliciesCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • resizeAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> resizeAsync​(String project,
                                                                                                           String zone,
                                                                                                           String disk,
                                                                                                           DisksResizeRequest disksResizeRequestResource)
        Resizes the specified persistent disk. You can only increase the size of the disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String disk = "disk3083677";
           DisksResizeRequest disksResizeRequestResource = DisksResizeRequest.newBuilder().build();
           Operation response =
               disksClient.resizeAsync(project, zone, disk, disksResizeRequestResource).get();
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone for this request.
        disk - The name of the persistent disk.
        disksResizeRequestResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • resizeAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> resizeAsync​(ResizeDiskRequest request)
        Resizes the specified persistent disk. You can only increase the size of the disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           ResizeDiskRequest request =
               ResizeDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setDisksResizeRequestResource(DisksResizeRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           Operation response = disksClient.resizeAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • resizeOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<ResizeDiskRequest,​Operation,​Operation> resizeOperationCallable()
        Resizes the specified persistent disk. You can only increase the size of the disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           ResizeDiskRequest request =
               ResizeDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setDisksResizeRequestResource(DisksResizeRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           OperationFuture<Operation, Operation> future =
               disksClient.resizeOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • resizeCallable

        public final com.google.api.gax.rpc.UnaryCallable<ResizeDiskRequest,​Operation> resizeCallable()
        Resizes the specified persistent disk. You can only increase the size of the disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           ResizeDiskRequest request =
               ResizeDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setDisksResizeRequestResource(DisksResizeRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Operation> future = disksClient.resizeCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • setIamPolicy

        public final Policy setIamPolicy​(String project,
                                         String zone,
                                         String resource,
                                         ZoneSetPolicyRequest zoneSetPolicyRequestResource)
        Sets the access control policy on the specified resource. Replaces any existing policy.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String resource = "resource-341064690";
           ZoneSetPolicyRequest zoneSetPolicyRequestResource = ZoneSetPolicyRequest.newBuilder().build();
           Policy response =
               disksClient.setIamPolicy(project, zone, resource, zoneSetPolicyRequestResource);
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone for this request.
        resource - Name or id of the resource for this request.
        zoneSetPolicyRequestResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • setIamPolicy

        public final Policy setIamPolicy​(SetIamPolicyDiskRequest request)
        Sets the access control policy on the specified resource. Replaces any existing policy.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           SetIamPolicyDiskRequest request =
               SetIamPolicyDiskRequest.newBuilder()
                   .setProject("project-309310695")
                   .setResource("resource-341064690")
                   .setZone("zone3744684")
                   .setZoneSetPolicyRequestResource(ZoneSetPolicyRequest.newBuilder().build())
                   .build();
           Policy response = disksClient.setIamPolicy(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • setIamPolicyCallable

        public final com.google.api.gax.rpc.UnaryCallable<SetIamPolicyDiskRequest,​Policy> setIamPolicyCallable()
        Sets the access control policy on the specified resource. Replaces any existing policy.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           SetIamPolicyDiskRequest request =
               SetIamPolicyDiskRequest.newBuilder()
                   .setProject("project-309310695")
                   .setResource("resource-341064690")
                   .setZone("zone3744684")
                   .setZoneSetPolicyRequestResource(ZoneSetPolicyRequest.newBuilder().build())
                   .build();
           ApiFuture<Policy> future = disksClient.setIamPolicyCallable().futureCall(request);
           // Do something.
           Policy response = future.get();
         }
         
      • setLabelsAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> setLabelsAsync​(String project,
                                                                                                              String zone,
                                                                                                              String resource,
                                                                                                              ZoneSetLabelsRequest zoneSetLabelsRequestResource)
        Sets the labels on a disk. To learn more about labels, read the Labeling Resources documentation.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String resource = "resource-341064690";
           ZoneSetLabelsRequest zoneSetLabelsRequestResource = ZoneSetLabelsRequest.newBuilder().build();
           Operation response =
               disksClient.setLabelsAsync(project, zone, resource, zoneSetLabelsRequestResource).get();
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone for this request.
        resource - Name or id of the resource for this request.
        zoneSetLabelsRequestResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • setLabelsAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> setLabelsAsync​(SetLabelsDiskRequest request)
        Sets the labels on a disk. To learn more about labels, read the Labeling Resources documentation.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           SetLabelsDiskRequest request =
               SetLabelsDiskRequest.newBuilder()
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setResource("resource-341064690")
                   .setZone("zone3744684")
                   .setZoneSetLabelsRequestResource(ZoneSetLabelsRequest.newBuilder().build())
                   .build();
           Operation response = disksClient.setLabelsAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • setLabelsOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<SetLabelsDiskRequest,​Operation,​Operation> setLabelsOperationCallable()
        Sets the labels on a disk. To learn more about labels, read the Labeling Resources documentation.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           SetLabelsDiskRequest request =
               SetLabelsDiskRequest.newBuilder()
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setResource("resource-341064690")
                   .setZone("zone3744684")
                   .setZoneSetLabelsRequestResource(ZoneSetLabelsRequest.newBuilder().build())
                   .build();
           OperationFuture<Operation, Operation> future =
               disksClient.setLabelsOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • setLabelsCallable

        public final com.google.api.gax.rpc.UnaryCallable<SetLabelsDiskRequest,​Operation> setLabelsCallable()
        Sets the labels on a disk. To learn more about labels, read the Labeling Resources documentation.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           SetLabelsDiskRequest request =
               SetLabelsDiskRequest.newBuilder()
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setResource("resource-341064690")
                   .setZone("zone3744684")
                   .setZoneSetLabelsRequestResource(ZoneSetLabelsRequest.newBuilder().build())
                   .build();
           ApiFuture<Operation> future = disksClient.setLabelsCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • startAsyncReplicationAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> startAsyncReplicationAsync​(String project,
                                                                                                                          String zone,
                                                                                                                          String disk,
                                                                                                                          DisksStartAsyncReplicationRequest disksStartAsyncReplicationRequestResource)
        Starts asynchronous replication. Must be invoked on the primary disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String disk = "disk3083677";
           DisksStartAsyncReplicationRequest disksStartAsyncReplicationRequestResource =
               DisksStartAsyncReplicationRequest.newBuilder().build();
           Operation response =
               disksClient
                   .startAsyncReplicationAsync(
                       project, zone, disk, disksStartAsyncReplicationRequestResource)
                   .get();
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone for this request.
        disk - The name of the persistent disk.
        disksStartAsyncReplicationRequestResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • startAsyncReplicationAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> startAsyncReplicationAsync​(StartAsyncReplicationDiskRequest request)
        Starts asynchronous replication. Must be invoked on the primary disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           StartAsyncReplicationDiskRequest request =
               StartAsyncReplicationDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setDisksStartAsyncReplicationRequestResource(
                       DisksStartAsyncReplicationRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           Operation response = disksClient.startAsyncReplicationAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • startAsyncReplicationOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<StartAsyncReplicationDiskRequest,​Operation,​Operation> startAsyncReplicationOperationCallable()
        Starts asynchronous replication. Must be invoked on the primary disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           StartAsyncReplicationDiskRequest request =
               StartAsyncReplicationDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setDisksStartAsyncReplicationRequestResource(
                       DisksStartAsyncReplicationRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           OperationFuture<Operation, Operation> future =
               disksClient.startAsyncReplicationOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • startAsyncReplicationCallable

        public final com.google.api.gax.rpc.UnaryCallable<StartAsyncReplicationDiskRequest,​Operation> startAsyncReplicationCallable()
        Starts asynchronous replication. Must be invoked on the primary disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           StartAsyncReplicationDiskRequest request =
               StartAsyncReplicationDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setDisksStartAsyncReplicationRequestResource(
                       DisksStartAsyncReplicationRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Operation> future = disksClient.startAsyncReplicationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • stopAsyncReplicationAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> stopAsyncReplicationAsync​(String project,
                                                                                                                         String zone,
                                                                                                                         String disk)
        Stops asynchronous replication. Can be invoked either on the primary or on the secondary disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String disk = "disk3083677";
           Operation response = disksClient.stopAsyncReplicationAsync(project, zone, disk).get();
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone for this request.
        disk - The name of the persistent disk.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • stopAsyncReplicationAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> stopAsyncReplicationAsync​(StopAsyncReplicationDiskRequest request)
        Stops asynchronous replication. Can be invoked either on the primary or on the secondary disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           StopAsyncReplicationDiskRequest request =
               StopAsyncReplicationDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           Operation response = disksClient.stopAsyncReplicationAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • stopAsyncReplicationOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<StopAsyncReplicationDiskRequest,​Operation,​Operation> stopAsyncReplicationOperationCallable()
        Stops asynchronous replication. Can be invoked either on the primary or on the secondary disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           StopAsyncReplicationDiskRequest request =
               StopAsyncReplicationDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           OperationFuture<Operation, Operation> future =
               disksClient.stopAsyncReplicationOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • stopAsyncReplicationCallable

        public final com.google.api.gax.rpc.UnaryCallable<StopAsyncReplicationDiskRequest,​Operation> stopAsyncReplicationCallable()
        Stops asynchronous replication. Can be invoked either on the primary or on the secondary disk.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           StopAsyncReplicationDiskRequest request =
               StopAsyncReplicationDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Operation> future = disksClient.stopAsyncReplicationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • stopGroupAsyncReplicationAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> stopGroupAsyncReplicationAsync​(String project,
                                                                                                                              String zone,
                                                                                                                              DisksStopGroupAsyncReplicationResource disksStopGroupAsyncReplicationResourceResource)
        Stops asynchronous replication for a consistency group of disks. Can be invoked either in the primary or secondary scope.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           DisksStopGroupAsyncReplicationResource disksStopGroupAsyncReplicationResourceResource =
               DisksStopGroupAsyncReplicationResource.newBuilder().build();
           Operation response =
               disksClient
                   .stopGroupAsyncReplicationAsync(
                       project, zone, disksStopGroupAsyncReplicationResourceResource)
                   .get();
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone for this request. This must be the zone of the primary or secondary disks in the consistency group.
        disksStopGroupAsyncReplicationResourceResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • stopGroupAsyncReplicationAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> stopGroupAsyncReplicationAsync​(StopGroupAsyncReplicationDiskRequest request)
        Stops asynchronous replication for a consistency group of disks. Can be invoked either in the primary or secondary scope.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           StopGroupAsyncReplicationDiskRequest request =
               StopGroupAsyncReplicationDiskRequest.newBuilder()
                   .setDisksStopGroupAsyncReplicationResourceResource(
                       DisksStopGroupAsyncReplicationResource.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           Operation response = disksClient.stopGroupAsyncReplicationAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • stopGroupAsyncReplicationOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<StopGroupAsyncReplicationDiskRequest,​Operation,​Operation> stopGroupAsyncReplicationOperationCallable()
        Stops asynchronous replication for a consistency group of disks. Can be invoked either in the primary or secondary scope.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           StopGroupAsyncReplicationDiskRequest request =
               StopGroupAsyncReplicationDiskRequest.newBuilder()
                   .setDisksStopGroupAsyncReplicationResourceResource(
                       DisksStopGroupAsyncReplicationResource.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           OperationFuture<Operation, Operation> future =
               disksClient.stopGroupAsyncReplicationOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • stopGroupAsyncReplicationCallable

        public final com.google.api.gax.rpc.UnaryCallable<StopGroupAsyncReplicationDiskRequest,​Operation> stopGroupAsyncReplicationCallable()
        Stops asynchronous replication for a consistency group of disks. Can be invoked either in the primary or secondary scope.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           StopGroupAsyncReplicationDiskRequest request =
               StopGroupAsyncReplicationDiskRequest.newBuilder()
                   .setDisksStopGroupAsyncReplicationResourceResource(
                       DisksStopGroupAsyncReplicationResource.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Operation> future =
               disksClient.stopGroupAsyncReplicationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • testIamPermissions

        public final TestPermissionsResponse testIamPermissions​(String project,
                                                                String zone,
                                                                String resource,
                                                                TestPermissionsRequest testPermissionsRequestResource)
        Returns permissions that a caller has on the specified resource.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String resource = "resource-341064690";
           TestPermissionsRequest testPermissionsRequestResource =
               TestPermissionsRequest.newBuilder().build();
           TestPermissionsResponse response =
               disksClient.testIamPermissions(project, zone, resource, testPermissionsRequestResource);
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone for this request.
        resource - Name or id of the resource for this request.
        testPermissionsRequestResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • testIamPermissions

        public final TestPermissionsResponse testIamPermissions​(TestIamPermissionsDiskRequest request)
        Returns permissions that a caller has on the specified resource.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           TestIamPermissionsDiskRequest request =
               TestIamPermissionsDiskRequest.newBuilder()
                   .setProject("project-309310695")
                   .setResource("resource-341064690")
                   .setTestPermissionsRequestResource(TestPermissionsRequest.newBuilder().build())
                   .setZone("zone3744684")
                   .build();
           TestPermissionsResponse response = disksClient.testIamPermissions(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • testIamPermissionsCallable

        public final com.google.api.gax.rpc.UnaryCallable<TestIamPermissionsDiskRequest,​TestPermissionsResponse> testIamPermissionsCallable()
        Returns permissions that a caller has on the specified resource.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           TestIamPermissionsDiskRequest request =
               TestIamPermissionsDiskRequest.newBuilder()
                   .setProject("project-309310695")
                   .setResource("resource-341064690")
                   .setTestPermissionsRequestResource(TestPermissionsRequest.newBuilder().build())
                   .setZone("zone3744684")
                   .build();
           ApiFuture<TestPermissionsResponse> future =
               disksClient.testIamPermissionsCallable().futureCall(request);
           // Do something.
           TestPermissionsResponse response = future.get();
         }
         
      • updateAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> updateAsync​(String project,
                                                                                                           String zone,
                                                                                                           String disk,
                                                                                                           Disk diskResource)
        Updates the specified disk with the data included in the request. The update is performed only on selected fields included as part of update-mask. Only the following fields can be modified: user_license.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String disk = "disk3083677";
           Disk diskResource = Disk.newBuilder().build();
           Operation response = disksClient.updateAsync(project, zone, disk, diskResource).get();
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone for this request.
        disk - The disk name for this request.
        diskResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> updateAsync​(UpdateDiskRequest request)
        Updates the specified disk with the data included in the request. The update is performed only on selected fields included as part of update-mask. Only the following fields can be modified: user_license.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           UpdateDiskRequest request =
               UpdateDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setDiskResource(Disk.newBuilder().build())
                   .setPaths("paths106438894")
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUpdateMask("updateMask-296147115")
                   .setZone("zone3744684")
                   .build();
           Operation response = disksClient.updateAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<UpdateDiskRequest,​Operation,​Operation> updateOperationCallable()
        Updates the specified disk with the data included in the request. The update is performed only on selected fields included as part of update-mask. Only the following fields can be modified: user_license.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           UpdateDiskRequest request =
               UpdateDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setDiskResource(Disk.newBuilder().build())
                   .setPaths("paths106438894")
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUpdateMask("updateMask-296147115")
                   .setZone("zone3744684")
                   .build();
           OperationFuture<Operation, Operation> future =
               disksClient.updateOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • updateCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateDiskRequest,​Operation> updateCallable()
        Updates the specified disk with the data included in the request. The update is performed only on selected fields included as part of update-mask. Only the following fields can be modified: user_license.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (DisksClient disksClient = DisksClient.create()) {
           UpdateDiskRequest request =
               UpdateDiskRequest.newBuilder()
                   .setDisk("disk3083677")
                   .setDiskResource(Disk.newBuilder().build())
                   .setPaths("paths106438894")
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUpdateMask("updateMask-296147115")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Operation> future = disksClient.updateCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • shutdown

        public void shutdown()
        Specified by:
        shutdown in interface com.google.api.gax.core.BackgroundResource
      • isShutdown

        public boolean isShutdown()
        Specified by:
        isShutdown in interface com.google.api.gax.core.BackgroundResource
      • isTerminated

        public boolean isTerminated()
        Specified by:
        isTerminated in interface com.google.api.gax.core.BackgroundResource
      • shutdownNow

        public void shutdownNow()
        Specified by:
        shutdownNow in interface com.google.api.gax.core.BackgroundResource