Class CertificateManagerClient

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

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

    Certificates Manager API allows customers to see and manage all their TLS certificates.

    Certificates Manager API service provides methods to manage certificates, group them into collections, and create serving configuration that can be easily applied to other Cloud resources e.g. Target Proxies.

    Data Model

    The Certificates Manager service exposes the following resources:

    • `Certificate` that describes a single TLS certificate.
    • `CertificateMap` that describes a collection of certificates that can be attached to a target resource.
    • `CertificateMapEntry` that describes a single configuration entry that consists of a SNI and a group of certificates. It's a subresource of CertificateMap.

    Certificate, CertificateMap and CertificateMapEntry IDs have to fully match the regexp `[a-z0-9-]{1,63}`. In other words, - only lower case letters, digits, and hyphen are allowed - length of the resource ID has to be in [1,63] range.

    Provides methods to manage Cloud Certificate Manager entities.

    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 (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
       CertificateName name = CertificateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE]");
       Certificate response = certificateManagerClient.getCertificate(name);
     }
     

    Note: close() needs to be called on the CertificateManagerClient 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 CertificateManagerSettings 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
     CertificateManagerSettings certificateManagerSettings =
         CertificateManagerSettings.newBuilder()
             .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
             .build();
     CertificateManagerClient certificateManagerClient =
         CertificateManagerClient.create(certificateManagerSettings);
     

    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
     CertificateManagerSettings certificateManagerSettings =
         CertificateManagerSettings.newBuilder().setEndpoint(myEndpoint).build();
     CertificateManagerClient certificateManagerClient =
         CertificateManagerClient.create(certificateManagerSettings);
     

    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
     CertificateManagerSettings certificateManagerSettings =
         CertificateManagerSettings.newHttpJsonBuilder().build();
     CertificateManagerClient certificateManagerClient =
         CertificateManagerClient.create(certificateManagerSettings);
     

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

    • Constructor Detail

      • CertificateManagerClient

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

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

        @BetaApi
        public final com.google.api.gax.httpjson.longrunning.OperationsClient getHttpJsonOperationsClient()
        Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.
      • listCertificates

        public final CertificateManagerClient.ListCertificatesPagedResponse listCertificates​(LocationName parent)
        Lists Certificates in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           for (Certificate element : certificateManagerClient.listCertificates(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The project and location from which the certificate should be listed, specified in the format `projects/*/locations/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listCertificates

        public final CertificateManagerClient.ListCertificatesPagedResponse listCertificates​(String parent)
        Lists Certificates in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           for (Certificate element : certificateManagerClient.listCertificates(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The project and location from which the certificate should be listed, specified in the format `projects/*/locations/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listCertificates

        public final CertificateManagerClient.ListCertificatesPagedResponse listCertificates​(ListCertificatesRequest request)
        Lists Certificates in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           ListCertificatesRequest request =
               ListCertificatesRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           for (Certificate element : certificateManagerClient.listCertificates(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
      • listCertificatesPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListCertificatesRequest,​CertificateManagerClient.ListCertificatesPagedResponse> listCertificatesPagedCallable()
        Lists Certificates in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           ListCertificatesRequest request =
               ListCertificatesRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           ApiFuture<Certificate> future =
               certificateManagerClient.listCertificatesPagedCallable().futureCall(request);
           // Do something.
           for (Certificate element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listCertificatesCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListCertificatesRequest,​ListCertificatesResponse> listCertificatesCallable()
        Lists Certificates in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           ListCertificatesRequest request =
               ListCertificatesRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           while (true) {
             ListCertificatesResponse response =
                 certificateManagerClient.listCertificatesCallable().call(request);
             for (Certificate element : response.getCertificatesList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getCertificate

        public final Certificate getCertificate​(CertificateName name)
        Gets details of a single Certificate.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CertificateName name = CertificateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE]");
           Certificate response = certificateManagerClient.getCertificate(name);
         }
         
        Parameters:
        name - Required. A name of the certificate to describe. Must be in the format `projects/*/locations/*/certificates/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getCertificate

        public final Certificate getCertificate​(String name)
        Gets details of a single Certificate.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String name = CertificateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE]").toString();
           Certificate response = certificateManagerClient.getCertificate(name);
         }
         
        Parameters:
        name - Required. A name of the certificate to describe. Must be in the format `projects/*/locations/*/certificates/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getCertificate

        public final Certificate getCertificate​(GetCertificateRequest request)
        Gets details of a single Certificate.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           GetCertificateRequest request =
               GetCertificateRequest.newBuilder()
                   .setName(CertificateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE]").toString())
                   .build();
           Certificate response = certificateManagerClient.getCertificate(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
      • getCertificateCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetCertificateRequest,​Certificate> getCertificateCallable()
        Gets details of a single Certificate.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           GetCertificateRequest request =
               GetCertificateRequest.newBuilder()
                   .setName(CertificateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE]").toString())
                   .build();
           ApiFuture<Certificate> future =
               certificateManagerClient.getCertificateCallable().futureCall(request);
           // Do something.
           Certificate response = future.get();
         }
         
      • createCertificateAsync

        public final com.google.api.gax.longrunning.OperationFuture<Certificate,​OperationMetadata> createCertificateAsync​(LocationName parent,
                                                                                                                                Certificate certificate,
                                                                                                                                String certificateId)
        Creates a new Certificate in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           Certificate certificate = Certificate.newBuilder().build();
           String certificateId = "certificateId-644529902";
           Certificate response =
               certificateManagerClient.createCertificateAsync(parent, certificate, certificateId).get();
         }
         
        Parameters:
        parent - Required. The parent resource of the certificate. Must be in the format `projects/*/locations/*`.
        certificate - Required. A definition of the certificate to create.
        certificateId - Required. A user-provided name of the certificate.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createCertificateAsync

        public final com.google.api.gax.longrunning.OperationFuture<Certificate,​OperationMetadata> createCertificateAsync​(String parent,
                                                                                                                                Certificate certificate,
                                                                                                                                String certificateId)
        Creates a new Certificate in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           Certificate certificate = Certificate.newBuilder().build();
           String certificateId = "certificateId-644529902";
           Certificate response =
               certificateManagerClient.createCertificateAsync(parent, certificate, certificateId).get();
         }
         
        Parameters:
        parent - Required. The parent resource of the certificate. Must be in the format `projects/*/locations/*`.
        certificate - Required. A definition of the certificate to create.
        certificateId - Required. A user-provided name of the certificate.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createCertificateAsync

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CreateCertificateRequest request =
               CreateCertificateRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setCertificateId("certificateId-644529902")
                   .setCertificate(Certificate.newBuilder().build())
                   .build();
           Certificate response = certificateManagerClient.createCertificateAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createCertificateOperationCallable

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CreateCertificateRequest request =
               CreateCertificateRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setCertificateId("certificateId-644529902")
                   .setCertificate(Certificate.newBuilder().build())
                   .build();
           OperationFuture<Certificate, OperationMetadata> future =
               certificateManagerClient.createCertificateOperationCallable().futureCall(request);
           // Do something.
           Certificate response = future.get();
         }
         
      • createCertificateCallable

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CreateCertificateRequest request =
               CreateCertificateRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setCertificateId("certificateId-644529902")
                   .setCertificate(Certificate.newBuilder().build())
                   .build();
           ApiFuture<Operation> future =
               certificateManagerClient.createCertificateCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • updateCertificateAsync

        public final com.google.api.gax.longrunning.OperationFuture<Certificate,​OperationMetadata> updateCertificateAsync​(Certificate certificate,
                                                                                                                                com.google.protobuf.FieldMask updateMask)
        Updates a Certificate.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           Certificate certificate = Certificate.newBuilder().build();
           FieldMask updateMask = FieldMask.newBuilder().build();
           Certificate response =
               certificateManagerClient.updateCertificateAsync(certificate, updateMask).get();
         }
         
        Parameters:
        certificate - Required. A definition of the certificate to update.
        updateMask - Required. The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateCertificateAsync

        public final com.google.api.gax.longrunning.OperationFuture<Certificate,​OperationMetadata> updateCertificateAsync​(UpdateCertificateRequest request)
        Updates a Certificate.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           UpdateCertificateRequest request =
               UpdateCertificateRequest.newBuilder()
                   .setCertificate(Certificate.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           Certificate response = certificateManagerClient.updateCertificateAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateCertificateOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<UpdateCertificateRequest,​Certificate,​OperationMetadata> updateCertificateOperationCallable()
        Updates a Certificate.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           UpdateCertificateRequest request =
               UpdateCertificateRequest.newBuilder()
                   .setCertificate(Certificate.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           OperationFuture<Certificate, OperationMetadata> future =
               certificateManagerClient.updateCertificateOperationCallable().futureCall(request);
           // Do something.
           Certificate response = future.get();
         }
         
      • updateCertificateCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateCertificateRequest,​com.google.longrunning.Operation> updateCertificateCallable()
        Updates a Certificate.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           UpdateCertificateRequest request =
               UpdateCertificateRequest.newBuilder()
                   .setCertificate(Certificate.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           ApiFuture<Operation> future =
               certificateManagerClient.updateCertificateCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • deleteCertificateAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteCertificateAsync​(CertificateName name)
        Deletes a single Certificate.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CertificateName name = CertificateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE]");
           certificateManagerClient.deleteCertificateAsync(name).get();
         }
         
        Parameters:
        name - Required. A name of the certificate to delete. Must be in the format `projects/*/locations/*/certificates/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteCertificateAsync

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String name = CertificateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE]").toString();
           certificateManagerClient.deleteCertificateAsync(name).get();
         }
         
        Parameters:
        name - Required. A name of the certificate to delete. Must be in the format `projects/*/locations/*/certificates/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteCertificateAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteCertificateAsync​(DeleteCertificateRequest request)
        Deletes a single Certificate.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DeleteCertificateRequest request =
               DeleteCertificateRequest.newBuilder()
                   .setName(CertificateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE]").toString())
                   .build();
           certificateManagerClient.deleteCertificateAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteCertificateOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<DeleteCertificateRequest,​com.google.protobuf.Empty,​OperationMetadata> deleteCertificateOperationCallable()
        Deletes a single Certificate.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DeleteCertificateRequest request =
               DeleteCertificateRequest.newBuilder()
                   .setName(CertificateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE]").toString())
                   .build();
           OperationFuture<Empty, OperationMetadata> future =
               certificateManagerClient.deleteCertificateOperationCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • deleteCertificateCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteCertificateRequest,​com.google.longrunning.Operation> deleteCertificateCallable()
        Deletes a single Certificate.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DeleteCertificateRequest request =
               DeleteCertificateRequest.newBuilder()
                   .setName(CertificateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE]").toString())
                   .build();
           ApiFuture<Operation> future =
               certificateManagerClient.deleteCertificateCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • listCertificateMaps

        public final CertificateManagerClient.ListCertificateMapsPagedResponse listCertificateMaps​(LocationName parent)
        Lists CertificateMaps in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           for (CertificateMap element :
               certificateManagerClient.listCertificateMaps(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The project and location from which the certificate maps should be listed, specified in the format `projects/*/locations/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listCertificateMaps

        public final CertificateManagerClient.ListCertificateMapsPagedResponse listCertificateMaps​(String parent)
        Lists CertificateMaps in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           for (CertificateMap element :
               certificateManagerClient.listCertificateMaps(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The project and location from which the certificate maps should be listed, specified in the format `projects/*/locations/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listCertificateMaps

        public final CertificateManagerClient.ListCertificateMapsPagedResponse listCertificateMaps​(ListCertificateMapsRequest request)
        Lists CertificateMaps in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           ListCertificateMapsRequest request =
               ListCertificateMapsRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           for (CertificateMap element :
               certificateManagerClient.listCertificateMaps(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
      • listCertificateMapsPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListCertificateMapsRequest,​CertificateManagerClient.ListCertificateMapsPagedResponse> listCertificateMapsPagedCallable()
        Lists CertificateMaps in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           ListCertificateMapsRequest request =
               ListCertificateMapsRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           ApiFuture<CertificateMap> future =
               certificateManagerClient.listCertificateMapsPagedCallable().futureCall(request);
           // Do something.
           for (CertificateMap element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listCertificateMapsCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListCertificateMapsRequest,​ListCertificateMapsResponse> listCertificateMapsCallable()
        Lists CertificateMaps in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           ListCertificateMapsRequest request =
               ListCertificateMapsRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           while (true) {
             ListCertificateMapsResponse response =
                 certificateManagerClient.listCertificateMapsCallable().call(request);
             for (CertificateMap element : response.getCertificateMapsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getCertificateMap

        public final CertificateMap getCertificateMap​(CertificateMapName name)
        Gets details of a single CertificateMap.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CertificateMapName name =
               CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]");
           CertificateMap response = certificateManagerClient.getCertificateMap(name);
         }
         
        Parameters:
        name - Required. A name of the certificate map to describe. Must be in the format `projects/*/locations/*/certificateMaps/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getCertificateMap

        public final CertificateMap getCertificateMap​(String name)
        Gets details of a single CertificateMap.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String name =
               CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]").toString();
           CertificateMap response = certificateManagerClient.getCertificateMap(name);
         }
         
        Parameters:
        name - Required. A name of the certificate map to describe. Must be in the format `projects/*/locations/*/certificateMaps/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getCertificateMap

        public final CertificateMap getCertificateMap​(GetCertificateMapRequest request)
        Gets details of a single CertificateMap.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           GetCertificateMapRequest request =
               GetCertificateMapRequest.newBuilder()
                   .setName(
                       CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]").toString())
                   .build();
           CertificateMap response = certificateManagerClient.getCertificateMap(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
      • getCertificateMapCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetCertificateMapRequest,​CertificateMap> getCertificateMapCallable()
        Gets details of a single CertificateMap.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           GetCertificateMapRequest request =
               GetCertificateMapRequest.newBuilder()
                   .setName(
                       CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]").toString())
                   .build();
           ApiFuture<CertificateMap> future =
               certificateManagerClient.getCertificateMapCallable().futureCall(request);
           // Do something.
           CertificateMap response = future.get();
         }
         
      • createCertificateMapAsync

        public final com.google.api.gax.longrunning.OperationFuture<CertificateMap,​OperationMetadata> createCertificateMapAsync​(LocationName parent,
                                                                                                                                      CertificateMap certificateMap,
                                                                                                                                      String certificateMapId)
        Creates a new CertificateMap in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           CertificateMap certificateMap = CertificateMap.newBuilder().build();
           String certificateMapId = "certificateMapId1612184640";
           CertificateMap response =
               certificateManagerClient
                   .createCertificateMapAsync(parent, certificateMap, certificateMapId)
                   .get();
         }
         
        Parameters:
        parent - Required. The parent resource of the certificate map. Must be in the format `projects/*/locations/*`.
        certificateMap - Required. A definition of the certificate map to create.
        certificateMapId - Required. A user-provided name of the certificate map.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createCertificateMapAsync

        public final com.google.api.gax.longrunning.OperationFuture<CertificateMap,​OperationMetadata> createCertificateMapAsync​(String parent,
                                                                                                                                      CertificateMap certificateMap,
                                                                                                                                      String certificateMapId)
        Creates a new CertificateMap in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           CertificateMap certificateMap = CertificateMap.newBuilder().build();
           String certificateMapId = "certificateMapId1612184640";
           CertificateMap response =
               certificateManagerClient
                   .createCertificateMapAsync(parent, certificateMap, certificateMapId)
                   .get();
         }
         
        Parameters:
        parent - Required. The parent resource of the certificate map. Must be in the format `projects/*/locations/*`.
        certificateMap - Required. A definition of the certificate map to create.
        certificateMapId - Required. A user-provided name of the certificate map.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createCertificateMapAsync

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CreateCertificateMapRequest request =
               CreateCertificateMapRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setCertificateMapId("certificateMapId1612184640")
                   .setCertificateMap(CertificateMap.newBuilder().build())
                   .build();
           CertificateMap response = certificateManagerClient.createCertificateMapAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createCertificateMapOperationCallable

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CreateCertificateMapRequest request =
               CreateCertificateMapRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setCertificateMapId("certificateMapId1612184640")
                   .setCertificateMap(CertificateMap.newBuilder().build())
                   .build();
           OperationFuture<CertificateMap, OperationMetadata> future =
               certificateManagerClient.createCertificateMapOperationCallable().futureCall(request);
           // Do something.
           CertificateMap response = future.get();
         }
         
      • createCertificateMapCallable

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CreateCertificateMapRequest request =
               CreateCertificateMapRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setCertificateMapId("certificateMapId1612184640")
                   .setCertificateMap(CertificateMap.newBuilder().build())
                   .build();
           ApiFuture<Operation> future =
               certificateManagerClient.createCertificateMapCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • updateCertificateMapAsync

        public final com.google.api.gax.longrunning.OperationFuture<CertificateMap,​OperationMetadata> updateCertificateMapAsync​(CertificateMap certificateMap,
                                                                                                                                      com.google.protobuf.FieldMask updateMask)
        Updates a CertificateMap.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CertificateMap certificateMap = CertificateMap.newBuilder().build();
           FieldMask updateMask = FieldMask.newBuilder().build();
           CertificateMap response =
               certificateManagerClient.updateCertificateMapAsync(certificateMap, updateMask).get();
         }
         
        Parameters:
        certificateMap - Required. A definition of the certificate map to update.
        updateMask - Required. The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateCertificateMapAsync

        public final com.google.api.gax.longrunning.OperationFuture<CertificateMap,​OperationMetadata> updateCertificateMapAsync​(UpdateCertificateMapRequest request)
        Updates a CertificateMap.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           UpdateCertificateMapRequest request =
               UpdateCertificateMapRequest.newBuilder()
                   .setCertificateMap(CertificateMap.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           CertificateMap response = certificateManagerClient.updateCertificateMapAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateCertificateMapOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<UpdateCertificateMapRequest,​CertificateMap,​OperationMetadata> updateCertificateMapOperationCallable()
        Updates a CertificateMap.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           UpdateCertificateMapRequest request =
               UpdateCertificateMapRequest.newBuilder()
                   .setCertificateMap(CertificateMap.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           OperationFuture<CertificateMap, OperationMetadata> future =
               certificateManagerClient.updateCertificateMapOperationCallable().futureCall(request);
           // Do something.
           CertificateMap response = future.get();
         }
         
      • updateCertificateMapCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateCertificateMapRequest,​com.google.longrunning.Operation> updateCertificateMapCallable()
        Updates a CertificateMap.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           UpdateCertificateMapRequest request =
               UpdateCertificateMapRequest.newBuilder()
                   .setCertificateMap(CertificateMap.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           ApiFuture<Operation> future =
               certificateManagerClient.updateCertificateMapCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • deleteCertificateMapAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteCertificateMapAsync​(CertificateMapName name)
        Deletes a single CertificateMap. A Certificate Map can't be deleted if it contains Certificate Map Entries. Remove all the entries from the map before calling this method.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CertificateMapName name =
               CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]");
           certificateManagerClient.deleteCertificateMapAsync(name).get();
         }
         
        Parameters:
        name - Required. A name of the certificate map to delete. Must be in the format `projects/*/locations/*/certificateMaps/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteCertificateMapAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteCertificateMapAsync​(String name)
        Deletes a single CertificateMap. A Certificate Map can't be deleted if it contains Certificate Map Entries. Remove all the entries from the map before calling this method.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String name =
               CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]").toString();
           certificateManagerClient.deleteCertificateMapAsync(name).get();
         }
         
        Parameters:
        name - Required. A name of the certificate map to delete. Must be in the format `projects/*/locations/*/certificateMaps/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteCertificateMapAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteCertificateMapAsync​(DeleteCertificateMapRequest request)
        Deletes a single CertificateMap. A Certificate Map can't be deleted if it contains Certificate Map Entries. Remove all the entries from the map before calling this method.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DeleteCertificateMapRequest request =
               DeleteCertificateMapRequest.newBuilder()
                   .setName(
                       CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]").toString())
                   .build();
           certificateManagerClient.deleteCertificateMapAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteCertificateMapOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<DeleteCertificateMapRequest,​com.google.protobuf.Empty,​OperationMetadata> deleteCertificateMapOperationCallable()
        Deletes a single CertificateMap. A Certificate Map can't be deleted if it contains Certificate Map Entries. Remove all the entries from the map before calling this method.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DeleteCertificateMapRequest request =
               DeleteCertificateMapRequest.newBuilder()
                   .setName(
                       CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]").toString())
                   .build();
           OperationFuture<Empty, OperationMetadata> future =
               certificateManagerClient.deleteCertificateMapOperationCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • deleteCertificateMapCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteCertificateMapRequest,​com.google.longrunning.Operation> deleteCertificateMapCallable()
        Deletes a single CertificateMap. A Certificate Map can't be deleted if it contains Certificate Map Entries. Remove all the entries from the map before calling this method.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DeleteCertificateMapRequest request =
               DeleteCertificateMapRequest.newBuilder()
                   .setName(
                       CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]").toString())
                   .build();
           ApiFuture<Operation> future =
               certificateManagerClient.deleteCertificateMapCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • listCertificateMapEntries

        public final CertificateManagerClient.ListCertificateMapEntriesPagedResponse listCertificateMapEntries​(CertificateMapName parent)
        Lists CertificateMapEntries in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CertificateMapName parent =
               CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]");
           for (CertificateMapEntry element :
               certificateManagerClient.listCertificateMapEntries(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The project, location and certificate map from which the certificate map entries should be listed, specified in the format `projects/*/locations/*/certificateMaps/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listCertificateMapEntries

        public final CertificateManagerClient.ListCertificateMapEntriesPagedResponse listCertificateMapEntries​(String parent)
        Lists CertificateMapEntries in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String parent =
               CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]").toString();
           for (CertificateMapEntry element :
               certificateManagerClient.listCertificateMapEntries(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The project, location and certificate map from which the certificate map entries should be listed, specified in the format `projects/*/locations/*/certificateMaps/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listCertificateMapEntries

        public final CertificateManagerClient.ListCertificateMapEntriesPagedResponse listCertificateMapEntries​(ListCertificateMapEntriesRequest request)
        Lists CertificateMapEntries in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           ListCertificateMapEntriesRequest request =
               ListCertificateMapEntriesRequest.newBuilder()
                   .setParent(
                       CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           for (CertificateMapEntry element :
               certificateManagerClient.listCertificateMapEntries(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
      • listCertificateMapEntriesPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListCertificateMapEntriesRequest,​CertificateManagerClient.ListCertificateMapEntriesPagedResponse> listCertificateMapEntriesPagedCallable()
        Lists CertificateMapEntries in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           ListCertificateMapEntriesRequest request =
               ListCertificateMapEntriesRequest.newBuilder()
                   .setParent(
                       CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           ApiFuture<CertificateMapEntry> future =
               certificateManagerClient.listCertificateMapEntriesPagedCallable().futureCall(request);
           // Do something.
           for (CertificateMapEntry element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listCertificateMapEntriesCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListCertificateMapEntriesRequest,​ListCertificateMapEntriesResponse> listCertificateMapEntriesCallable()
        Lists CertificateMapEntries in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           ListCertificateMapEntriesRequest request =
               ListCertificateMapEntriesRequest.newBuilder()
                   .setParent(
                       CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           while (true) {
             ListCertificateMapEntriesResponse response =
                 certificateManagerClient.listCertificateMapEntriesCallable().call(request);
             for (CertificateMapEntry element : response.getCertificateMapEntriesList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getCertificateMapEntry

        public final CertificateMapEntry getCertificateMapEntry​(CertificateMapEntryName name)
        Gets details of a single CertificateMapEntry.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CertificateMapEntryName name =
               CertificateMapEntryName.of(
                   "[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]", "[CERTIFICATE_MAP_ENTRY]");
           CertificateMapEntry response = certificateManagerClient.getCertificateMapEntry(name);
         }
         
        Parameters:
        name - Required. A name of the certificate map entry to describe. Must be in the format `projects/*/locations/*/certificateMaps/*/certificateMapEntries/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getCertificateMapEntry

        public final CertificateMapEntry getCertificateMapEntry​(String name)
        Gets details of a single CertificateMapEntry.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String name =
               CertificateMapEntryName.of(
                       "[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]", "[CERTIFICATE_MAP_ENTRY]")
                   .toString();
           CertificateMapEntry response = certificateManagerClient.getCertificateMapEntry(name);
         }
         
        Parameters:
        name - Required. A name of the certificate map entry to describe. Must be in the format `projects/*/locations/*/certificateMaps/*/certificateMapEntries/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getCertificateMapEntry

        public final CertificateMapEntry getCertificateMapEntry​(GetCertificateMapEntryRequest request)
        Gets details of a single CertificateMapEntry.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           GetCertificateMapEntryRequest request =
               GetCertificateMapEntryRequest.newBuilder()
                   .setName(
                       CertificateMapEntryName.of(
                               "[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]", "[CERTIFICATE_MAP_ENTRY]")
                           .toString())
                   .build();
           CertificateMapEntry response = certificateManagerClient.getCertificateMapEntry(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
      • getCertificateMapEntryCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetCertificateMapEntryRequest,​CertificateMapEntry> getCertificateMapEntryCallable()
        Gets details of a single CertificateMapEntry.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           GetCertificateMapEntryRequest request =
               GetCertificateMapEntryRequest.newBuilder()
                   .setName(
                       CertificateMapEntryName.of(
                               "[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]", "[CERTIFICATE_MAP_ENTRY]")
                           .toString())
                   .build();
           ApiFuture<CertificateMapEntry> future =
               certificateManagerClient.getCertificateMapEntryCallable().futureCall(request);
           // Do something.
           CertificateMapEntry response = future.get();
         }
         
      • createCertificateMapEntryAsync

        public final com.google.api.gax.longrunning.OperationFuture<CertificateMapEntry,​OperationMetadata> createCertificateMapEntryAsync​(CertificateMapName parent,
                                                                                                                                                CertificateMapEntry certificateMapEntry,
                                                                                                                                                String certificateMapEntryId)
        Creates a new CertificateMapEntry in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CertificateMapName parent =
               CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]");
           CertificateMapEntry certificateMapEntry = CertificateMapEntry.newBuilder().build();
           String certificateMapEntryId = "certificateMapEntryId-859079384";
           CertificateMapEntry response =
               certificateManagerClient
                   .createCertificateMapEntryAsync(parent, certificateMapEntry, certificateMapEntryId)
                   .get();
         }
         
        Parameters:
        parent - Required. The parent resource of the certificate map entry. Must be in the format `projects/*/locations/*/certificateMaps/*`.
        certificateMapEntry - Required. A definition of the certificate map entry to create.
        certificateMapEntryId - Required. A user-provided name of the certificate map entry.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createCertificateMapEntryAsync

        public final com.google.api.gax.longrunning.OperationFuture<CertificateMapEntry,​OperationMetadata> createCertificateMapEntryAsync​(String parent,
                                                                                                                                                CertificateMapEntry certificateMapEntry,
                                                                                                                                                String certificateMapEntryId)
        Creates a new CertificateMapEntry in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String parent =
               CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]").toString();
           CertificateMapEntry certificateMapEntry = CertificateMapEntry.newBuilder().build();
           String certificateMapEntryId = "certificateMapEntryId-859079384";
           CertificateMapEntry response =
               certificateManagerClient
                   .createCertificateMapEntryAsync(parent, certificateMapEntry, certificateMapEntryId)
                   .get();
         }
         
        Parameters:
        parent - Required. The parent resource of the certificate map entry. Must be in the format `projects/*/locations/*/certificateMaps/*`.
        certificateMapEntry - Required. A definition of the certificate map entry to create.
        certificateMapEntryId - Required. A user-provided name of the certificate map entry.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createCertificateMapEntryAsync

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CreateCertificateMapEntryRequest request =
               CreateCertificateMapEntryRequest.newBuilder()
                   .setParent(
                       CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]").toString())
                   .setCertificateMapEntryId("certificateMapEntryId-859079384")
                   .setCertificateMapEntry(CertificateMapEntry.newBuilder().build())
                   .build();
           CertificateMapEntry response =
               certificateManagerClient.createCertificateMapEntryAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createCertificateMapEntryOperationCallable

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CreateCertificateMapEntryRequest request =
               CreateCertificateMapEntryRequest.newBuilder()
                   .setParent(
                       CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]").toString())
                   .setCertificateMapEntryId("certificateMapEntryId-859079384")
                   .setCertificateMapEntry(CertificateMapEntry.newBuilder().build())
                   .build();
           OperationFuture<CertificateMapEntry, OperationMetadata> future =
               certificateManagerClient.createCertificateMapEntryOperationCallable().futureCall(request);
           // Do something.
           CertificateMapEntry response = future.get();
         }
         
      • createCertificateMapEntryCallable

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CreateCertificateMapEntryRequest request =
               CreateCertificateMapEntryRequest.newBuilder()
                   .setParent(
                       CertificateMapName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]").toString())
                   .setCertificateMapEntryId("certificateMapEntryId-859079384")
                   .setCertificateMapEntry(CertificateMapEntry.newBuilder().build())
                   .build();
           ApiFuture<Operation> future =
               certificateManagerClient.createCertificateMapEntryCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • updateCertificateMapEntryAsync

        public final com.google.api.gax.longrunning.OperationFuture<CertificateMapEntry,​OperationMetadata> updateCertificateMapEntryAsync​(CertificateMapEntry certificateMapEntry,
                                                                                                                                                com.google.protobuf.FieldMask updateMask)
        Updates a CertificateMapEntry.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CertificateMapEntry certificateMapEntry = CertificateMapEntry.newBuilder().build();
           FieldMask updateMask = FieldMask.newBuilder().build();
           CertificateMapEntry response =
               certificateManagerClient
                   .updateCertificateMapEntryAsync(certificateMapEntry, updateMask)
                   .get();
         }
         
        Parameters:
        certificateMapEntry - Required. A definition of the certificate map entry to create map entry.
        updateMask - Required. The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateCertificateMapEntryAsync

        public final com.google.api.gax.longrunning.OperationFuture<CertificateMapEntry,​OperationMetadata> updateCertificateMapEntryAsync​(UpdateCertificateMapEntryRequest request)
        Updates a CertificateMapEntry.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           UpdateCertificateMapEntryRequest request =
               UpdateCertificateMapEntryRequest.newBuilder()
                   .setCertificateMapEntry(CertificateMapEntry.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           CertificateMapEntry response =
               certificateManagerClient.updateCertificateMapEntryAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateCertificateMapEntryOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<UpdateCertificateMapEntryRequest,​CertificateMapEntry,​OperationMetadata> updateCertificateMapEntryOperationCallable()
        Updates a CertificateMapEntry.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           UpdateCertificateMapEntryRequest request =
               UpdateCertificateMapEntryRequest.newBuilder()
                   .setCertificateMapEntry(CertificateMapEntry.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           OperationFuture<CertificateMapEntry, OperationMetadata> future =
               certificateManagerClient.updateCertificateMapEntryOperationCallable().futureCall(request);
           // Do something.
           CertificateMapEntry response = future.get();
         }
         
      • updateCertificateMapEntryCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateCertificateMapEntryRequest,​com.google.longrunning.Operation> updateCertificateMapEntryCallable()
        Updates a CertificateMapEntry.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           UpdateCertificateMapEntryRequest request =
               UpdateCertificateMapEntryRequest.newBuilder()
                   .setCertificateMapEntry(CertificateMapEntry.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           ApiFuture<Operation> future =
               certificateManagerClient.updateCertificateMapEntryCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • deleteCertificateMapEntryAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteCertificateMapEntryAsync​(CertificateMapEntryName name)
        Deletes a single CertificateMapEntry.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CertificateMapEntryName name =
               CertificateMapEntryName.of(
                   "[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]", "[CERTIFICATE_MAP_ENTRY]");
           certificateManagerClient.deleteCertificateMapEntryAsync(name).get();
         }
         
        Parameters:
        name - Required. A name of the certificate map entry to delete. Must be in the format `projects/*/locations/*/certificateMaps/*/certificateMapEntries/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteCertificateMapEntryAsync

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String name =
               CertificateMapEntryName.of(
                       "[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]", "[CERTIFICATE_MAP_ENTRY]")
                   .toString();
           certificateManagerClient.deleteCertificateMapEntryAsync(name).get();
         }
         
        Parameters:
        name - Required. A name of the certificate map entry to delete. Must be in the format `projects/*/locations/*/certificateMaps/*/certificateMapEntries/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteCertificateMapEntryAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteCertificateMapEntryAsync​(DeleteCertificateMapEntryRequest request)
        Deletes a single CertificateMapEntry.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DeleteCertificateMapEntryRequest request =
               DeleteCertificateMapEntryRequest.newBuilder()
                   .setName(
                       CertificateMapEntryName.of(
                               "[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]", "[CERTIFICATE_MAP_ENTRY]")
                           .toString())
                   .build();
           certificateManagerClient.deleteCertificateMapEntryAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteCertificateMapEntryOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<DeleteCertificateMapEntryRequest,​com.google.protobuf.Empty,​OperationMetadata> deleteCertificateMapEntryOperationCallable()
        Deletes a single CertificateMapEntry.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DeleteCertificateMapEntryRequest request =
               DeleteCertificateMapEntryRequest.newBuilder()
                   .setName(
                       CertificateMapEntryName.of(
                               "[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]", "[CERTIFICATE_MAP_ENTRY]")
                           .toString())
                   .build();
           OperationFuture<Empty, OperationMetadata> future =
               certificateManagerClient.deleteCertificateMapEntryOperationCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • deleteCertificateMapEntryCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteCertificateMapEntryRequest,​com.google.longrunning.Operation> deleteCertificateMapEntryCallable()
        Deletes a single CertificateMapEntry.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DeleteCertificateMapEntryRequest request =
               DeleteCertificateMapEntryRequest.newBuilder()
                   .setName(
                       CertificateMapEntryName.of(
                               "[PROJECT]", "[LOCATION]", "[CERTIFICATE_MAP]", "[CERTIFICATE_MAP_ENTRY]")
                           .toString())
                   .build();
           ApiFuture<Operation> future =
               certificateManagerClient.deleteCertificateMapEntryCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • listDnsAuthorizations

        public final CertificateManagerClient.ListDnsAuthorizationsPagedResponse listDnsAuthorizations​(LocationName parent)
        Lists DnsAuthorizations in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           for (DnsAuthorization element :
               certificateManagerClient.listDnsAuthorizations(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The project and location from which the dns authorizations should be listed, specified in the format `projects/*/locations/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listDnsAuthorizations

        public final CertificateManagerClient.ListDnsAuthorizationsPagedResponse listDnsAuthorizations​(String parent)
        Lists DnsAuthorizations in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           for (DnsAuthorization element :
               certificateManagerClient.listDnsAuthorizations(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The project and location from which the dns authorizations should be listed, specified in the format `projects/*/locations/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listDnsAuthorizations

        public final CertificateManagerClient.ListDnsAuthorizationsPagedResponse listDnsAuthorizations​(ListDnsAuthorizationsRequest request)
        Lists DnsAuthorizations in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           ListDnsAuthorizationsRequest request =
               ListDnsAuthorizationsRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           for (DnsAuthorization element :
               certificateManagerClient.listDnsAuthorizations(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
      • listDnsAuthorizationsPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListDnsAuthorizationsRequest,​CertificateManagerClient.ListDnsAuthorizationsPagedResponse> listDnsAuthorizationsPagedCallable()
        Lists DnsAuthorizations in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           ListDnsAuthorizationsRequest request =
               ListDnsAuthorizationsRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           ApiFuture<DnsAuthorization> future =
               certificateManagerClient.listDnsAuthorizationsPagedCallable().futureCall(request);
           // Do something.
           for (DnsAuthorization element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listDnsAuthorizationsCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListDnsAuthorizationsRequest,​ListDnsAuthorizationsResponse> listDnsAuthorizationsCallable()
        Lists DnsAuthorizations in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           ListDnsAuthorizationsRequest request =
               ListDnsAuthorizationsRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           while (true) {
             ListDnsAuthorizationsResponse response =
                 certificateManagerClient.listDnsAuthorizationsCallable().call(request);
             for (DnsAuthorization element : response.getDnsAuthorizationsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getDnsAuthorization

        public final DnsAuthorization getDnsAuthorization​(DnsAuthorizationName name)
        Gets details of a single DnsAuthorization.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DnsAuthorizationName name =
               DnsAuthorizationName.of("[PROJECT]", "[LOCATION]", "[DNS_AUTHORIZATION]");
           DnsAuthorization response = certificateManagerClient.getDnsAuthorization(name);
         }
         
        Parameters:
        name - Required. A name of the dns authorization to describe. Must be in the format `projects/*/locations/*/dnsAuthorizations/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getDnsAuthorization

        public final DnsAuthorization getDnsAuthorization​(String name)
        Gets details of a single DnsAuthorization.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String name =
               DnsAuthorizationName.of("[PROJECT]", "[LOCATION]", "[DNS_AUTHORIZATION]").toString();
           DnsAuthorization response = certificateManagerClient.getDnsAuthorization(name);
         }
         
        Parameters:
        name - Required. A name of the dns authorization to describe. Must be in the format `projects/*/locations/*/dnsAuthorizations/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getDnsAuthorization

        public final DnsAuthorization getDnsAuthorization​(GetDnsAuthorizationRequest request)
        Gets details of a single DnsAuthorization.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           GetDnsAuthorizationRequest request =
               GetDnsAuthorizationRequest.newBuilder()
                   .setName(
                       DnsAuthorizationName.of("[PROJECT]", "[LOCATION]", "[DNS_AUTHORIZATION]")
                           .toString())
                   .build();
           DnsAuthorization response = certificateManagerClient.getDnsAuthorization(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
      • getDnsAuthorizationCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetDnsAuthorizationRequest,​DnsAuthorization> getDnsAuthorizationCallable()
        Gets details of a single DnsAuthorization.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           GetDnsAuthorizationRequest request =
               GetDnsAuthorizationRequest.newBuilder()
                   .setName(
                       DnsAuthorizationName.of("[PROJECT]", "[LOCATION]", "[DNS_AUTHORIZATION]")
                           .toString())
                   .build();
           ApiFuture<DnsAuthorization> future =
               certificateManagerClient.getDnsAuthorizationCallable().futureCall(request);
           // Do something.
           DnsAuthorization response = future.get();
         }
         
      • createDnsAuthorizationAsync

        public final com.google.api.gax.longrunning.OperationFuture<DnsAuthorization,​OperationMetadata> createDnsAuthorizationAsync​(LocationName parent,
                                                                                                                                          DnsAuthorization dnsAuthorization,
                                                                                                                                          String dnsAuthorizationId)
        Creates a new DnsAuthorization in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           DnsAuthorization dnsAuthorization = DnsAuthorization.newBuilder().build();
           String dnsAuthorizationId = "dnsAuthorizationId-2054763765";
           DnsAuthorization response =
               certificateManagerClient
                   .createDnsAuthorizationAsync(parent, dnsAuthorization, dnsAuthorizationId)
                   .get();
         }
         
        Parameters:
        parent - Required. The parent resource of the dns authorization. Must be in the format `projects/*/locations/*`.
        dnsAuthorization - Required. A definition of the dns authorization to create.
        dnsAuthorizationId - Required. A user-provided name of the dns authorization.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createDnsAuthorizationAsync

        public final com.google.api.gax.longrunning.OperationFuture<DnsAuthorization,​OperationMetadata> createDnsAuthorizationAsync​(String parent,
                                                                                                                                          DnsAuthorization dnsAuthorization,
                                                                                                                                          String dnsAuthorizationId)
        Creates a new DnsAuthorization in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           DnsAuthorization dnsAuthorization = DnsAuthorization.newBuilder().build();
           String dnsAuthorizationId = "dnsAuthorizationId-2054763765";
           DnsAuthorization response =
               certificateManagerClient
                   .createDnsAuthorizationAsync(parent, dnsAuthorization, dnsAuthorizationId)
                   .get();
         }
         
        Parameters:
        parent - Required. The parent resource of the dns authorization. Must be in the format `projects/*/locations/*`.
        dnsAuthorization - Required. A definition of the dns authorization to create.
        dnsAuthorizationId - Required. A user-provided name of the dns authorization.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createDnsAuthorizationAsync

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CreateDnsAuthorizationRequest request =
               CreateDnsAuthorizationRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setDnsAuthorizationId("dnsAuthorizationId-2054763765")
                   .setDnsAuthorization(DnsAuthorization.newBuilder().build())
                   .build();
           DnsAuthorization response =
               certificateManagerClient.createDnsAuthorizationAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createDnsAuthorizationOperationCallable

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CreateDnsAuthorizationRequest request =
               CreateDnsAuthorizationRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setDnsAuthorizationId("dnsAuthorizationId-2054763765")
                   .setDnsAuthorization(DnsAuthorization.newBuilder().build())
                   .build();
           OperationFuture<DnsAuthorization, OperationMetadata> future =
               certificateManagerClient.createDnsAuthorizationOperationCallable().futureCall(request);
           // Do something.
           DnsAuthorization response = future.get();
         }
         
      • createDnsAuthorizationCallable

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CreateDnsAuthorizationRequest request =
               CreateDnsAuthorizationRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setDnsAuthorizationId("dnsAuthorizationId-2054763765")
                   .setDnsAuthorization(DnsAuthorization.newBuilder().build())
                   .build();
           ApiFuture<Operation> future =
               certificateManagerClient.createDnsAuthorizationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • updateDnsAuthorizationAsync

        public final com.google.api.gax.longrunning.OperationFuture<DnsAuthorization,​OperationMetadata> updateDnsAuthorizationAsync​(DnsAuthorization dnsAuthorization,
                                                                                                                                          com.google.protobuf.FieldMask updateMask)
        Updates a DnsAuthorization.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DnsAuthorization dnsAuthorization = DnsAuthorization.newBuilder().build();
           FieldMask updateMask = FieldMask.newBuilder().build();
           DnsAuthorization response =
               certificateManagerClient.updateDnsAuthorizationAsync(dnsAuthorization, updateMask).get();
         }
         
        Parameters:
        dnsAuthorization - Required. A definition of the dns authorization to update.
        updateMask - Required. The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateDnsAuthorizationAsync

        public final com.google.api.gax.longrunning.OperationFuture<DnsAuthorization,​OperationMetadata> updateDnsAuthorizationAsync​(UpdateDnsAuthorizationRequest request)
        Updates a DnsAuthorization.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           UpdateDnsAuthorizationRequest request =
               UpdateDnsAuthorizationRequest.newBuilder()
                   .setDnsAuthorization(DnsAuthorization.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           DnsAuthorization response =
               certificateManagerClient.updateDnsAuthorizationAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateDnsAuthorizationOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<UpdateDnsAuthorizationRequest,​DnsAuthorization,​OperationMetadata> updateDnsAuthorizationOperationCallable()
        Updates a DnsAuthorization.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           UpdateDnsAuthorizationRequest request =
               UpdateDnsAuthorizationRequest.newBuilder()
                   .setDnsAuthorization(DnsAuthorization.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           OperationFuture<DnsAuthorization, OperationMetadata> future =
               certificateManagerClient.updateDnsAuthorizationOperationCallable().futureCall(request);
           // Do something.
           DnsAuthorization response = future.get();
         }
         
      • updateDnsAuthorizationCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateDnsAuthorizationRequest,​com.google.longrunning.Operation> updateDnsAuthorizationCallable()
        Updates a DnsAuthorization.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           UpdateDnsAuthorizationRequest request =
               UpdateDnsAuthorizationRequest.newBuilder()
                   .setDnsAuthorization(DnsAuthorization.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           ApiFuture<Operation> future =
               certificateManagerClient.updateDnsAuthorizationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • deleteDnsAuthorizationAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteDnsAuthorizationAsync​(DnsAuthorizationName name)
        Deletes a single DnsAuthorization.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DnsAuthorizationName name =
               DnsAuthorizationName.of("[PROJECT]", "[LOCATION]", "[DNS_AUTHORIZATION]");
           certificateManagerClient.deleteDnsAuthorizationAsync(name).get();
         }
         
        Parameters:
        name - Required. A name of the dns authorization to delete. Must be in the format `projects/*/locations/*/dnsAuthorizations/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteDnsAuthorizationAsync

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String name =
               DnsAuthorizationName.of("[PROJECT]", "[LOCATION]", "[DNS_AUTHORIZATION]").toString();
           certificateManagerClient.deleteDnsAuthorizationAsync(name).get();
         }
         
        Parameters:
        name - Required. A name of the dns authorization to delete. Must be in the format `projects/*/locations/*/dnsAuthorizations/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteDnsAuthorizationAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteDnsAuthorizationAsync​(DeleteDnsAuthorizationRequest request)
        Deletes a single DnsAuthorization.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DeleteDnsAuthorizationRequest request =
               DeleteDnsAuthorizationRequest.newBuilder()
                   .setName(
                       DnsAuthorizationName.of("[PROJECT]", "[LOCATION]", "[DNS_AUTHORIZATION]")
                           .toString())
                   .build();
           certificateManagerClient.deleteDnsAuthorizationAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteDnsAuthorizationOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<DeleteDnsAuthorizationRequest,​com.google.protobuf.Empty,​OperationMetadata> deleteDnsAuthorizationOperationCallable()
        Deletes a single DnsAuthorization.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DeleteDnsAuthorizationRequest request =
               DeleteDnsAuthorizationRequest.newBuilder()
                   .setName(
                       DnsAuthorizationName.of("[PROJECT]", "[LOCATION]", "[DNS_AUTHORIZATION]")
                           .toString())
                   .build();
           OperationFuture<Empty, OperationMetadata> future =
               certificateManagerClient.deleteDnsAuthorizationOperationCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • deleteDnsAuthorizationCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteDnsAuthorizationRequest,​com.google.longrunning.Operation> deleteDnsAuthorizationCallable()
        Deletes a single DnsAuthorization.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DeleteDnsAuthorizationRequest request =
               DeleteDnsAuthorizationRequest.newBuilder()
                   .setName(
                       DnsAuthorizationName.of("[PROJECT]", "[LOCATION]", "[DNS_AUTHORIZATION]")
                           .toString())
                   .build();
           ApiFuture<Operation> future =
               certificateManagerClient.deleteDnsAuthorizationCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • listCertificateIssuanceConfigs

        public final CertificateManagerClient.ListCertificateIssuanceConfigsPagedResponse listCertificateIssuanceConfigs​(LocationName parent)
        Lists CertificateIssuanceConfigs in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           for (CertificateIssuanceConfig element :
               certificateManagerClient.listCertificateIssuanceConfigs(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The project and location from which the certificate should be listed, specified in the format `projects/*/locations/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listCertificateIssuanceConfigs

        public final CertificateManagerClient.ListCertificateIssuanceConfigsPagedResponse listCertificateIssuanceConfigs​(String parent)
        Lists CertificateIssuanceConfigs in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           for (CertificateIssuanceConfig element :
               certificateManagerClient.listCertificateIssuanceConfigs(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The project and location from which the certificate should be listed, specified in the format `projects/*/locations/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listCertificateIssuanceConfigs

        public final CertificateManagerClient.ListCertificateIssuanceConfigsPagedResponse listCertificateIssuanceConfigs​(ListCertificateIssuanceConfigsRequest request)
        Lists CertificateIssuanceConfigs in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           ListCertificateIssuanceConfigsRequest request =
               ListCertificateIssuanceConfigsRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           for (CertificateIssuanceConfig element :
               certificateManagerClient.listCertificateIssuanceConfigs(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
      • listCertificateIssuanceConfigsPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListCertificateIssuanceConfigsRequest,​CertificateManagerClient.ListCertificateIssuanceConfigsPagedResponse> listCertificateIssuanceConfigsPagedCallable()
        Lists CertificateIssuanceConfigs in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           ListCertificateIssuanceConfigsRequest request =
               ListCertificateIssuanceConfigsRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           ApiFuture<CertificateIssuanceConfig> future =
               certificateManagerClient
                   .listCertificateIssuanceConfigsPagedCallable()
                   .futureCall(request);
           // Do something.
           for (CertificateIssuanceConfig element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listCertificateIssuanceConfigsCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListCertificateIssuanceConfigsRequest,​ListCertificateIssuanceConfigsResponse> listCertificateIssuanceConfigsCallable()
        Lists CertificateIssuanceConfigs in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           ListCertificateIssuanceConfigsRequest request =
               ListCertificateIssuanceConfigsRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           while (true) {
             ListCertificateIssuanceConfigsResponse response =
                 certificateManagerClient.listCertificateIssuanceConfigsCallable().call(request);
             for (CertificateIssuanceConfig element : response.getCertificateIssuanceConfigsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getCertificateIssuanceConfig

        public final CertificateIssuanceConfig getCertificateIssuanceConfig​(CertificateIssuanceConfigName name)
        Gets details of a single CertificateIssuanceConfig.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CertificateIssuanceConfigName name =
               CertificateIssuanceConfigName.of(
                   "[PROJECT]", "[LOCATION]", "[CERTIFICATE_ISSUANCE_CONFIG]");
           CertificateIssuanceConfig response =
               certificateManagerClient.getCertificateIssuanceConfig(name);
         }
         
        Parameters:
        name - Required. A name of the certificate issuance config to describe. Must be in the format `projects/*/locations/*/certificateIssuanceConfigs/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getCertificateIssuanceConfig

        public final CertificateIssuanceConfig getCertificateIssuanceConfig​(String name)
        Gets details of a single CertificateIssuanceConfig.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String name =
               CertificateIssuanceConfigName.of(
                       "[PROJECT]", "[LOCATION]", "[CERTIFICATE_ISSUANCE_CONFIG]")
                   .toString();
           CertificateIssuanceConfig response =
               certificateManagerClient.getCertificateIssuanceConfig(name);
         }
         
        Parameters:
        name - Required. A name of the certificate issuance config to describe. Must be in the format `projects/*/locations/*/certificateIssuanceConfigs/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getCertificateIssuanceConfig

        public final CertificateIssuanceConfig getCertificateIssuanceConfig​(GetCertificateIssuanceConfigRequest request)
        Gets details of a single CertificateIssuanceConfig.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           GetCertificateIssuanceConfigRequest request =
               GetCertificateIssuanceConfigRequest.newBuilder()
                   .setName(
                       CertificateIssuanceConfigName.of(
                               "[PROJECT]", "[LOCATION]", "[CERTIFICATE_ISSUANCE_CONFIG]")
                           .toString())
                   .build();
           CertificateIssuanceConfig response =
               certificateManagerClient.getCertificateIssuanceConfig(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
      • getCertificateIssuanceConfigCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetCertificateIssuanceConfigRequest,​CertificateIssuanceConfig> getCertificateIssuanceConfigCallable()
        Gets details of a single CertificateIssuanceConfig.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           GetCertificateIssuanceConfigRequest request =
               GetCertificateIssuanceConfigRequest.newBuilder()
                   .setName(
                       CertificateIssuanceConfigName.of(
                               "[PROJECT]", "[LOCATION]", "[CERTIFICATE_ISSUANCE_CONFIG]")
                           .toString())
                   .build();
           ApiFuture<CertificateIssuanceConfig> future =
               certificateManagerClient.getCertificateIssuanceConfigCallable().futureCall(request);
           // Do something.
           CertificateIssuanceConfig response = future.get();
         }
         
      • createCertificateIssuanceConfigAsync

        public final com.google.api.gax.longrunning.OperationFuture<CertificateIssuanceConfig,​OperationMetadata> createCertificateIssuanceConfigAsync​(LocationName parent,
                                                                                                                                                            CertificateIssuanceConfig certificateIssuanceConfig,
                                                                                                                                                            String certificateIssuanceConfigId)
        Creates a new CertificateIssuanceConfig in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           CertificateIssuanceConfig certificateIssuanceConfig =
               CertificateIssuanceConfig.newBuilder().build();
           String certificateIssuanceConfigId = "certificateIssuanceConfigId1910303023";
           CertificateIssuanceConfig response =
               certificateManagerClient
                   .createCertificateIssuanceConfigAsync(
                       parent, certificateIssuanceConfig, certificateIssuanceConfigId)
                   .get();
         }
         
        Parameters:
        parent - Required. The parent resource of the certificate issuance config. Must be in the format `projects/*/locations/*`.
        certificateIssuanceConfig - Required. A definition of the certificate issuance config to create.
        certificateIssuanceConfigId - Required. A user-provided name of the certificate config.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createCertificateIssuanceConfigAsync

        public final com.google.api.gax.longrunning.OperationFuture<CertificateIssuanceConfig,​OperationMetadata> createCertificateIssuanceConfigAsync​(String parent,
                                                                                                                                                            CertificateIssuanceConfig certificateIssuanceConfig,
                                                                                                                                                            String certificateIssuanceConfigId)
        Creates a new CertificateIssuanceConfig in a given project and location.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           CertificateIssuanceConfig certificateIssuanceConfig =
               CertificateIssuanceConfig.newBuilder().build();
           String certificateIssuanceConfigId = "certificateIssuanceConfigId1910303023";
           CertificateIssuanceConfig response =
               certificateManagerClient
                   .createCertificateIssuanceConfigAsync(
                       parent, certificateIssuanceConfig, certificateIssuanceConfigId)
                   .get();
         }
         
        Parameters:
        parent - Required. The parent resource of the certificate issuance config. Must be in the format `projects/*/locations/*`.
        certificateIssuanceConfig - Required. A definition of the certificate issuance config to create.
        certificateIssuanceConfigId - Required. A user-provided name of the certificate config.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createCertificateIssuanceConfigAsync

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CreateCertificateIssuanceConfigRequest request =
               CreateCertificateIssuanceConfigRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setCertificateIssuanceConfigId("certificateIssuanceConfigId1910303023")
                   .setCertificateIssuanceConfig(CertificateIssuanceConfig.newBuilder().build())
                   .build();
           CertificateIssuanceConfig response =
               certificateManagerClient.createCertificateIssuanceConfigAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createCertificateIssuanceConfigOperationCallable

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CreateCertificateIssuanceConfigRequest request =
               CreateCertificateIssuanceConfigRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setCertificateIssuanceConfigId("certificateIssuanceConfigId1910303023")
                   .setCertificateIssuanceConfig(CertificateIssuanceConfig.newBuilder().build())
                   .build();
           OperationFuture<CertificateIssuanceConfig, OperationMetadata> future =
               certificateManagerClient
                   .createCertificateIssuanceConfigOperationCallable()
                   .futureCall(request);
           // Do something.
           CertificateIssuanceConfig response = future.get();
         }
         
      • createCertificateIssuanceConfigCallable

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CreateCertificateIssuanceConfigRequest request =
               CreateCertificateIssuanceConfigRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setCertificateIssuanceConfigId("certificateIssuanceConfigId1910303023")
                   .setCertificateIssuanceConfig(CertificateIssuanceConfig.newBuilder().build())
                   .build();
           ApiFuture<Operation> future =
               certificateManagerClient.createCertificateIssuanceConfigCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • deleteCertificateIssuanceConfigAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteCertificateIssuanceConfigAsync​(CertificateIssuanceConfigName name)
        Deletes a single CertificateIssuanceConfig.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           CertificateIssuanceConfigName name =
               CertificateIssuanceConfigName.of(
                   "[PROJECT]", "[LOCATION]", "[CERTIFICATE_ISSUANCE_CONFIG]");
           certificateManagerClient.deleteCertificateIssuanceConfigAsync(name).get();
         }
         
        Parameters:
        name - Required. A name of the certificate issuance config to delete. Must be in the format `projects/*/locations/*/certificateIssuanceConfigs/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteCertificateIssuanceConfigAsync

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

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           String name =
               CertificateIssuanceConfigName.of(
                       "[PROJECT]", "[LOCATION]", "[CERTIFICATE_ISSUANCE_CONFIG]")
                   .toString();
           certificateManagerClient.deleteCertificateIssuanceConfigAsync(name).get();
         }
         
        Parameters:
        name - Required. A name of the certificate issuance config to delete. Must be in the format `projects/*/locations/*/certificateIssuanceConfigs/*`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteCertificateIssuanceConfigAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,​OperationMetadata> deleteCertificateIssuanceConfigAsync​(DeleteCertificateIssuanceConfigRequest request)
        Deletes a single CertificateIssuanceConfig.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DeleteCertificateIssuanceConfigRequest request =
               DeleteCertificateIssuanceConfigRequest.newBuilder()
                   .setName(
                       CertificateIssuanceConfigName.of(
                               "[PROJECT]", "[LOCATION]", "[CERTIFICATE_ISSUANCE_CONFIG]")
                           .toString())
                   .build();
           certificateManagerClient.deleteCertificateIssuanceConfigAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteCertificateIssuanceConfigOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<DeleteCertificateIssuanceConfigRequest,​com.google.protobuf.Empty,​OperationMetadata> deleteCertificateIssuanceConfigOperationCallable()
        Deletes a single CertificateIssuanceConfig.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DeleteCertificateIssuanceConfigRequest request =
               DeleteCertificateIssuanceConfigRequest.newBuilder()
                   .setName(
                       CertificateIssuanceConfigName.of(
                               "[PROJECT]", "[LOCATION]", "[CERTIFICATE_ISSUANCE_CONFIG]")
                           .toString())
                   .build();
           OperationFuture<Empty, OperationMetadata> future =
               certificateManagerClient
                   .deleteCertificateIssuanceConfigOperationCallable()
                   .futureCall(request);
           // Do something.
           future.get();
         }
         
      • deleteCertificateIssuanceConfigCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteCertificateIssuanceConfigRequest,​com.google.longrunning.Operation> deleteCertificateIssuanceConfigCallable()
        Deletes a single CertificateIssuanceConfig.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (CertificateManagerClient certificateManagerClient = CertificateManagerClient.create()) {
           DeleteCertificateIssuanceConfigRequest request =
               DeleteCertificateIssuanceConfigRequest.newBuilder()
                   .setName(
                       CertificateIssuanceConfigName.of(
                               "[PROJECT]", "[LOCATION]", "[CERTIFICATE_ISSUANCE_CONFIG]")
                           .toString())
                   .build();
           ApiFuture<Operation> future =
               certificateManagerClient.deleteCertificateIssuanceConfigCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • listLocations

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