Class ConnectionServiceClient

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

    @Generated("by gapic-generator-java")
    public class ConnectionServiceClient
    extends Object
    implements com.google.api.gax.core.BackgroundResource
    Service Description: Manages external data source connections and credentials.

    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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
       LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
       Connection connection = Connection.newBuilder().build();
       String connectionId = "connectionId1923106969";
       Connection response =
           connectionServiceClient.createConnection(parent, connection, connectionId);
     }
     

    Note: close() needs to be called on the ConnectionServiceClient 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 ConnectionServiceSettings 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
     ConnectionServiceSettings connectionServiceSettings =
         ConnectionServiceSettings.newBuilder()
             .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
             .build();
     ConnectionServiceClient connectionServiceClient =
         ConnectionServiceClient.create(connectionServiceSettings);
     

    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
     ConnectionServiceSettings connectionServiceSettings =
         ConnectionServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
     ConnectionServiceClient connectionServiceClient =
         ConnectionServiceClient.create(connectionServiceSettings);
     

    To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:

    
     // 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
     ConnectionServiceSettings connectionServiceSettings =
         ConnectionServiceSettings.newHttpJsonBuilder().build();
     ConnectionServiceClient connectionServiceClient =
         ConnectionServiceClient.create(connectionServiceSettings);
     

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

    • Constructor Detail

      • ConnectionServiceClient

        protected ConnectionServiceClient​(ConnectionServiceSettings settings)
                                   throws IOException
        Constructs an instance of ConnectionServiceClient, 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 ConnectionServiceClient create​(ConnectionServiceStub stub)
        Constructs an instance of ConnectionServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(ConnectionServiceSettings).
      • createConnection

        public final Connection createConnection​(LocationName parent,
                                                 Connection connection,
                                                 String connectionId)
        Creates a new connection.

        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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           Connection connection = Connection.newBuilder().build();
           String connectionId = "connectionId1923106969";
           Connection response =
               connectionServiceClient.createConnection(parent, connection, connectionId);
         }
         
        Parameters:
        parent - Required. Parent resource name. Must be in the format `projects/{project_id}/locations/{location_id}`
        connection - Required. Connection to create.
        connectionId - Optional. Connection id that should be assigned to the created connection.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createConnection

        public final Connection createConnection​(String parent,
                                                 Connection connection,
                                                 String connectionId)
        Creates a new connection.

        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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           Connection connection = Connection.newBuilder().build();
           String connectionId = "connectionId1923106969";
           Connection response =
               connectionServiceClient.createConnection(parent, connection, connectionId);
         }
         
        Parameters:
        parent - Required. Parent resource name. Must be in the format `projects/{project_id}/locations/{location_id}`
        connection - Required. Connection to create.
        connectionId - Optional. Connection id that should be assigned to the created connection.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createConnection

        public final Connection createConnection​(CreateConnectionRequest request)
        Creates a new connection.

        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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           CreateConnectionRequest request =
               CreateConnectionRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setConnectionId("connectionId1923106969")
                   .setConnection(Connection.newBuilder().build())
                   .build();
           Connection response = connectionServiceClient.createConnection(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
      • createConnectionCallable

        public final com.google.api.gax.rpc.UnaryCallable<CreateConnectionRequest,​Connection> createConnectionCallable()
        Creates a new connection.

        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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           CreateConnectionRequest request =
               CreateConnectionRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setConnectionId("connectionId1923106969")
                   .setConnection(Connection.newBuilder().build())
                   .build();
           ApiFuture<Connection> future =
               connectionServiceClient.createConnectionCallable().futureCall(request);
           // Do something.
           Connection response = future.get();
         }
         
      • getConnection

        public final Connection getConnection​(ConnectionName name)
        Returns specified connection.

        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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           ConnectionName name = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]");
           Connection response = connectionServiceClient.getConnection(name);
         }
         
        Parameters:
        name - Required. Name of the requested connection, for example: `projects/{project_id}/locations/{location_id}/connections/{connection_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getConnection

        public final Connection getConnection​(String name)
        Returns specified connection.

        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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           String name = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString();
           Connection response = connectionServiceClient.getConnection(name);
         }
         
        Parameters:
        name - Required. Name of the requested connection, for example: `projects/{project_id}/locations/{location_id}/connections/{connection_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getConnection

        public final Connection getConnection​(GetConnectionRequest request)
        Returns specified connection.

        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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           GetConnectionRequest request =
               GetConnectionRequest.newBuilder()
                   .setName(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
                   .build();
           Connection response = connectionServiceClient.getConnection(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
      • getConnectionCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetConnectionRequest,​Connection> getConnectionCallable()
        Returns specified connection.

        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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           GetConnectionRequest request =
               GetConnectionRequest.newBuilder()
                   .setName(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
                   .build();
           ApiFuture<Connection> future =
               connectionServiceClient.getConnectionCallable().futureCall(request);
           // Do something.
           Connection response = future.get();
         }
         
      • listConnections

        public final ConnectionServiceClient.ListConnectionsPagedResponse listConnections​(LocationName parent)
        Returns a list of connections in the given 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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           for (Connection element : connectionServiceClient.listConnections(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. Parent resource name. Must be in the form: `projects/{project_id}/locations/{location_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listConnections

        public final ConnectionServiceClient.ListConnectionsPagedResponse listConnections​(String parent)
        Returns a list of connections in the given 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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           for (Connection element : connectionServiceClient.listConnections(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. Parent resource name. Must be in the form: `projects/{project_id}/locations/{location_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listConnections

        public final ConnectionServiceClient.ListConnectionsPagedResponse listConnections​(ListConnectionsRequest request)
        Returns a list of connections in the given 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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           ListConnectionsRequest request =
               ListConnectionsRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           for (Connection element : connectionServiceClient.listConnections(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
      • listConnectionsPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListConnectionsRequest,​ConnectionServiceClient.ListConnectionsPagedResponse> listConnectionsPagedCallable()
        Returns a list of connections in the given 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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           ListConnectionsRequest request =
               ListConnectionsRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           ApiFuture<Connection> future =
               connectionServiceClient.listConnectionsPagedCallable().futureCall(request);
           // Do something.
           for (Connection element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listConnectionsCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListConnectionsRequest,​ListConnectionsResponse> listConnectionsCallable()
        Returns a list of connections in the given 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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           ListConnectionsRequest request =
               ListConnectionsRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           while (true) {
             ListConnectionsResponse response =
                 connectionServiceClient.listConnectionsCallable().call(request);
             for (Connection element : response.getConnectionsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • updateConnection

        public final Connection updateConnection​(ConnectionName name,
                                                 Connection connection,
                                                 com.google.protobuf.FieldMask updateMask)
        Updates the specified connection. For security reasons, also resets credential if connection properties are in the update field mask.

        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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           ConnectionName name = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]");
           Connection connection = Connection.newBuilder().build();
           FieldMask updateMask = FieldMask.newBuilder().build();
           Connection response = connectionServiceClient.updateConnection(name, connection, updateMask);
         }
         
        Parameters:
        name - Required. Name of the connection to update, for example: `projects/{project_id}/locations/{location_id}/connections/{connection_id}`
        connection - Required. Connection containing the updated fields.
        updateMask - Required. Update mask for the connection fields to be updated.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateConnection

        public final Connection updateConnection​(String name,
                                                 Connection connection,
                                                 com.google.protobuf.FieldMask updateMask)
        Updates the specified connection. For security reasons, also resets credential if connection properties are in the update field mask.

        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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           String name = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString();
           Connection connection = Connection.newBuilder().build();
           FieldMask updateMask = FieldMask.newBuilder().build();
           Connection response = connectionServiceClient.updateConnection(name, connection, updateMask);
         }
         
        Parameters:
        name - Required. Name of the connection to update, for example: `projects/{project_id}/locations/{location_id}/connections/{connection_id}`
        connection - Required. Connection containing the updated fields.
        updateMask - Required. Update mask for the connection fields to be updated.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateConnection

        public final Connection updateConnection​(UpdateConnectionRequest request)
        Updates the specified connection. For security reasons, also resets credential if connection properties are in the update field mask.

        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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           UpdateConnectionRequest request =
               UpdateConnectionRequest.newBuilder()
                   .setName(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
                   .setConnection(Connection.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           Connection response = connectionServiceClient.updateConnection(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
      • updateConnectionCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateConnectionRequest,​Connection> updateConnectionCallable()
        Updates the specified connection. For security reasons, also resets credential if connection properties are in the update field mask.

        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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           UpdateConnectionRequest request =
               UpdateConnectionRequest.newBuilder()
                   .setName(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
                   .setConnection(Connection.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           ApiFuture<Connection> future =
               connectionServiceClient.updateConnectionCallable().futureCall(request);
           // Do something.
           Connection response = future.get();
         }
         
      • deleteConnection

        public final void deleteConnection​(ConnectionName name)
        Deletes connection and associated credential.

        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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           ConnectionName name = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]");
           connectionServiceClient.deleteConnection(name);
         }
         
        Parameters:
        name - Required. Name of the deleted connection, for example: `projects/{project_id}/locations/{location_id}/connections/{connection_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteConnection

        public final void deleteConnection​(String name)
        Deletes connection and associated credential.

        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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           String name = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString();
           connectionServiceClient.deleteConnection(name);
         }
         
        Parameters:
        name - Required. Name of the deleted connection, for example: `projects/{project_id}/locations/{location_id}/connections/{connection_id}`
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteConnection

        public final void deleteConnection​(DeleteConnectionRequest request)
        Deletes connection and associated credential.

        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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           DeleteConnectionRequest request =
               DeleteConnectionRequest.newBuilder()
                   .setName(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
                   .build();
           connectionServiceClient.deleteConnection(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
      • deleteConnectionCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteConnectionRequest,​com.google.protobuf.Empty> deleteConnectionCallable()
        Deletes connection and associated credential.

        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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           DeleteConnectionRequest request =
               DeleteConnectionRequest.newBuilder()
                   .setName(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
                   .build();
           ApiFuture<Empty> future =
               connectionServiceClient.deleteConnectionCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • getIamPolicy

        public final com.google.iam.v1.Policy getIamPolicy​(com.google.api.resourcenames.ResourceName resource,
                                                           com.google.iam.v1.GetPolicyOptions options)
        Gets the access control policy for a resource. Returns an empty policy if 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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           ResourceName resource = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]");
           GetPolicyOptions options = GetPolicyOptions.newBuilder().build();
           Policy response = connectionServiceClient.getIamPolicy(resource, options);
         }
         
        Parameters:
        resource - REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.
        options - OPTIONAL: A `GetPolicyOptions` object for specifying options to `GetIamPolicy`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getIamPolicy

        public final com.google.iam.v1.Policy getIamPolicy​(String resource,
                                                           com.google.iam.v1.GetPolicyOptions options)
        Gets the access control policy for a resource. Returns an empty policy if 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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           String resource = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString();
           GetPolicyOptions options = GetPolicyOptions.newBuilder().build();
           Policy response = connectionServiceClient.getIamPolicy(resource, options);
         }
         
        Parameters:
        resource - REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.
        options - OPTIONAL: A `GetPolicyOptions` object for specifying options to `GetIamPolicy`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • 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 policy if 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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           GetIamPolicyRequest request =
               GetIamPolicyRequest.newBuilder()
                   .setResource(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
                   .setOptions(GetPolicyOptions.newBuilder().build())
                   .build();
           Policy response = connectionServiceClient.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 policy if 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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           GetIamPolicyRequest request =
               GetIamPolicyRequest.newBuilder()
                   .setResource(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
                   .setOptions(GetPolicyOptions.newBuilder().build())
                   .build();
           ApiFuture<Policy> future = connectionServiceClient.getIamPolicyCallable().futureCall(request);
           // Do something.
           Policy response = future.get();
         }
         
      • setIamPolicy

        public final com.google.iam.v1.Policy setIamPolicy​(com.google.api.resourcenames.ResourceName resource,
                                                           com.google.iam.v1.Policy policy)
        Sets the access control policy on the specified resource. Replaces any 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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           ResourceName resource = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]");
           Policy policy = Policy.newBuilder().build();
           Policy response = connectionServiceClient.setIamPolicy(resource, policy);
         }
         
        Parameters:
        resource - REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.
        policy - REQUIRED: The complete policy to be applied to the `resource`. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud Platform services (such as Projects) might reject them.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • setIamPolicy

        public final com.google.iam.v1.Policy setIamPolicy​(String resource,
                                                           com.google.iam.v1.Policy policy)
        Sets the access control policy on the specified resource. Replaces any 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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           String resource = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString();
           Policy policy = Policy.newBuilder().build();
           Policy response = connectionServiceClient.setIamPolicy(resource, policy);
         }
         
        Parameters:
        resource - REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.
        policy - REQUIRED: The complete policy to be applied to the `resource`. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud Platform services (such as Projects) might reject them.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • setIamPolicy

        public final com.google.iam.v1.Policy setIamPolicy​(com.google.iam.v1.SetIamPolicyRequest request)
        Sets the access control policy on the specified resource. Replaces any 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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           SetIamPolicyRequest request =
               SetIamPolicyRequest.newBuilder()
                   .setResource(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
                   .setPolicy(Policy.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           Policy response = connectionServiceClient.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. Replaces any 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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           SetIamPolicyRequest request =
               SetIamPolicyRequest.newBuilder()
                   .setResource(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
                   .setPolicy(Policy.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           ApiFuture<Policy> future = connectionServiceClient.setIamPolicyCallable().futureCall(request);
           // Do something.
           Policy response = future.get();
         }
         
      • testIamPermissions

        public final com.google.iam.v1.TestIamPermissionsResponse testIamPermissions​(com.google.api.resourcenames.ResourceName resource,
                                                                                     List<String> permissions)
        Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error.

        Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. 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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           ResourceName resource = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]");
           List<String> permissions = new ArrayList<>();
           TestIamPermissionsResponse response =
               connectionServiceClient.testIamPermissions(resource, permissions);
         }
         
        Parameters:
        resource - REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field.
        permissions - The set of permissions to check for the `resource`. Permissions with wildcards (such as '*' or 'storage.*') are not allowed. For more information see [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • testIamPermissions

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

        Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. 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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           String resource = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString();
           List<String> permissions = new ArrayList<>();
           TestIamPermissionsResponse response =
               connectionServiceClient.testIamPermissions(resource, permissions);
         }
         
        Parameters:
        resource - REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field.
        permissions - The set of permissions to check for the `resource`. Permissions with wildcards (such as '*' or 'storage.*') are not allowed. For more information see [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • 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 the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error.

        Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. 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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           TestIamPermissionsRequest request =
               TestIamPermissionsRequest.newBuilder()
                   .setResource(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
                   .addAllPermissions(new ArrayList<String>())
                   .build();
           TestIamPermissionsResponse response = connectionServiceClient.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 the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error.

        Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. 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 (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
           TestIamPermissionsRequest request =
               TestIamPermissionsRequest.newBuilder()
                   .setResource(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
                   .addAllPermissions(new ArrayList<String>())
                   .build();
           ApiFuture<TestIamPermissionsResponse> future =
               connectionServiceClient.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