Class RegistrationServiceClient

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

    @Generated("by gapic-generator-java")
    public class RegistrationServiceClient
    extends Object
    implements com.google.api.gax.core.BackgroundResource
    Service Description: Service Directory API for registering services. It defines the following resource model:

    - The API has a collection of [Namespace][google.cloud.servicedirectory.v1.Namespace] resources, named `projects/*/locations/*/namespaces/*`.

    - Each Namespace has a collection of [Service][google.cloud.servicedirectory.v1.Service] resources, named `projects/*/locations/*/namespaces/*/services/*`.

    - Each Service has a collection of [Endpoint][google.cloud.servicedirectory.v1.Endpoint] resources, named `projects/*/locations/*/namespaces/*/services/*/endpoints/*`.

    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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
       LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
       Namespace namespace = Namespace.newBuilder().build();
       String namespaceId = "namespaceId790852566";
       Namespace response =
           registrationServiceClient.createNamespace(parent, namespace, namespaceId);
     }
     

    Note: close() needs to be called on the RegistrationServiceClient 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 RegistrationServiceSettings 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
     RegistrationServiceSettings registrationServiceSettings =
         RegistrationServiceSettings.newBuilder()
             .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
             .build();
     RegistrationServiceClient registrationServiceClient =
         RegistrationServiceClient.create(registrationServiceSettings);
     

    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
     RegistrationServiceSettings registrationServiceSettings =
         RegistrationServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
     RegistrationServiceClient registrationServiceClient =
         RegistrationServiceClient.create(registrationServiceSettings);
     

    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
     RegistrationServiceSettings registrationServiceSettings =
         RegistrationServiceSettings.newHttpJsonBuilder().build();
     RegistrationServiceClient registrationServiceClient =
         RegistrationServiceClient.create(registrationServiceSettings);
     

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

    • Constructor Detail

      • RegistrationServiceClient

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

        public final Namespace createNamespace​(LocationName parent,
                                               Namespace namespace,
                                               String namespaceId)
        Creates a namespace, and returns the new namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           Namespace namespace = Namespace.newBuilder().build();
           String namespaceId = "namespaceId790852566";
           Namespace response =
               registrationServiceClient.createNamespace(parent, namespace, namespaceId);
         }
         
        Parameters:
        parent - Required. The resource name of the project and location the namespace will be created in.
        namespace - Required. A namespace with initial fields set.
        namespaceId - Required. The Resource ID must be 1-63 characters long, and comply with <a href="https://www.ietf.org/rfc/rfc1035.txt" target="_blank">RFC1035</a>. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createNamespace

        public final Namespace createNamespace​(String parent,
                                               Namespace namespace,
                                               String namespaceId)
        Creates a namespace, and returns the new namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           Namespace namespace = Namespace.newBuilder().build();
           String namespaceId = "namespaceId790852566";
           Namespace response =
               registrationServiceClient.createNamespace(parent, namespace, namespaceId);
         }
         
        Parameters:
        parent - Required. The resource name of the project and location the namespace will be created in.
        namespace - Required. A namespace with initial fields set.
        namespaceId - Required. The Resource ID must be 1-63 characters long, and comply with <a href="https://www.ietf.org/rfc/rfc1035.txt" target="_blank">RFC1035</a>. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createNamespace

        public final Namespace createNamespace​(CreateNamespaceRequest request)
        Creates a namespace, and returns the new namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           CreateNamespaceRequest request =
               CreateNamespaceRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setNamespaceId("namespaceId790852566")
                   .setNamespace(Namespace.newBuilder().build())
                   .build();
           Namespace response = registrationServiceClient.createNamespace(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
      • createNamespaceCallable

        public final com.google.api.gax.rpc.UnaryCallable<CreateNamespaceRequest,​Namespace> createNamespaceCallable()
        Creates a namespace, and returns the new namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           CreateNamespaceRequest request =
               CreateNamespaceRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setNamespaceId("namespaceId790852566")
                   .setNamespace(Namespace.newBuilder().build())
                   .build();
           ApiFuture<Namespace> future =
               registrationServiceClient.createNamespaceCallable().futureCall(request);
           // Do something.
           Namespace response = future.get();
         }
         
      • listNamespaces

        public final RegistrationServiceClient.ListNamespacesPagedResponse listNamespaces​(LocationName parent)
        Lists all namespaces.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           for (Namespace element : registrationServiceClient.listNamespaces(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The resource name of the project and location whose namespaces you'd like to list.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listNamespaces

        public final RegistrationServiceClient.ListNamespacesPagedResponse listNamespaces​(String parent)
        Lists all namespaces.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           for (Namespace element : registrationServiceClient.listNamespaces(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The resource name of the project and location whose namespaces you'd like to list.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listNamespaces

        public final RegistrationServiceClient.ListNamespacesPagedResponse listNamespaces​(ListNamespacesRequest request)
        Lists all namespaces.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           ListNamespacesRequest request =
               ListNamespacesRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           for (Namespace element : registrationServiceClient.listNamespaces(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
      • listNamespacesPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListNamespacesRequest,​RegistrationServiceClient.ListNamespacesPagedResponse> listNamespacesPagedCallable()
        Lists all namespaces.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           ListNamespacesRequest request =
               ListNamespacesRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           ApiFuture<Namespace> future =
               registrationServiceClient.listNamespacesPagedCallable().futureCall(request);
           // Do something.
           for (Namespace element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listNamespacesCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListNamespacesRequest,​ListNamespacesResponse> listNamespacesCallable()
        Lists all namespaces.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           ListNamespacesRequest request =
               ListNamespacesRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           while (true) {
             ListNamespacesResponse response =
                 registrationServiceClient.listNamespacesCallable().call(request);
             for (Namespace element : response.getNamespacesList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getNamespace

        public final Namespace getNamespace​(NamespaceName name)
        Gets a namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           NamespaceName name = NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]");
           Namespace response = registrationServiceClient.getNamespace(name);
         }
         
        Parameters:
        name - Required. The name of the namespace to retrieve.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getNamespace

        public final Namespace getNamespace​(String name)
        Gets a namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           String name = NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]").toString();
           Namespace response = registrationServiceClient.getNamespace(name);
         }
         
        Parameters:
        name - Required. The name of the namespace to retrieve.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getNamespace

        public final Namespace getNamespace​(GetNamespaceRequest request)
        Gets a namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           GetNamespaceRequest request =
               GetNamespaceRequest.newBuilder()
                   .setName(NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]").toString())
                   .build();
           Namespace response = registrationServiceClient.getNamespace(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
      • getNamespaceCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetNamespaceRequest,​Namespace> getNamespaceCallable()
        Gets a namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           GetNamespaceRequest request =
               GetNamespaceRequest.newBuilder()
                   .setName(NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]").toString())
                   .build();
           ApiFuture<Namespace> future =
               registrationServiceClient.getNamespaceCallable().futureCall(request);
           // Do something.
           Namespace response = future.get();
         }
         
      • updateNamespace

        public final Namespace updateNamespace​(Namespace namespace,
                                               com.google.protobuf.FieldMask updateMask)
        Updates a namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           Namespace namespace = Namespace.newBuilder().build();
           FieldMask updateMask = FieldMask.newBuilder().build();
           Namespace response = registrationServiceClient.updateNamespace(namespace, updateMask);
         }
         
        Parameters:
        namespace - Required. The updated namespace.
        updateMask - Required. List of fields to be updated in this request.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateNamespace

        public final Namespace updateNamespace​(UpdateNamespaceRequest request)
        Updates a namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           UpdateNamespaceRequest request =
               UpdateNamespaceRequest.newBuilder()
                   .setNamespace(Namespace.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           Namespace response = registrationServiceClient.updateNamespace(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
      • updateNamespaceCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateNamespaceRequest,​Namespace> updateNamespaceCallable()
        Updates a namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           UpdateNamespaceRequest request =
               UpdateNamespaceRequest.newBuilder()
                   .setNamespace(Namespace.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           ApiFuture<Namespace> future =
               registrationServiceClient.updateNamespaceCallable().futureCall(request);
           // Do something.
           Namespace response = future.get();
         }
         
      • deleteNamespace

        public final void deleteNamespace​(NamespaceName name)
        Deletes a namespace. This also deletes all services and endpoints in the namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           NamespaceName name = NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]");
           registrationServiceClient.deleteNamespace(name);
         }
         
        Parameters:
        name - Required. The name of the namespace to delete.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteNamespace

        public final void deleteNamespace​(String name)
        Deletes a namespace. This also deletes all services and endpoints in the namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           String name = NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]").toString();
           registrationServiceClient.deleteNamespace(name);
         }
         
        Parameters:
        name - Required. The name of the namespace to delete.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteNamespace

        public final void deleteNamespace​(DeleteNamespaceRequest request)
        Deletes a namespace. This also deletes all services and endpoints in the namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           DeleteNamespaceRequest request =
               DeleteNamespaceRequest.newBuilder()
                   .setName(NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]").toString())
                   .build();
           registrationServiceClient.deleteNamespace(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
      • deleteNamespaceCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteNamespaceRequest,​com.google.protobuf.Empty> deleteNamespaceCallable()
        Deletes a namespace. This also deletes all services and endpoints in the namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           DeleteNamespaceRequest request =
               DeleteNamespaceRequest.newBuilder()
                   .setName(NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]").toString())
                   .build();
           ApiFuture<Empty> future =
               registrationServiceClient.deleteNamespaceCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • createService

        public final Service createService​(NamespaceName parent,
                                           Service service,
                                           String serviceId)
        Creates a service, and returns the new 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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           NamespaceName parent = NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]");
           Service service = Service.newBuilder().build();
           String serviceId = "serviceId-194185552";
           Service response = registrationServiceClient.createService(parent, service, serviceId);
         }
         
        Parameters:
        parent - Required. The resource name of the namespace this service will belong to.
        service - Required. A service with initial fields set.
        serviceId - Required. The Resource ID must be 1-63 characters long, and comply with <a href="https://www.ietf.org/rfc/rfc1035.txt" target="_blank">RFC1035</a>. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createService

        public final Service createService​(String parent,
                                           Service service,
                                           String serviceId)
        Creates a service, and returns the new 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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           String parent = NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]").toString();
           Service service = Service.newBuilder().build();
           String serviceId = "serviceId-194185552";
           Service response = registrationServiceClient.createService(parent, service, serviceId);
         }
         
        Parameters:
        parent - Required. The resource name of the namespace this service will belong to.
        service - Required. A service with initial fields set.
        serviceId - Required. The Resource ID must be 1-63 characters long, and comply with <a href="https://www.ietf.org/rfc/rfc1035.txt" target="_blank">RFC1035</a>. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createService

        public final Service createService​(CreateServiceRequest request)
        Creates a service, and returns the new 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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           CreateServiceRequest request =
               CreateServiceRequest.newBuilder()
                   .setParent(NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]").toString())
                   .setServiceId("serviceId-194185552")
                   .setService(Service.newBuilder().build())
                   .build();
           Service response = registrationServiceClient.createService(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
      • createServiceCallable

        public final com.google.api.gax.rpc.UnaryCallable<CreateServiceRequest,​Service> createServiceCallable()
        Creates a service, and returns the new 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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           CreateServiceRequest request =
               CreateServiceRequest.newBuilder()
                   .setParent(NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]").toString())
                   .setServiceId("serviceId-194185552")
                   .setService(Service.newBuilder().build())
                   .build();
           ApiFuture<Service> future =
               registrationServiceClient.createServiceCallable().futureCall(request);
           // Do something.
           Service response = future.get();
         }
         
      • listServices

        public final RegistrationServiceClient.ListServicesPagedResponse listServices​(NamespaceName parent)
        Lists all services belonging to a namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           NamespaceName parent = NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]");
           for (Service element : registrationServiceClient.listServices(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The resource name of the namespace whose services you'd like to list.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listServices

        public final RegistrationServiceClient.ListServicesPagedResponse listServices​(String parent)
        Lists all services belonging to a namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           String parent = NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]").toString();
           for (Service element : registrationServiceClient.listServices(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The resource name of the namespace whose services you'd like to list.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listServices

        public final RegistrationServiceClient.ListServicesPagedResponse listServices​(ListServicesRequest request)
        Lists all services belonging to a namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           ListServicesRequest request =
               ListServicesRequest.newBuilder()
                   .setParent(NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           for (Service element : registrationServiceClient.listServices(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
      • listServicesPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListServicesRequest,​RegistrationServiceClient.ListServicesPagedResponse> listServicesPagedCallable()
        Lists all services belonging to a namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           ListServicesRequest request =
               ListServicesRequest.newBuilder()
                   .setParent(NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           ApiFuture<Service> future =
               registrationServiceClient.listServicesPagedCallable().futureCall(request);
           // Do something.
           for (Service element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listServicesCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListServicesRequest,​ListServicesResponse> listServicesCallable()
        Lists all services belonging to a namespace.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           ListServicesRequest request =
               ListServicesRequest.newBuilder()
                   .setParent(NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           while (true) {
             ListServicesResponse response =
                 registrationServiceClient.listServicesCallable().call(request);
             for (Service element : response.getServicesList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getService

        public final Service getService​(ServiceName name)
        Gets a 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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           ServiceName name = ServiceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]");
           Service response = registrationServiceClient.getService(name);
         }
         
        Parameters:
        name - Required. The name of the service to get.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getService

        public final Service getService​(String name)
        Gets a 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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           String name =
               ServiceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]").toString();
           Service response = registrationServiceClient.getService(name);
         }
         
        Parameters:
        name - Required. The name of the service to get.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getService

        public final Service getService​(GetServiceRequest request)
        Gets a 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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           GetServiceRequest request =
               GetServiceRequest.newBuilder()
                   .setName(
                       ServiceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]").toString())
                   .build();
           Service response = registrationServiceClient.getService(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
      • getServiceCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetServiceRequest,​Service> getServiceCallable()
        Gets a 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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           GetServiceRequest request =
               GetServiceRequest.newBuilder()
                   .setName(
                       ServiceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]").toString())
                   .build();
           ApiFuture<Service> future =
               registrationServiceClient.getServiceCallable().futureCall(request);
           // Do something.
           Service response = future.get();
         }
         
      • updateService

        public final Service updateService​(Service service,
                                           com.google.protobuf.FieldMask updateMask)
        Updates a 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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           Service service = Service.newBuilder().build();
           FieldMask updateMask = FieldMask.newBuilder().build();
           Service response = registrationServiceClient.updateService(service, updateMask);
         }
         
        Parameters:
        service - Required. The updated service.
        updateMask - Required. List of fields to be updated in this request.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateService

        public final Service updateService​(UpdateServiceRequest request)
        Updates a 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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           UpdateServiceRequest request =
               UpdateServiceRequest.newBuilder()
                   .setService(Service.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           Service response = registrationServiceClient.updateService(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
      • updateServiceCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateServiceRequest,​Service> updateServiceCallable()
        Updates a 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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           UpdateServiceRequest request =
               UpdateServiceRequest.newBuilder()
                   .setService(Service.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           ApiFuture<Service> future =
               registrationServiceClient.updateServiceCallable().futureCall(request);
           // Do something.
           Service response = future.get();
         }
         
      • deleteService

        public final void deleteService​(ServiceName name)
        Deletes a service. This also deletes all endpoints associated with the 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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           ServiceName name = ServiceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]");
           registrationServiceClient.deleteService(name);
         }
         
        Parameters:
        name - Required. The name of the service to delete.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteService

        public final void deleteService​(String name)
        Deletes a service. This also deletes all endpoints associated with the 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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           String name =
               ServiceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]").toString();
           registrationServiceClient.deleteService(name);
         }
         
        Parameters:
        name - Required. The name of the service to delete.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteService

        public final void deleteService​(DeleteServiceRequest request)
        Deletes a service. This also deletes all endpoints associated with the 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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           DeleteServiceRequest request =
               DeleteServiceRequest.newBuilder()
                   .setName(
                       ServiceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]").toString())
                   .build();
           registrationServiceClient.deleteService(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
      • deleteServiceCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteServiceRequest,​com.google.protobuf.Empty> deleteServiceCallable()
        Deletes a service. This also deletes all endpoints associated with the 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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           DeleteServiceRequest request =
               DeleteServiceRequest.newBuilder()
                   .setName(
                       ServiceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]").toString())
                   .build();
           ApiFuture<Empty> future =
               registrationServiceClient.deleteServiceCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • createEndpoint

        public final Endpoint createEndpoint​(ServiceName parent,
                                             Endpoint endpoint,
                                             String endpointId)
        Creates an endpoint, and returns the new endpoint.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           ServiceName parent = ServiceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]");
           Endpoint endpoint = Endpoint.newBuilder().build();
           String endpointId = "endpointId-1837754992";
           Endpoint response = registrationServiceClient.createEndpoint(parent, endpoint, endpointId);
         }
         
        Parameters:
        parent - Required. The resource name of the service that this endpoint provides.
        endpoint - Required. A endpoint with initial fields set.
        endpointId - Required. The Resource ID must be 1-63 characters long, and comply with <a href="https://www.ietf.org/rfc/rfc1035.txt" target="_blank">RFC1035</a>. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createEndpoint

        public final Endpoint createEndpoint​(String parent,
                                             Endpoint endpoint,
                                             String endpointId)
        Creates an endpoint, and returns the new endpoint.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           String parent =
               ServiceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]").toString();
           Endpoint endpoint = Endpoint.newBuilder().build();
           String endpointId = "endpointId-1837754992";
           Endpoint response = registrationServiceClient.createEndpoint(parent, endpoint, endpointId);
         }
         
        Parameters:
        parent - Required. The resource name of the service that this endpoint provides.
        endpoint - Required. A endpoint with initial fields set.
        endpointId - Required. The Resource ID must be 1-63 characters long, and comply with <a href="https://www.ietf.org/rfc/rfc1035.txt" target="_blank">RFC1035</a>. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createEndpoint

        public final Endpoint createEndpoint​(CreateEndpointRequest request)
        Creates an endpoint, and returns the new endpoint.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           CreateEndpointRequest request =
               CreateEndpointRequest.newBuilder()
                   .setParent(
                       ServiceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]").toString())
                   .setEndpointId("endpointId-1837754992")
                   .setEndpoint(Endpoint.newBuilder().build())
                   .build();
           Endpoint response = registrationServiceClient.createEndpoint(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
      • createEndpointCallable

        public final com.google.api.gax.rpc.UnaryCallable<CreateEndpointRequest,​Endpoint> createEndpointCallable()
        Creates an endpoint, and returns the new endpoint.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           CreateEndpointRequest request =
               CreateEndpointRequest.newBuilder()
                   .setParent(
                       ServiceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]").toString())
                   .setEndpointId("endpointId-1837754992")
                   .setEndpoint(Endpoint.newBuilder().build())
                   .build();
           ApiFuture<Endpoint> future =
               registrationServiceClient.createEndpointCallable().futureCall(request);
           // Do something.
           Endpoint response = future.get();
         }
         
      • listEndpoints

        public final RegistrationServiceClient.ListEndpointsPagedResponse listEndpoints​(ServiceName parent)
        Lists all endpoints.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           ServiceName parent = ServiceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]");
           for (Endpoint element : registrationServiceClient.listEndpoints(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The resource name of the service whose endpoints you'd like to list.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listEndpoints

        public final RegistrationServiceClient.ListEndpointsPagedResponse listEndpoints​(String parent)
        Lists all endpoints.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           String parent =
               ServiceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]").toString();
           for (Endpoint element : registrationServiceClient.listEndpoints(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The resource name of the service whose endpoints you'd like to list.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listEndpoints

        public final RegistrationServiceClient.ListEndpointsPagedResponse listEndpoints​(ListEndpointsRequest request)
        Lists all endpoints.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           ListEndpointsRequest request =
               ListEndpointsRequest.newBuilder()
                   .setParent(
                       ServiceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           for (Endpoint element : registrationServiceClient.listEndpoints(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
      • listEndpointsPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListEndpointsRequest,​RegistrationServiceClient.ListEndpointsPagedResponse> listEndpointsPagedCallable()
        Lists all endpoints.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           ListEndpointsRequest request =
               ListEndpointsRequest.newBuilder()
                   .setParent(
                       ServiceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           ApiFuture<Endpoint> future =
               registrationServiceClient.listEndpointsPagedCallable().futureCall(request);
           // Do something.
           for (Endpoint element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listEndpointsCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListEndpointsRequest,​ListEndpointsResponse> listEndpointsCallable()
        Lists all endpoints.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           ListEndpointsRequest request =
               ListEndpointsRequest.newBuilder()
                   .setParent(
                       ServiceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           while (true) {
             ListEndpointsResponse response =
                 registrationServiceClient.listEndpointsCallable().call(request);
             for (Endpoint element : response.getEndpointsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getEndpoint

        public final Endpoint getEndpoint​(EndpointName name)
        Gets an endpoint.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           EndpointName name =
               EndpointName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]", "[ENDPOINT]");
           Endpoint response = registrationServiceClient.getEndpoint(name);
         }
         
        Parameters:
        name - Required. The name of the endpoint to get.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getEndpoint

        public final Endpoint getEndpoint​(String name)
        Gets an endpoint.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           String name =
               EndpointName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]", "[ENDPOINT]")
                   .toString();
           Endpoint response = registrationServiceClient.getEndpoint(name);
         }
         
        Parameters:
        name - Required. The name of the endpoint to get.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getEndpoint

        public final Endpoint getEndpoint​(GetEndpointRequest request)
        Gets an endpoint.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           GetEndpointRequest request =
               GetEndpointRequest.newBuilder()
                   .setName(
                       EndpointName.of(
                               "[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]", "[ENDPOINT]")
                           .toString())
                   .build();
           Endpoint response = registrationServiceClient.getEndpoint(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
      • getEndpointCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetEndpointRequest,​Endpoint> getEndpointCallable()
        Gets an endpoint.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           GetEndpointRequest request =
               GetEndpointRequest.newBuilder()
                   .setName(
                       EndpointName.of(
                               "[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]", "[ENDPOINT]")
                           .toString())
                   .build();
           ApiFuture<Endpoint> future =
               registrationServiceClient.getEndpointCallable().futureCall(request);
           // Do something.
           Endpoint response = future.get();
         }
         
      • updateEndpoint

        public final Endpoint updateEndpoint​(Endpoint endpoint,
                                             com.google.protobuf.FieldMask updateMask)
        Updates an endpoint.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           Endpoint endpoint = Endpoint.newBuilder().build();
           FieldMask updateMask = FieldMask.newBuilder().build();
           Endpoint response = registrationServiceClient.updateEndpoint(endpoint, updateMask);
         }
         
        Parameters:
        endpoint - Required. The updated endpoint.
        updateMask - Required. List of fields to be updated in this request.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateEndpoint

        public final Endpoint updateEndpoint​(UpdateEndpointRequest request)
        Updates an endpoint.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           UpdateEndpointRequest request =
               UpdateEndpointRequest.newBuilder()
                   .setEndpoint(Endpoint.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           Endpoint response = registrationServiceClient.updateEndpoint(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
      • updateEndpointCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateEndpointRequest,​Endpoint> updateEndpointCallable()
        Updates an endpoint.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           UpdateEndpointRequest request =
               UpdateEndpointRequest.newBuilder()
                   .setEndpoint(Endpoint.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           ApiFuture<Endpoint> future =
               registrationServiceClient.updateEndpointCallable().futureCall(request);
           // Do something.
           Endpoint response = future.get();
         }
         
      • deleteEndpoint

        public final void deleteEndpoint​(EndpointName name)
        Deletes an endpoint.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           EndpointName name =
               EndpointName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]", "[ENDPOINT]");
           registrationServiceClient.deleteEndpoint(name);
         }
         
        Parameters:
        name - Required. The name of the endpoint to delete.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteEndpoint

        public final void deleteEndpoint​(String name)
        Deletes an endpoint.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           String name =
               EndpointName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]", "[ENDPOINT]")
                   .toString();
           registrationServiceClient.deleteEndpoint(name);
         }
         
        Parameters:
        name - Required. The name of the endpoint to delete.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteEndpoint

        public final void deleteEndpoint​(DeleteEndpointRequest request)
        Deletes an endpoint.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           DeleteEndpointRequest request =
               DeleteEndpointRequest.newBuilder()
                   .setName(
                       EndpointName.of(
                               "[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]", "[ENDPOINT]")
                           .toString())
                   .build();
           registrationServiceClient.deleteEndpoint(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
      • deleteEndpointCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteEndpointRequest,​com.google.protobuf.Empty> deleteEndpointCallable()
        Deletes an endpoint.

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           DeleteEndpointRequest request =
               DeleteEndpointRequest.newBuilder()
                   .setName(
                       EndpointName.of(
                               "[PROJECT]", "[LOCATION]", "[NAMESPACE]", "[SERVICE]", "[ENDPOINT]")
                           .toString())
                   .build();
           ApiFuture<Empty> future =
               registrationServiceClient.deleteEndpointCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • getIamPolicy

        public final com.google.iam.v1.Policy getIamPolicy​(com.google.iam.v1.GetIamPolicyRequest request)
        Gets the IAM Policy for a resource (namespace or service only).

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           GetIamPolicyRequest request =
               GetIamPolicyRequest.newBuilder()
                   .setResource(NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]").toString())
                   .setOptions(GetPolicyOptions.newBuilder().build())
                   .build();
           Policy response = registrationServiceClient.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 IAM Policy for a resource (namespace or service only).

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

        public final com.google.iam.v1.Policy setIamPolicy​(com.google.iam.v1.SetIamPolicyRequest request)
        Sets the IAM Policy for a resource (namespace or service only).

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           SetIamPolicyRequest request =
               SetIamPolicyRequest.newBuilder()
                   .setResource(NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]").toString())
                   .setPolicy(Policy.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           Policy response = registrationServiceClient.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 IAM Policy for a resource (namespace or service only).

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

        public final com.google.iam.v1.TestIamPermissionsResponse testIamPermissions​(com.google.iam.v1.TestIamPermissionsRequest request)
        Tests IAM permissions for a resource (namespace or service only).

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           TestIamPermissionsRequest request =
               TestIamPermissionsRequest.newBuilder()
                   .setResource(NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]").toString())
                   .addAllPermissions(new ArrayList<String>())
                   .build();
           TestIamPermissionsResponse response = registrationServiceClient.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()
        Tests IAM permissions for a resource (namespace or service only).

        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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           TestIamPermissionsRequest request =
               TestIamPermissionsRequest.newBuilder()
                   .setResource(NamespaceName.of("[PROJECT]", "[LOCATION]", "[NAMESPACE]").toString())
                   .addAllPermissions(new ArrayList<String>())
                   .build();
           ApiFuture<TestIamPermissionsResponse> future =
               registrationServiceClient.testIamPermissionsCallable().futureCall(request);
           // Do something.
           TestIamPermissionsResponse response = future.get();
         }
         
      • listLocations

        public final RegistrationServiceClient.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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           ListLocationsRequest request =
               ListLocationsRequest.newBuilder()
                   .setName("name3373707")
                   .setFilter("filter-1274492040")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           for (Location element : registrationServiceClient.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,​RegistrationServiceClient.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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           ListLocationsRequest request =
               ListLocationsRequest.newBuilder()
                   .setName("name3373707")
                   .setFilter("filter-1274492040")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           ApiFuture<Location> future =
               registrationServiceClient.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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           ListLocationsRequest request =
               ListLocationsRequest.newBuilder()
                   .setName("name3373707")
                   .setFilter("filter-1274492040")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           while (true) {
             ListLocationsResponse response =
                 registrationServiceClient.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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
           Location response = registrationServiceClient.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 (RegistrationServiceClient registrationServiceClient = RegistrationServiceClient.create()) {
           GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
           ApiFuture<Location> future =
               registrationServiceClient.getLocationCallable().futureCall(request);
           // Do something.
           Location 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