Class NotebookServiceClient

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

    @Generated("by gapic-generator-java")
    public class NotebookServiceClient
    extends Object
    implements com.google.api.gax.core.BackgroundResource
    Service Description: API v1 service for Cloud AI Platform Notebooks.

    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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
       String name = "name3373707";
       Instance response = notebookServiceClient.getInstance(name);
     }
     

    Note: close() needs to be called on the NotebookServiceClient 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 NotebookServiceSettings 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
     NotebookServiceSettings notebookServiceSettings =
         NotebookServiceSettings.newBuilder()
             .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
             .build();
     NotebookServiceClient notebookServiceClient =
         NotebookServiceClient.create(notebookServiceSettings);
     

    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
     NotebookServiceSettings notebookServiceSettings =
         NotebookServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
     NotebookServiceClient notebookServiceClient =
         NotebookServiceClient.create(notebookServiceSettings);
     

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

    • Constructor Detail

      • NotebookServiceClient

        protected NotebookServiceClient​(NotebookServiceSettings settings)
                                 throws IOException
        Constructs an instance of NotebookServiceClient, 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
    • Method Detail

      • create

        public static final NotebookServiceClient create​(NotebookServiceStub stub)
        Constructs an instance of NotebookServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(NotebookServiceSettings).
      • getOperationsClient

        public final com.google.longrunning.OperationsClient getOperationsClient()
        Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.
      • listInstances

        public final NotebookServiceClient.ListInstancesPagedResponse listInstances​(String parent)
        Lists instances in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String parent = "parent-995424086";
           for (Instance element : notebookServiceClient.listInstances(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. Format: `parent=projects/{project_id}/locations/{location}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listInstances

        public final NotebookServiceClient.ListInstancesPagedResponse listInstances​(ListInstancesRequest request)
        Lists instances in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ListInstancesRequest request =
               ListInstancesRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           for (Instance element : notebookServiceClient.listInstances(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
      • listInstancesPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListInstancesRequest,​NotebookServiceClient.ListInstancesPagedResponse> listInstancesPagedCallable()
        Lists instances in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ListInstancesRequest request =
               ListInstancesRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           ApiFuture<Instance> future =
               notebookServiceClient.listInstancesPagedCallable().futureCall(request);
           // Do something.
           for (Instance element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listInstancesCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListInstancesRequest,​ListInstancesResponse> listInstancesCallable()
        Lists instances in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ListInstancesRequest request =
               ListInstancesRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           while (true) {
             ListInstancesResponse response =
                 notebookServiceClient.listInstancesCallable().call(request);
             for (Instance element : response.getInstancesList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getInstance

        public final Instance getInstance​(String name)
        Gets details of a single Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String name = "name3373707";
           Instance response = notebookServiceClient.getInstance(name);
         }
         
        Parameters:
        name - Required. Format: `projects/{project_id}/locations/{location}/instances/{instance_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getInstance

        public final Instance getInstance​(GetInstanceRequest request)
        Gets details of a single Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           GetInstanceRequest request = GetInstanceRequest.newBuilder().setName("name3373707").build();
           Instance response = notebookServiceClient.getInstance(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
      • getInstanceCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetInstanceRequest,​Instance> getInstanceCallable()
        Gets details of a single Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           GetInstanceRequest request = GetInstanceRequest.newBuilder().setName("name3373707").build();
           ApiFuture<Instance> future = notebookServiceClient.getInstanceCallable().futureCall(request);
           // Do something.
           Instance response = future.get();
         }
         
      • createInstanceAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> createInstanceAsync​(String parent,
                                                                                                                          Instance instance,
                                                                                                                          String instanceId)
        Creates a new Instance in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String parent = "parent-995424086";
           Instance instance = Instance.newBuilder().build();
           String instanceId = "instanceId902024336";
           Instance response =
               notebookServiceClient.createInstanceAsync(parent, instance, instanceId).get();
         }
         
        Parameters:
        parent - Required. Format: `parent=projects/{project_id}/locations/{location}`
        instance - Required. The instance to be created.
        instanceId - Required. User-defined unique ID of this instance.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createInstanceAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> createInstanceAsync​(CreateInstanceRequest request)
        Creates a new Instance in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           CreateInstanceRequest request =
               CreateInstanceRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setInstanceId("instanceId902024336")
                   .setInstance(Instance.newBuilder().build())
                   .build();
           Instance response = notebookServiceClient.createInstanceAsync(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
      • createInstanceOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<CreateInstanceRequest,​Instance,​OperationMetadata> createInstanceOperationCallable()
        Creates a new Instance in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           CreateInstanceRequest request =
               CreateInstanceRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setInstanceId("instanceId902024336")
                   .setInstance(Instance.newBuilder().build())
                   .build();
           OperationFuture<Instance, OperationMetadata> future =
               notebookServiceClient.createInstanceOperationCallable().futureCall(request);
           // Do something.
           Instance response = future.get();
         }
         
      • createInstanceCallable

        public final com.google.api.gax.rpc.UnaryCallable<CreateInstanceRequest,​com.google.longrunning.Operation> createInstanceCallable()
        Creates a new Instance in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           CreateInstanceRequest request =
               CreateInstanceRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setInstanceId("instanceId902024336")
                   .setInstance(Instance.newBuilder().build())
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.createInstanceCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • registerInstanceAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> registerInstanceAsync​(RegisterInstanceRequest request)
        Registers an existing legacy notebook instance to the Notebooks API server. Legacy instances are instances created with the legacy Compute Engine calls. They are not manageable by the Notebooks API out of the box. This call makes these instances manageable by the Notebooks API.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           RegisterInstanceRequest request =
               RegisterInstanceRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setInstanceId("instanceId902024336")
                   .build();
           Instance response = notebookServiceClient.registerInstanceAsync(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
      • registerInstanceOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<RegisterInstanceRequest,​Instance,​OperationMetadata> registerInstanceOperationCallable()
        Registers an existing legacy notebook instance to the Notebooks API server. Legacy instances are instances created with the legacy Compute Engine calls. They are not manageable by the Notebooks API out of the box. This call makes these instances manageable by the Notebooks API.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           RegisterInstanceRequest request =
               RegisterInstanceRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setInstanceId("instanceId902024336")
                   .build();
           OperationFuture<Instance, OperationMetadata> future =
               notebookServiceClient.registerInstanceOperationCallable().futureCall(request);
           // Do something.
           Instance response = future.get();
         }
         
      • registerInstanceCallable

        public final com.google.api.gax.rpc.UnaryCallable<RegisterInstanceRequest,​com.google.longrunning.Operation> registerInstanceCallable()
        Registers an existing legacy notebook instance to the Notebooks API server. Legacy instances are instances created with the legacy Compute Engine calls. They are not manageable by the Notebooks API out of the box. This call makes these instances manageable by the Notebooks API.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           RegisterInstanceRequest request =
               RegisterInstanceRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setInstanceId("instanceId902024336")
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.registerInstanceCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • setInstanceAcceleratorAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> setInstanceAcceleratorAsync​(SetInstanceAcceleratorRequest request)
        Updates the guest accelerators of a single Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           SetInstanceAcceleratorRequest request =
               SetInstanceAcceleratorRequest.newBuilder()
                   .setName("name3373707")
                   .setCoreCount(-1963855761)
                   .build();
           Instance response = notebookServiceClient.setInstanceAcceleratorAsync(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
      • setInstanceAcceleratorOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<SetInstanceAcceleratorRequest,​Instance,​OperationMetadata> setInstanceAcceleratorOperationCallable()
        Updates the guest accelerators of a single Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           SetInstanceAcceleratorRequest request =
               SetInstanceAcceleratorRequest.newBuilder()
                   .setName("name3373707")
                   .setCoreCount(-1963855761)
                   .build();
           OperationFuture<Instance, OperationMetadata> future =
               notebookServiceClient.setInstanceAcceleratorOperationCallable().futureCall(request);
           // Do something.
           Instance response = future.get();
         }
         
      • setInstanceAcceleratorCallable

        public final com.google.api.gax.rpc.UnaryCallable<SetInstanceAcceleratorRequest,​com.google.longrunning.Operation> setInstanceAcceleratorCallable()
        Updates the guest accelerators of a single Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           SetInstanceAcceleratorRequest request =
               SetInstanceAcceleratorRequest.newBuilder()
                   .setName("name3373707")
                   .setCoreCount(-1963855761)
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.setInstanceAcceleratorCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • setInstanceMachineTypeAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> setInstanceMachineTypeAsync​(SetInstanceMachineTypeRequest request)
        Updates the machine type of a single Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           SetInstanceMachineTypeRequest request =
               SetInstanceMachineTypeRequest.newBuilder()
                   .setName("name3373707")
                   .setMachineType("machineType-218117087")
                   .build();
           Instance response = notebookServiceClient.setInstanceMachineTypeAsync(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
      • setInstanceMachineTypeOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<SetInstanceMachineTypeRequest,​Instance,​OperationMetadata> setInstanceMachineTypeOperationCallable()
        Updates the machine type of a single Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           SetInstanceMachineTypeRequest request =
               SetInstanceMachineTypeRequest.newBuilder()
                   .setName("name3373707")
                   .setMachineType("machineType-218117087")
                   .build();
           OperationFuture<Instance, OperationMetadata> future =
               notebookServiceClient.setInstanceMachineTypeOperationCallable().futureCall(request);
           // Do something.
           Instance response = future.get();
         }
         
      • setInstanceMachineTypeCallable

        public final com.google.api.gax.rpc.UnaryCallable<SetInstanceMachineTypeRequest,​com.google.longrunning.Operation> setInstanceMachineTypeCallable()
        Updates the machine type of a single Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           SetInstanceMachineTypeRequest request =
               SetInstanceMachineTypeRequest.newBuilder()
                   .setName("name3373707")
                   .setMachineType("machineType-218117087")
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.setInstanceMachineTypeCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • updateInstanceConfigAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> updateInstanceConfigAsync​(UpdateInstanceConfigRequest request)
        Update Notebook Instance configurations.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           UpdateInstanceConfigRequest request =
               UpdateInstanceConfigRequest.newBuilder()
                   .setName("name3373707")
                   .setConfig(InstanceConfig.newBuilder().build())
                   .build();
           Instance response = notebookServiceClient.updateInstanceConfigAsync(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
      • updateInstanceConfigOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<UpdateInstanceConfigRequest,​Instance,​OperationMetadata> updateInstanceConfigOperationCallable()
        Update Notebook Instance configurations.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           UpdateInstanceConfigRequest request =
               UpdateInstanceConfigRequest.newBuilder()
                   .setName("name3373707")
                   .setConfig(InstanceConfig.newBuilder().build())
                   .build();
           OperationFuture<Instance, OperationMetadata> future =
               notebookServiceClient.updateInstanceConfigOperationCallable().futureCall(request);
           // Do something.
           Instance response = future.get();
         }
         
      • updateInstanceConfigCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateInstanceConfigRequest,​com.google.longrunning.Operation> updateInstanceConfigCallable()
        Update Notebook Instance configurations.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           UpdateInstanceConfigRequest request =
               UpdateInstanceConfigRequest.newBuilder()
                   .setName("name3373707")
                   .setConfig(InstanceConfig.newBuilder().build())
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.updateInstanceConfigCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • updateShieldedInstanceConfigAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> updateShieldedInstanceConfigAsync​(UpdateShieldedInstanceConfigRequest request)
        Updates the Shielded instance configuration of a single Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           UpdateShieldedInstanceConfigRequest request =
               UpdateShieldedInstanceConfigRequest.newBuilder()
                   .setName("name3373707")
                   .setShieldedInstanceConfig(Instance.ShieldedInstanceConfig.newBuilder().build())
                   .build();
           Instance response = notebookServiceClient.updateShieldedInstanceConfigAsync(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
      • updateShieldedInstanceConfigOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<UpdateShieldedInstanceConfigRequest,​Instance,​OperationMetadata> updateShieldedInstanceConfigOperationCallable()
        Updates the Shielded instance configuration of a single Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           UpdateShieldedInstanceConfigRequest request =
               UpdateShieldedInstanceConfigRequest.newBuilder()
                   .setName("name3373707")
                   .setShieldedInstanceConfig(Instance.ShieldedInstanceConfig.newBuilder().build())
                   .build();
           OperationFuture<Instance, OperationMetadata> future =
               notebookServiceClient.updateShieldedInstanceConfigOperationCallable().futureCall(request);
           // Do something.
           Instance response = future.get();
         }
         
      • updateShieldedInstanceConfigCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateShieldedInstanceConfigRequest,​com.google.longrunning.Operation> updateShieldedInstanceConfigCallable()
        Updates the Shielded instance configuration of a single Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           UpdateShieldedInstanceConfigRequest request =
               UpdateShieldedInstanceConfigRequest.newBuilder()
                   .setName("name3373707")
                   .setShieldedInstanceConfig(Instance.ShieldedInstanceConfig.newBuilder().build())
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.updateShieldedInstanceConfigCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • setInstanceLabelsAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> setInstanceLabelsAsync​(SetInstanceLabelsRequest request)
        Replaces all the labels of an Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           SetInstanceLabelsRequest request =
               SetInstanceLabelsRequest.newBuilder()
                   .setName("name3373707")
                   .putAllLabels(new HashMap<String, String>())
                   .build();
           Instance response = notebookServiceClient.setInstanceLabelsAsync(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
      • setInstanceLabelsOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<SetInstanceLabelsRequest,​Instance,​OperationMetadata> setInstanceLabelsOperationCallable()
        Replaces all the labels of an Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           SetInstanceLabelsRequest request =
               SetInstanceLabelsRequest.newBuilder()
                   .setName("name3373707")
                   .putAllLabels(new HashMap<String, String>())
                   .build();
           OperationFuture<Instance, OperationMetadata> future =
               notebookServiceClient.setInstanceLabelsOperationCallable().futureCall(request);
           // Do something.
           Instance response = future.get();
         }
         
      • setInstanceLabelsCallable

        public final com.google.api.gax.rpc.UnaryCallable<SetInstanceLabelsRequest,​com.google.longrunning.Operation> setInstanceLabelsCallable()
        Replaces all the labels of an Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           SetInstanceLabelsRequest request =
               SetInstanceLabelsRequest.newBuilder()
                   .setName("name3373707")
                   .putAllLabels(new HashMap<String, String>())
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.setInstanceLabelsCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • updateInstanceMetadataItems

        public final UpdateInstanceMetadataItemsResponse updateInstanceMetadataItems​(UpdateInstanceMetadataItemsRequest request)
        Add/update metadata items for an instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           UpdateInstanceMetadataItemsRequest request =
               UpdateInstanceMetadataItemsRequest.newBuilder()
                   .setName("name3373707")
                   .putAllItems(new HashMap<String, String>())
                   .build();
           UpdateInstanceMetadataItemsResponse response =
               notebookServiceClient.updateInstanceMetadataItems(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
      • updateInstanceMetadataItemsCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateInstanceMetadataItemsRequest,​UpdateInstanceMetadataItemsResponse> updateInstanceMetadataItemsCallable()
        Add/update metadata items for an instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           UpdateInstanceMetadataItemsRequest request =
               UpdateInstanceMetadataItemsRequest.newBuilder()
                   .setName("name3373707")
                   .putAllItems(new HashMap<String, String>())
                   .build();
           ApiFuture<UpdateInstanceMetadataItemsResponse> future =
               notebookServiceClient.updateInstanceMetadataItemsCallable().futureCall(request);
           // Do something.
           UpdateInstanceMetadataItemsResponse response = future.get();
         }
         
      • deleteInstanceAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteInstanceAsync​(String name)
        Deletes a single Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String name = "name3373707";
           notebookServiceClient.deleteInstanceAsync(name).get();
         }
         
        Parameters:
        name - Required. Format: `projects/{project_id}/locations/{location}/instances/{instance_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteInstanceAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteInstanceAsync​(DeleteInstanceRequest request)
        Deletes a single Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           DeleteInstanceRequest request =
               DeleteInstanceRequest.newBuilder().setName("name3373707").build();
           notebookServiceClient.deleteInstanceAsync(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
      • deleteInstanceOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<DeleteInstanceRequest,​com.google.protobuf.Empty,​OperationMetadata> deleteInstanceOperationCallable()
        Deletes a single Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           DeleteInstanceRequest request =
               DeleteInstanceRequest.newBuilder().setName("name3373707").build();
           OperationFuture<Empty, OperationMetadata> future =
               notebookServiceClient.deleteInstanceOperationCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • deleteInstanceCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteInstanceRequest,​com.google.longrunning.Operation> deleteInstanceCallable()
        Deletes a single Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           DeleteInstanceRequest request =
               DeleteInstanceRequest.newBuilder().setName("name3373707").build();
           ApiFuture<Operation> future =
               notebookServiceClient.deleteInstanceCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • startInstanceAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> startInstanceAsync​(StartInstanceRequest request)
        Starts a notebook instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           StartInstanceRequest request =
               StartInstanceRequest.newBuilder().setName("name3373707").build();
           Instance response = notebookServiceClient.startInstanceAsync(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
      • startInstanceOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<StartInstanceRequest,​Instance,​OperationMetadata> startInstanceOperationCallable()
        Starts a notebook instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           StartInstanceRequest request =
               StartInstanceRequest.newBuilder().setName("name3373707").build();
           OperationFuture<Instance, OperationMetadata> future =
               notebookServiceClient.startInstanceOperationCallable().futureCall(request);
           // Do something.
           Instance response = future.get();
         }
         
      • startInstanceCallable

        public final com.google.api.gax.rpc.UnaryCallable<StartInstanceRequest,​com.google.longrunning.Operation> startInstanceCallable()
        Starts a notebook instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           StartInstanceRequest request =
               StartInstanceRequest.newBuilder().setName("name3373707").build();
           ApiFuture<Operation> future =
               notebookServiceClient.startInstanceCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • stopInstanceAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> stopInstanceAsync​(StopInstanceRequest request)
        Stops a notebook instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           StopInstanceRequest request = StopInstanceRequest.newBuilder().setName("name3373707").build();
           Instance response = notebookServiceClient.stopInstanceAsync(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
      • stopInstanceOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<StopInstanceRequest,​Instance,​OperationMetadata> stopInstanceOperationCallable()
        Stops a notebook instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           StopInstanceRequest request = StopInstanceRequest.newBuilder().setName("name3373707").build();
           OperationFuture<Instance, OperationMetadata> future =
               notebookServiceClient.stopInstanceOperationCallable().futureCall(request);
           // Do something.
           Instance response = future.get();
         }
         
      • stopInstanceCallable

        public final com.google.api.gax.rpc.UnaryCallable<StopInstanceRequest,​com.google.longrunning.Operation> stopInstanceCallable()
        Stops a notebook instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           StopInstanceRequest request = StopInstanceRequest.newBuilder().setName("name3373707").build();
           ApiFuture<Operation> future =
               notebookServiceClient.stopInstanceCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • resetInstanceAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> resetInstanceAsync​(ResetInstanceRequest request)
        Resets a notebook instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ResetInstanceRequest request =
               ResetInstanceRequest.newBuilder().setName("name3373707").build();
           Instance response = notebookServiceClient.resetInstanceAsync(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
      • resetInstanceOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<ResetInstanceRequest,​Instance,​OperationMetadata> resetInstanceOperationCallable()
        Resets a notebook instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ResetInstanceRequest request =
               ResetInstanceRequest.newBuilder().setName("name3373707").build();
           OperationFuture<Instance, OperationMetadata> future =
               notebookServiceClient.resetInstanceOperationCallable().futureCall(request);
           // Do something.
           Instance response = future.get();
         }
         
      • resetInstanceCallable

        public final com.google.api.gax.rpc.UnaryCallable<ResetInstanceRequest,​com.google.longrunning.Operation> resetInstanceCallable()
        Resets a notebook instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ResetInstanceRequest request =
               ResetInstanceRequest.newBuilder().setName("name3373707").build();
           ApiFuture<Operation> future =
               notebookServiceClient.resetInstanceCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • reportInstanceInfoAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> reportInstanceInfoAsync​(ReportInstanceInfoRequest request)
        Allows notebook instances to report their latest instance information to the Notebooks API server. The server will merge the reported information to the instance metadata store. Do not use this method directly.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ReportInstanceInfoRequest request =
               ReportInstanceInfoRequest.newBuilder()
                   .setName("name3373707")
                   .setVmId("vmId3622450")
                   .putAllMetadata(new HashMap<String, String>())
                   .build();
           Instance response = notebookServiceClient.reportInstanceInfoAsync(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
      • reportInstanceInfoOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<ReportInstanceInfoRequest,​Instance,​OperationMetadata> reportInstanceInfoOperationCallable()
        Allows notebook instances to report their latest instance information to the Notebooks API server. The server will merge the reported information to the instance metadata store. Do not use this method directly.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ReportInstanceInfoRequest request =
               ReportInstanceInfoRequest.newBuilder()
                   .setName("name3373707")
                   .setVmId("vmId3622450")
                   .putAllMetadata(new HashMap<String, String>())
                   .build();
           OperationFuture<Instance, OperationMetadata> future =
               notebookServiceClient.reportInstanceInfoOperationCallable().futureCall(request);
           // Do something.
           Instance response = future.get();
         }
         
      • reportInstanceInfoCallable

        public final com.google.api.gax.rpc.UnaryCallable<ReportInstanceInfoRequest,​com.google.longrunning.Operation> reportInstanceInfoCallable()
        Allows notebook instances to report their latest instance information to the Notebooks API server. The server will merge the reported information to the instance metadata store. Do not use this method directly.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ReportInstanceInfoRequest request =
               ReportInstanceInfoRequest.newBuilder()
                   .setName("name3373707")
                   .setVmId("vmId3622450")
                   .putAllMetadata(new HashMap<String, String>())
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.reportInstanceInfoCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • isInstanceUpgradeable

        public final IsInstanceUpgradeableResponse isInstanceUpgradeable​(IsInstanceUpgradeableRequest request)
        Check if a notebook instance is upgradable.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           IsInstanceUpgradeableRequest request =
               IsInstanceUpgradeableRequest.newBuilder()
                   .setNotebookInstance("notebookInstance-544239728")
                   .setType(UpgradeType.forNumber(0))
                   .build();
           IsInstanceUpgradeableResponse response = notebookServiceClient.isInstanceUpgradeable(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
      • isInstanceUpgradeableCallable

        public final com.google.api.gax.rpc.UnaryCallable<IsInstanceUpgradeableRequest,​IsInstanceUpgradeableResponse> isInstanceUpgradeableCallable()
        Check if a notebook instance is upgradable.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           IsInstanceUpgradeableRequest request =
               IsInstanceUpgradeableRequest.newBuilder()
                   .setNotebookInstance("notebookInstance-544239728")
                   .setType(UpgradeType.forNumber(0))
                   .build();
           ApiFuture<IsInstanceUpgradeableResponse> future =
               notebookServiceClient.isInstanceUpgradeableCallable().futureCall(request);
           // Do something.
           IsInstanceUpgradeableResponse response = future.get();
         }
         
      • getInstanceHealth

        public final GetInstanceHealthResponse getInstanceHealth​(InstanceName name)
        Check if a notebook instance is healthy.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           InstanceName name = InstanceName.of("[PROJECT]", "[INSTANCE]");
           GetInstanceHealthResponse response = notebookServiceClient.getInstanceHealth(name);
         }
         
        Parameters:
        name - Required. Format: `projects/{project_id}/locations/{location}/instances/{instance_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getInstanceHealth

        public final GetInstanceHealthResponse getInstanceHealth​(String name)
        Check if a notebook instance is healthy.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String name = InstanceName.of("[PROJECT]", "[INSTANCE]").toString();
           GetInstanceHealthResponse response = notebookServiceClient.getInstanceHealth(name);
         }
         
        Parameters:
        name - Required. Format: `projects/{project_id}/locations/{location}/instances/{instance_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getInstanceHealth

        public final GetInstanceHealthResponse getInstanceHealth​(GetInstanceHealthRequest request)
        Check if a notebook instance is healthy.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           GetInstanceHealthRequest request =
               GetInstanceHealthRequest.newBuilder()
                   .setName(InstanceName.of("[PROJECT]", "[INSTANCE]").toString())
                   .build();
           GetInstanceHealthResponse response = notebookServiceClient.getInstanceHealth(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
      • getInstanceHealthCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetInstanceHealthRequest,​GetInstanceHealthResponse> getInstanceHealthCallable()
        Check if a notebook instance is healthy.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           GetInstanceHealthRequest request =
               GetInstanceHealthRequest.newBuilder()
                   .setName(InstanceName.of("[PROJECT]", "[INSTANCE]").toString())
                   .build();
           ApiFuture<GetInstanceHealthResponse> future =
               notebookServiceClient.getInstanceHealthCallable().futureCall(request);
           // Do something.
           GetInstanceHealthResponse response = future.get();
         }
         
      • upgradeInstanceAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> upgradeInstanceAsync​(UpgradeInstanceRequest request)
        Upgrades a notebook instance to the latest version.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           UpgradeInstanceRequest request =
               UpgradeInstanceRequest.newBuilder()
                   .setName("name3373707")
                   .setType(UpgradeType.forNumber(0))
                   .build();
           Instance response = notebookServiceClient.upgradeInstanceAsync(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
      • upgradeInstanceOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<UpgradeInstanceRequest,​Instance,​OperationMetadata> upgradeInstanceOperationCallable()
        Upgrades a notebook instance to the latest version.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           UpgradeInstanceRequest request =
               UpgradeInstanceRequest.newBuilder()
                   .setName("name3373707")
                   .setType(UpgradeType.forNumber(0))
                   .build();
           OperationFuture<Instance, OperationMetadata> future =
               notebookServiceClient.upgradeInstanceOperationCallable().futureCall(request);
           // Do something.
           Instance response = future.get();
         }
         
      • upgradeInstanceCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpgradeInstanceRequest,​com.google.longrunning.Operation> upgradeInstanceCallable()
        Upgrades a notebook instance to the latest version.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           UpgradeInstanceRequest request =
               UpgradeInstanceRequest.newBuilder()
                   .setName("name3373707")
                   .setType(UpgradeType.forNumber(0))
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.upgradeInstanceCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • rollbackInstanceAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> rollbackInstanceAsync​(RollbackInstanceRequest request)
        Rollbacks a notebook instance to the previous version.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           RollbackInstanceRequest request =
               RollbackInstanceRequest.newBuilder()
                   .setName("name3373707")
                   .setTargetSnapshot("targetSnapshot-1307211147")
                   .build();
           Instance response = notebookServiceClient.rollbackInstanceAsync(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
      • rollbackInstanceOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<RollbackInstanceRequest,​Instance,​OperationMetadata> rollbackInstanceOperationCallable()
        Rollbacks a notebook instance to the previous version.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           RollbackInstanceRequest request =
               RollbackInstanceRequest.newBuilder()
                   .setName("name3373707")
                   .setTargetSnapshot("targetSnapshot-1307211147")
                   .build();
           OperationFuture<Instance, OperationMetadata> future =
               notebookServiceClient.rollbackInstanceOperationCallable().futureCall(request);
           // Do something.
           Instance response = future.get();
         }
         
      • rollbackInstanceCallable

        public final com.google.api.gax.rpc.UnaryCallable<RollbackInstanceRequest,​com.google.longrunning.Operation> rollbackInstanceCallable()
        Rollbacks a notebook instance to the previous version.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           RollbackInstanceRequest request =
               RollbackInstanceRequest.newBuilder()
                   .setName("name3373707")
                   .setTargetSnapshot("targetSnapshot-1307211147")
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.rollbackInstanceCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • diagnoseInstanceAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> diagnoseInstanceAsync​(InstanceName name,
                                                                                                                            DiagnosticConfig diagnosticConfig)
        Creates a Diagnostic File and runs Diagnostic Tool given an Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           InstanceName name = InstanceName.of("[PROJECT]", "[INSTANCE]");
           DiagnosticConfig diagnosticConfig = DiagnosticConfig.newBuilder().build();
           Instance response = notebookServiceClient.diagnoseInstanceAsync(name, diagnosticConfig).get();
         }
         
        Parameters:
        name - Required. Format: `projects/{project_id}/locations/{location}/instances/{instance_id}`
        diagnosticConfig - Required. Defines flags that are used to run the diagnostic tool
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • diagnoseInstanceAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> diagnoseInstanceAsync​(String name,
                                                                                                                            DiagnosticConfig diagnosticConfig)
        Creates a Diagnostic File and runs Diagnostic Tool given an Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String name = InstanceName.of("[PROJECT]", "[INSTANCE]").toString();
           DiagnosticConfig diagnosticConfig = DiagnosticConfig.newBuilder().build();
           Instance response = notebookServiceClient.diagnoseInstanceAsync(name, diagnosticConfig).get();
         }
         
        Parameters:
        name - Required. Format: `projects/{project_id}/locations/{location}/instances/{instance_id}`
        diagnosticConfig - Required. Defines flags that are used to run the diagnostic tool
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • diagnoseInstanceAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> diagnoseInstanceAsync​(DiagnoseInstanceRequest request)
        Creates a Diagnostic File and runs Diagnostic Tool given an Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           DiagnoseInstanceRequest request =
               DiagnoseInstanceRequest.newBuilder()
                   .setName(InstanceName.of("[PROJECT]", "[INSTANCE]").toString())
                   .setDiagnosticConfig(DiagnosticConfig.newBuilder().build())
                   .build();
           Instance response = notebookServiceClient.diagnoseInstanceAsync(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
      • diagnoseInstanceOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<DiagnoseInstanceRequest,​Instance,​OperationMetadata> diagnoseInstanceOperationCallable()
        Creates a Diagnostic File and runs Diagnostic Tool given an Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           DiagnoseInstanceRequest request =
               DiagnoseInstanceRequest.newBuilder()
                   .setName(InstanceName.of("[PROJECT]", "[INSTANCE]").toString())
                   .setDiagnosticConfig(DiagnosticConfig.newBuilder().build())
                   .build();
           OperationFuture<Instance, OperationMetadata> future =
               notebookServiceClient.diagnoseInstanceOperationCallable().futureCall(request);
           // Do something.
           Instance response = future.get();
         }
         
      • diagnoseInstanceCallable

        public final com.google.api.gax.rpc.UnaryCallable<DiagnoseInstanceRequest,​com.google.longrunning.Operation> diagnoseInstanceCallable()
        Creates a Diagnostic File and runs Diagnostic Tool given an Instance.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           DiagnoseInstanceRequest request =
               DiagnoseInstanceRequest.newBuilder()
                   .setName(InstanceName.of("[PROJECT]", "[INSTANCE]").toString())
                   .setDiagnosticConfig(DiagnosticConfig.newBuilder().build())
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.diagnoseInstanceCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • upgradeInstanceInternalAsync

        public final com.google.api.gax.longrunning.OperationFuture<Instance,​OperationMetadata> upgradeInstanceInternalAsync​(UpgradeInstanceInternalRequest request)
        Allows notebook instances to call this endpoint to upgrade themselves. Do not use this method directly.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           UpgradeInstanceInternalRequest request =
               UpgradeInstanceInternalRequest.newBuilder()
                   .setName("name3373707")
                   .setVmId("vmId3622450")
                   .setType(UpgradeType.forNumber(0))
                   .build();
           Instance response = notebookServiceClient.upgradeInstanceInternalAsync(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
      • upgradeInstanceInternalOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<UpgradeInstanceInternalRequest,​Instance,​OperationMetadata> upgradeInstanceInternalOperationCallable()
        Allows notebook instances to call this endpoint to upgrade themselves. Do not use this method directly.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           UpgradeInstanceInternalRequest request =
               UpgradeInstanceInternalRequest.newBuilder()
                   .setName("name3373707")
                   .setVmId("vmId3622450")
                   .setType(UpgradeType.forNumber(0))
                   .build();
           OperationFuture<Instance, OperationMetadata> future =
               notebookServiceClient.upgradeInstanceInternalOperationCallable().futureCall(request);
           // Do something.
           Instance response = future.get();
         }
         
      • upgradeInstanceInternalCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpgradeInstanceInternalRequest,​com.google.longrunning.Operation> upgradeInstanceInternalCallable()
        Allows notebook instances to call this endpoint to upgrade themselves. Do not use this method directly.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           UpgradeInstanceInternalRequest request =
               UpgradeInstanceInternalRequest.newBuilder()
                   .setName("name3373707")
                   .setVmId("vmId3622450")
                   .setType(UpgradeType.forNumber(0))
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.upgradeInstanceInternalCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • listEnvironments

        public final NotebookServiceClient.ListEnvironmentsPagedResponse listEnvironments​(String parent)
        Lists environments in a 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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String parent = "parent-995424086";
           for (Environment element : notebookServiceClient.listEnvironments(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. Format: `projects/{project_id}/locations/{location}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listEnvironments

        public final NotebookServiceClient.ListEnvironmentsPagedResponse listEnvironments​(ListEnvironmentsRequest request)
        Lists environments in a 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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ListEnvironmentsRequest request =
               ListEnvironmentsRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           for (Environment element : notebookServiceClient.listEnvironments(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
      • listEnvironmentsPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListEnvironmentsRequest,​NotebookServiceClient.ListEnvironmentsPagedResponse> listEnvironmentsPagedCallable()
        Lists environments in a 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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ListEnvironmentsRequest request =
               ListEnvironmentsRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           ApiFuture<Environment> future =
               notebookServiceClient.listEnvironmentsPagedCallable().futureCall(request);
           // Do something.
           for (Environment element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listEnvironmentsCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListEnvironmentsRequest,​ListEnvironmentsResponse> listEnvironmentsCallable()
        Lists environments in a 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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ListEnvironmentsRequest request =
               ListEnvironmentsRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           while (true) {
             ListEnvironmentsResponse response =
                 notebookServiceClient.listEnvironmentsCallable().call(request);
             for (Environment element : response.getEnvironmentsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getEnvironment

        public final Environment getEnvironment​(String name)
        Gets details of a single Environment.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String name = "name3373707";
           Environment response = notebookServiceClient.getEnvironment(name);
         }
         
        Parameters:
        name - Required. Format: `projects/{project_id}/locations/{location}/environments/{environment_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getEnvironment

        public final Environment getEnvironment​(GetEnvironmentRequest request)
        Gets details of a single Environment.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           GetEnvironmentRequest request =
               GetEnvironmentRequest.newBuilder().setName("name3373707").build();
           Environment response = notebookServiceClient.getEnvironment(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
      • getEnvironmentCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetEnvironmentRequest,​Environment> getEnvironmentCallable()
        Gets details of a single Environment.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           GetEnvironmentRequest request =
               GetEnvironmentRequest.newBuilder().setName("name3373707").build();
           ApiFuture<Environment> future =
               notebookServiceClient.getEnvironmentCallable().futureCall(request);
           // Do something.
           Environment response = future.get();
         }
         
      • createEnvironmentAsync

        public final com.google.api.gax.longrunning.OperationFuture<Environment,​OperationMetadata> createEnvironmentAsync​(String parent,
                                                                                                                                Environment environment,
                                                                                                                                String environmentId)
        Creates a new Environment.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String parent = "parent-995424086";
           Environment environment = Environment.newBuilder().build();
           String environmentId = "environmentId-950205810";
           Environment response =
               notebookServiceClient.createEnvironmentAsync(parent, environment, environmentId).get();
         }
         
        Parameters:
        parent - Required. Format: `projects/{project_id}/locations/{location}`
        environment - Required. The environment to be created.
        environmentId - Required. User-defined unique ID of this environment. The `environment_id` must be 1 to 63 characters long and contain only lowercase letters, numeric characters, and dashes. The first character must be a lowercase letter and the last character cannot be a dash.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createEnvironmentAsync

        public final com.google.api.gax.longrunning.OperationFuture<Environment,​OperationMetadata> createEnvironmentAsync​(CreateEnvironmentRequest request)
        Creates a new Environment.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           CreateEnvironmentRequest request =
               CreateEnvironmentRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setEnvironmentId("environmentId-950205810")
                   .setEnvironment(Environment.newBuilder().build())
                   .build();
           Environment response = notebookServiceClient.createEnvironmentAsync(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
      • createEnvironmentOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<CreateEnvironmentRequest,​Environment,​OperationMetadata> createEnvironmentOperationCallable()
        Creates a new Environment.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           CreateEnvironmentRequest request =
               CreateEnvironmentRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setEnvironmentId("environmentId-950205810")
                   .setEnvironment(Environment.newBuilder().build())
                   .build();
           OperationFuture<Environment, OperationMetadata> future =
               notebookServiceClient.createEnvironmentOperationCallable().futureCall(request);
           // Do something.
           Environment response = future.get();
         }
         
      • createEnvironmentCallable

        public final com.google.api.gax.rpc.UnaryCallable<CreateEnvironmentRequest,​com.google.longrunning.Operation> createEnvironmentCallable()
        Creates a new Environment.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           CreateEnvironmentRequest request =
               CreateEnvironmentRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setEnvironmentId("environmentId-950205810")
                   .setEnvironment(Environment.newBuilder().build())
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.createEnvironmentCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • deleteEnvironmentAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteEnvironmentAsync​(String name)
        Deletes a single Environment.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String name = "name3373707";
           notebookServiceClient.deleteEnvironmentAsync(name).get();
         }
         
        Parameters:
        name - Required. Format: `projects/{project_id}/locations/{location}/environments/{environment_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteEnvironmentAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteEnvironmentAsync​(DeleteEnvironmentRequest request)
        Deletes a single Environment.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           DeleteEnvironmentRequest request =
               DeleteEnvironmentRequest.newBuilder().setName("name3373707").build();
           notebookServiceClient.deleteEnvironmentAsync(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
      • deleteEnvironmentOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<DeleteEnvironmentRequest,​com.google.protobuf.Empty,​OperationMetadata> deleteEnvironmentOperationCallable()
        Deletes a single Environment.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           DeleteEnvironmentRequest request =
               DeleteEnvironmentRequest.newBuilder().setName("name3373707").build();
           OperationFuture<Empty, OperationMetadata> future =
               notebookServiceClient.deleteEnvironmentOperationCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • deleteEnvironmentCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteEnvironmentRequest,​com.google.longrunning.Operation> deleteEnvironmentCallable()
        Deletes a single Environment.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           DeleteEnvironmentRequest request =
               DeleteEnvironmentRequest.newBuilder().setName("name3373707").build();
           ApiFuture<Operation> future =
               notebookServiceClient.deleteEnvironmentCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • listSchedules

        public final NotebookServiceClient.ListSchedulesPagedResponse listSchedules​(ScheduleName parent)
        Lists schedules in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ScheduleName parent = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]");
           for (Schedule element : notebookServiceClient.listSchedules(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. Format: `parent=projects/{project_id}/locations/{location}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listSchedules

        public final NotebookServiceClient.ListSchedulesPagedResponse listSchedules​(String parent)
        Lists schedules in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String parent = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString();
           for (Schedule element : notebookServiceClient.listSchedules(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. Format: `parent=projects/{project_id}/locations/{location}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listSchedules

        public final NotebookServiceClient.ListSchedulesPagedResponse listSchedules​(ListSchedulesRequest request)
        Lists schedules in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ListSchedulesRequest request =
               ListSchedulesRequest.newBuilder()
                   .setParent(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           for (Schedule element : notebookServiceClient.listSchedules(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
      • listSchedulesPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListSchedulesRequest,​NotebookServiceClient.ListSchedulesPagedResponse> listSchedulesPagedCallable()
        Lists schedules in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ListSchedulesRequest request =
               ListSchedulesRequest.newBuilder()
                   .setParent(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           ApiFuture<Schedule> future =
               notebookServiceClient.listSchedulesPagedCallable().futureCall(request);
           // Do something.
           for (Schedule element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listSchedulesCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListSchedulesRequest,​ListSchedulesResponse> listSchedulesCallable()
        Lists schedules in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ListSchedulesRequest request =
               ListSchedulesRequest.newBuilder()
                   .setParent(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           while (true) {
             ListSchedulesResponse response =
                 notebookServiceClient.listSchedulesCallable().call(request);
             for (Schedule element : response.getSchedulesList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getSchedule

        public final Schedule getSchedule​(ScheduleName name)
        Gets details of schedule

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ScheduleName name = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]");
           Schedule response = notebookServiceClient.getSchedule(name);
         }
         
        Parameters:
        name - Required. Format: `projects/{project_id}/locations/{location}/schedules/{schedule_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getSchedule

        public final Schedule getSchedule​(String name)
        Gets details of schedule

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String name = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString();
           Schedule response = notebookServiceClient.getSchedule(name);
         }
         
        Parameters:
        name - Required. Format: `projects/{project_id}/locations/{location}/schedules/{schedule_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getSchedule

        public final Schedule getSchedule​(GetScheduleRequest request)
        Gets details of schedule

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           GetScheduleRequest request =
               GetScheduleRequest.newBuilder()
                   .setName(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
                   .build();
           Schedule response = notebookServiceClient.getSchedule(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
      • getScheduleCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetScheduleRequest,​Schedule> getScheduleCallable()
        Gets details of schedule

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           GetScheduleRequest request =
               GetScheduleRequest.newBuilder()
                   .setName(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
                   .build();
           ApiFuture<Schedule> future = notebookServiceClient.getScheduleCallable().futureCall(request);
           // Do something.
           Schedule response = future.get();
         }
         
      • deleteScheduleAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteScheduleAsync​(ScheduleName name)
        Deletes schedule and all underlying jobs

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ScheduleName name = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]");
           notebookServiceClient.deleteScheduleAsync(name).get();
         }
         
        Parameters:
        name - Required. Format: `projects/{project_id}/locations/{location}/schedules/{schedule_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteScheduleAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteScheduleAsync​(String name)
        Deletes schedule and all underlying jobs

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String name = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString();
           notebookServiceClient.deleteScheduleAsync(name).get();
         }
         
        Parameters:
        name - Required. Format: `projects/{project_id}/locations/{location}/schedules/{schedule_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteScheduleAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteScheduleAsync​(DeleteScheduleRequest request)
        Deletes schedule and all underlying jobs

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           DeleteScheduleRequest request =
               DeleteScheduleRequest.newBuilder()
                   .setName(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
                   .build();
           notebookServiceClient.deleteScheduleAsync(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
      • deleteScheduleOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<DeleteScheduleRequest,​com.google.protobuf.Empty,​OperationMetadata> deleteScheduleOperationCallable()
        Deletes schedule and all underlying jobs

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           DeleteScheduleRequest request =
               DeleteScheduleRequest.newBuilder()
                   .setName(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
                   .build();
           OperationFuture<Empty, OperationMetadata> future =
               notebookServiceClient.deleteScheduleOperationCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • deleteScheduleCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteScheduleRequest,​com.google.longrunning.Operation> deleteScheduleCallable()
        Deletes schedule and all underlying jobs

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           DeleteScheduleRequest request =
               DeleteScheduleRequest.newBuilder()
                   .setName(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.deleteScheduleCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • createScheduleAsync

        public final com.google.api.gax.longrunning.OperationFuture<Schedule,​OperationMetadata> createScheduleAsync​(ScheduleName parent,
                                                                                                                          Schedule schedule,
                                                                                                                          String scheduleId)
        Creates a new Scheduled Notebook in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ScheduleName parent = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]");
           Schedule schedule = Schedule.newBuilder().build();
           String scheduleId = "scheduleId-687058414";
           Schedule response =
               notebookServiceClient.createScheduleAsync(parent, schedule, scheduleId).get();
         }
         
        Parameters:
        parent - Required. Format: `parent=projects/{project_id}/locations/{location}`
        schedule - Required. The schedule to be created.
        scheduleId - Required. User-defined unique ID of this schedule.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createScheduleAsync

        public final com.google.api.gax.longrunning.OperationFuture<Schedule,​OperationMetadata> createScheduleAsync​(String parent,
                                                                                                                          Schedule schedule,
                                                                                                                          String scheduleId)
        Creates a new Scheduled Notebook in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String parent = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString();
           Schedule schedule = Schedule.newBuilder().build();
           String scheduleId = "scheduleId-687058414";
           Schedule response =
               notebookServiceClient.createScheduleAsync(parent, schedule, scheduleId).get();
         }
         
        Parameters:
        parent - Required. Format: `parent=projects/{project_id}/locations/{location}`
        schedule - Required. The schedule to be created.
        scheduleId - Required. User-defined unique ID of this schedule.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createScheduleAsync

        public final com.google.api.gax.longrunning.OperationFuture<Schedule,​OperationMetadata> createScheduleAsync​(CreateScheduleRequest request)
        Creates a new Scheduled Notebook in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           CreateScheduleRequest request =
               CreateScheduleRequest.newBuilder()
                   .setParent(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
                   .setScheduleId("scheduleId-687058414")
                   .setSchedule(Schedule.newBuilder().build())
                   .build();
           Schedule response = notebookServiceClient.createScheduleAsync(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
      • createScheduleOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<CreateScheduleRequest,​Schedule,​OperationMetadata> createScheduleOperationCallable()
        Creates a new Scheduled Notebook in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           CreateScheduleRequest request =
               CreateScheduleRequest.newBuilder()
                   .setParent(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
                   .setScheduleId("scheduleId-687058414")
                   .setSchedule(Schedule.newBuilder().build())
                   .build();
           OperationFuture<Schedule, OperationMetadata> future =
               notebookServiceClient.createScheduleOperationCallable().futureCall(request);
           // Do something.
           Schedule response = future.get();
         }
         
      • createScheduleCallable

        public final com.google.api.gax.rpc.UnaryCallable<CreateScheduleRequest,​com.google.longrunning.Operation> createScheduleCallable()
        Creates a new Scheduled Notebook in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           CreateScheduleRequest request =
               CreateScheduleRequest.newBuilder()
                   .setParent(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
                   .setScheduleId("scheduleId-687058414")
                   .setSchedule(Schedule.newBuilder().build())
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.createScheduleCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • triggerScheduleAsync

        public final com.google.api.gax.longrunning.OperationFuture<Schedule,​OperationMetadata> triggerScheduleAsync​(TriggerScheduleRequest request)
        Triggers execution of an existing schedule.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           TriggerScheduleRequest request =
               TriggerScheduleRequest.newBuilder()
                   .setName(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
                   .build();
           Schedule response = notebookServiceClient.triggerScheduleAsync(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
      • triggerScheduleOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<TriggerScheduleRequest,​Schedule,​OperationMetadata> triggerScheduleOperationCallable()
        Triggers execution of an existing schedule.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           TriggerScheduleRequest request =
               TriggerScheduleRequest.newBuilder()
                   .setName(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
                   .build();
           OperationFuture<Schedule, OperationMetadata> future =
               notebookServiceClient.triggerScheduleOperationCallable().futureCall(request);
           // Do something.
           Schedule response = future.get();
         }
         
      • triggerScheduleCallable

        public final com.google.api.gax.rpc.UnaryCallable<TriggerScheduleRequest,​com.google.longrunning.Operation> triggerScheduleCallable()
        Triggers execution of an existing schedule.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           TriggerScheduleRequest request =
               TriggerScheduleRequest.newBuilder()
                   .setName(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.triggerScheduleCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • listExecutions

        public final NotebookServiceClient.ListExecutionsPagedResponse listExecutions​(ExecutionName parent)
        Lists executions in a given project and location

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ExecutionName parent = ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]");
           for (Execution element : notebookServiceClient.listExecutions(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. Format: `parent=projects/{project_id}/locations/{location}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listExecutions

        public final NotebookServiceClient.ListExecutionsPagedResponse listExecutions​(String parent)
        Lists executions in a given project and location

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String parent = ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]").toString();
           for (Execution element : notebookServiceClient.listExecutions(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. Format: `parent=projects/{project_id}/locations/{location}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listExecutions

        public final NotebookServiceClient.ListExecutionsPagedResponse listExecutions​(ListExecutionsRequest request)
        Lists executions in a given project and location

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ListExecutionsRequest request =
               ListExecutionsRequest.newBuilder()
                   .setParent(ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           for (Execution element : notebookServiceClient.listExecutions(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
      • listExecutionsPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListExecutionsRequest,​NotebookServiceClient.ListExecutionsPagedResponse> listExecutionsPagedCallable()
        Lists executions in a given project and location

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ListExecutionsRequest request =
               ListExecutionsRequest.newBuilder()
                   .setParent(ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           ApiFuture<Execution> future =
               notebookServiceClient.listExecutionsPagedCallable().futureCall(request);
           // Do something.
           for (Execution element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listExecutionsCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListExecutionsRequest,​ListExecutionsResponse> listExecutionsCallable()
        Lists executions in a given project and location

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ListExecutionsRequest request =
               ListExecutionsRequest.newBuilder()
                   .setParent(ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           while (true) {
             ListExecutionsResponse response =
                 notebookServiceClient.listExecutionsCallable().call(request);
             for (Execution element : response.getExecutionsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getExecution

        public final Execution getExecution​(ExecutionName name)
        Gets details of executions

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ExecutionName name = ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]");
           Execution response = notebookServiceClient.getExecution(name);
         }
         
        Parameters:
        name - Required. Format: `projects/{project_id}/locations/{location}/executions/{execution_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getExecution

        public final Execution getExecution​(String name)
        Gets details of executions

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String name = ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]").toString();
           Execution response = notebookServiceClient.getExecution(name);
         }
         
        Parameters:
        name - Required. Format: `projects/{project_id}/locations/{location}/executions/{execution_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getExecution

        public final Execution getExecution​(GetExecutionRequest request)
        Gets details of executions

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           GetExecutionRequest request =
               GetExecutionRequest.newBuilder()
                   .setName(ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]").toString())
                   .build();
           Execution response = notebookServiceClient.getExecution(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
      • getExecutionCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetExecutionRequest,​Execution> getExecutionCallable()
        Gets details of executions

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           GetExecutionRequest request =
               GetExecutionRequest.newBuilder()
                   .setName(ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]").toString())
                   .build();
           ApiFuture<Execution> future =
               notebookServiceClient.getExecutionCallable().futureCall(request);
           // Do something.
           Execution response = future.get();
         }
         
      • deleteExecutionAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteExecutionAsync​(ExecutionName name)
        Deletes execution

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ExecutionName name = ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]");
           notebookServiceClient.deleteExecutionAsync(name).get();
         }
         
        Parameters:
        name - Required. Format: `projects/{project_id}/locations/{location}/executions/{execution_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteExecutionAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteExecutionAsync​(String name)
        Deletes execution

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String name = ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]").toString();
           notebookServiceClient.deleteExecutionAsync(name).get();
         }
         
        Parameters:
        name - Required. Format: `projects/{project_id}/locations/{location}/executions/{execution_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteExecutionAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteExecutionAsync​(DeleteExecutionRequest request)
        Deletes execution

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           DeleteExecutionRequest request =
               DeleteExecutionRequest.newBuilder()
                   .setName(ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]").toString())
                   .build();
           notebookServiceClient.deleteExecutionAsync(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
      • deleteExecutionOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<DeleteExecutionRequest,​com.google.protobuf.Empty,​OperationMetadata> deleteExecutionOperationCallable()
        Deletes execution

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           DeleteExecutionRequest request =
               DeleteExecutionRequest.newBuilder()
                   .setName(ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]").toString())
                   .build();
           OperationFuture<Empty, OperationMetadata> future =
               notebookServiceClient.deleteExecutionOperationCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • deleteExecutionCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteExecutionRequest,​com.google.longrunning.Operation> deleteExecutionCallable()
        Deletes execution

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           DeleteExecutionRequest request =
               DeleteExecutionRequest.newBuilder()
                   .setName(ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]").toString())
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.deleteExecutionCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • createExecutionAsync

        public final com.google.api.gax.longrunning.OperationFuture<Execution,​OperationMetadata> createExecutionAsync​(ExecutionName parent,
                                                                                                                            Execution execution,
                                                                                                                            String executionId)
        Creates a new Execution in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ExecutionName parent = ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]");
           Execution execution = Execution.newBuilder().build();
           String executionId = "executionId-454906285";
           Execution response =
               notebookServiceClient.createExecutionAsync(parent, execution, executionId).get();
         }
         
        Parameters:
        parent - Required. Format: `parent=projects/{project_id}/locations/{location}`
        execution - Required. The execution to be created.
        executionId - Required. User-defined unique ID of this execution.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createExecutionAsync

        public final com.google.api.gax.longrunning.OperationFuture<Execution,​OperationMetadata> createExecutionAsync​(String parent,
                                                                                                                            Execution execution,
                                                                                                                            String executionId)
        Creates a new Execution in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           String parent = ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]").toString();
           Execution execution = Execution.newBuilder().build();
           String executionId = "executionId-454906285";
           Execution response =
               notebookServiceClient.createExecutionAsync(parent, execution, executionId).get();
         }
         
        Parameters:
        parent - Required. Format: `parent=projects/{project_id}/locations/{location}`
        execution - Required. The execution to be created.
        executionId - Required. User-defined unique ID of this execution.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createExecutionAsync

        public final com.google.api.gax.longrunning.OperationFuture<Execution,​OperationMetadata> createExecutionAsync​(CreateExecutionRequest request)
        Creates a new Execution in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           CreateExecutionRequest request =
               CreateExecutionRequest.newBuilder()
                   .setParent(ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]").toString())
                   .setExecutionId("executionId-454906285")
                   .setExecution(Execution.newBuilder().build())
                   .build();
           Execution response = notebookServiceClient.createExecutionAsync(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
      • createExecutionOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<CreateExecutionRequest,​Execution,​OperationMetadata> createExecutionOperationCallable()
        Creates a new Execution in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           CreateExecutionRequest request =
               CreateExecutionRequest.newBuilder()
                   .setParent(ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]").toString())
                   .setExecutionId("executionId-454906285")
                   .setExecution(Execution.newBuilder().build())
                   .build();
           OperationFuture<Execution, OperationMetadata> future =
               notebookServiceClient.createExecutionOperationCallable().futureCall(request);
           // Do something.
           Execution response = future.get();
         }
         
      • createExecutionCallable

        public final com.google.api.gax.rpc.UnaryCallable<CreateExecutionRequest,​com.google.longrunning.Operation> createExecutionCallable()
        Creates a new Execution in a given project and location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           CreateExecutionRequest request =
               CreateExecutionRequest.newBuilder()
                   .setParent(ExecutionName.of("[PROJECT]", "[LOCATION]", "[EXECUTION]").toString())
                   .setExecutionId("executionId-454906285")
                   .setExecution(Execution.newBuilder().build())
                   .build();
           ApiFuture<Operation> future =
               notebookServiceClient.createExecutionCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • listLocations

        public final NotebookServiceClient.ListLocationsPagedResponse listLocations​(com.google.cloud.location.ListLocationsRequest request)
        Lists information about the supported locations for this service.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ListLocationsRequest request =
               ListLocationsRequest.newBuilder()
                   .setName("name3373707")
                   .setFilter("filter-1274492040")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           for (Location element : notebookServiceClient.listLocations(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
      • listLocationsPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.ListLocationsRequest,​NotebookServiceClient.ListLocationsPagedResponse> listLocationsPagedCallable()
        Lists information about the supported locations for this service.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ListLocationsRequest request =
               ListLocationsRequest.newBuilder()
                   .setName("name3373707")
                   .setFilter("filter-1274492040")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           ApiFuture<Location> future =
               notebookServiceClient.listLocationsPagedCallable().futureCall(request);
           // Do something.
           for (Location element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listLocationsCallable

        public final com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.ListLocationsRequest,​com.google.cloud.location.ListLocationsResponse> listLocationsCallable()
        Lists information about the supported locations for this service.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           ListLocationsRequest request =
               ListLocationsRequest.newBuilder()
                   .setName("name3373707")
                   .setFilter("filter-1274492040")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           while (true) {
             ListLocationsResponse response =
                 notebookServiceClient.listLocationsCallable().call(request);
             for (Location element : response.getLocationsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getLocation

        public final com.google.cloud.location.Location getLocation​(com.google.cloud.location.GetLocationRequest request)
        Gets information about a location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
           Location response = notebookServiceClient.getLocation(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
      • getLocationCallable

        public final com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.GetLocationRequest,​com.google.cloud.location.Location> getLocationCallable()
        Gets information about a location.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
           ApiFuture<Location> future = notebookServiceClient.getLocationCallable().futureCall(request);
           // Do something.
           Location response = future.get();
         }
         
      • setIamPolicy

        public final com.google.iam.v1.Policy setIamPolicy​(com.google.iam.v1.SetIamPolicyRequest request)
        Sets the access control policy on the specified resource. Replacesany existing policy.

        Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           SetIamPolicyRequest request =
               SetIamPolicyRequest.newBuilder()
                   .setResource(RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString())
                   .setPolicy(Policy.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           Policy response = notebookServiceClient.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<com.google.iam.v1.SetIamPolicyRequest,​com.google.iam.v1.Policy> setIamPolicyCallable()
        Sets the access control policy on the specified resource. Replacesany existing policy.

        Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           SetIamPolicyRequest request =
               SetIamPolicyRequest.newBuilder()
                   .setResource(RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString())
                   .setPolicy(Policy.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           ApiFuture<Policy> future = notebookServiceClient.setIamPolicyCallable().futureCall(request);
           // Do something.
           Policy response = future.get();
         }
         
      • getIamPolicy

        public final com.google.iam.v1.Policy getIamPolicy​(com.google.iam.v1.GetIamPolicyRequest request)
        Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           GetIamPolicyRequest request =
               GetIamPolicyRequest.newBuilder()
                   .setResource(RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString())
                   .setOptions(GetPolicyOptions.newBuilder().build())
                   .build();
           Policy response = notebookServiceClient.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<com.google.iam.v1.GetIamPolicyRequest,​com.google.iam.v1.Policy> getIamPolicyCallable()
        Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           GetIamPolicyRequest request =
               GetIamPolicyRequest.newBuilder()
                   .setResource(RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString())
                   .setOptions(GetPolicyOptions.newBuilder().build())
                   .build();
           ApiFuture<Policy> future = notebookServiceClient.getIamPolicyCallable().futureCall(request);
           // Do something.
           Policy response = future.get();
         }
         
      • testIamPermissions

        public final com.google.iam.v1.TestIamPermissionsResponse testIamPermissions​(com.google.iam.v1.TestIamPermissionsRequest request)
        Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error.

        Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           TestIamPermissionsRequest request =
               TestIamPermissionsRequest.newBuilder()
                   .setResource(RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString())
                   .addAllPermissions(new ArrayList<String>())
                   .build();
           TestIamPermissionsResponse response = notebookServiceClient.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<com.google.iam.v1.TestIamPermissionsRequest,​com.google.iam.v1.TestIamPermissionsResponse> testIamPermissionsCallable()
        Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error.

        Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.

        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 (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
           TestIamPermissionsRequest request =
               TestIamPermissionsRequest.newBuilder()
                   .setResource(RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString())
                   .addAllPermissions(new ArrayList<String>())
                   .build();
           ApiFuture<TestIamPermissionsResponse> future =
               notebookServiceClient.testIamPermissionsCallable().futureCall(request);
           // Do something.
           TestIamPermissionsResponse 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