Class EssentialContactsServiceClient

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

    @Generated("by gapic-generator-java")
    public class EssentialContactsServiceClient
    extends Object
    implements com.google.api.gax.core.BackgroundResource
    Service Description: Manages contacts for important Google Cloud notifications.

    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 (EssentialContactsServiceClient essentialContactsServiceClient =
         EssentialContactsServiceClient.create()) {
       FolderName parent = FolderName.of("[FOLDER]");
       Contact contact = Contact.newBuilder().build();
       Contact response = essentialContactsServiceClient.createContact(parent, contact);
     }
     

    Note: close() needs to be called on the EssentialContactsServiceClient 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 EssentialContactsServiceSettings 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
     EssentialContactsServiceSettings essentialContactsServiceSettings =
         EssentialContactsServiceSettings.newBuilder()
             .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
             .build();
     EssentialContactsServiceClient essentialContactsServiceClient =
         EssentialContactsServiceClient.create(essentialContactsServiceSettings);
     

    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
     EssentialContactsServiceSettings essentialContactsServiceSettings =
         EssentialContactsServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
     EssentialContactsServiceClient essentialContactsServiceClient =
         EssentialContactsServiceClient.create(essentialContactsServiceSettings);
     

    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
     EssentialContactsServiceSettings essentialContactsServiceSettings =
         EssentialContactsServiceSettings.newHttpJsonBuilder().build();
     EssentialContactsServiceClient essentialContactsServiceClient =
         EssentialContactsServiceClient.create(essentialContactsServiceSettings);
     

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

    • Constructor Detail

      • EssentialContactsServiceClient

        protected EssentialContactsServiceClient​(EssentialContactsServiceSettings settings)
                                          throws IOException
        Constructs an instance of EssentialContactsServiceClient, 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

      • createContact

        public final Contact createContact​(FolderName parent,
                                           Contact contact)
        Adds a new contact for a resource.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           FolderName parent = FolderName.of("[FOLDER]");
           Contact contact = Contact.newBuilder().build();
           Contact response = essentialContactsServiceClient.createContact(parent, contact);
         }
         
        Parameters:
        parent - Required. The resource to save this contact for. Format: organizations/{organization_id}, folders/{folder_id} or projects/{project_id}
        contact - Required. The contact to create. Must specify an email address and language tag.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createContact

        public final Contact createContact​(OrganizationName parent,
                                           Contact contact)
        Adds a new contact for a resource.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           OrganizationName parent = OrganizationName.of("[ORGANIZATION]");
           Contact contact = Contact.newBuilder().build();
           Contact response = essentialContactsServiceClient.createContact(parent, contact);
         }
         
        Parameters:
        parent - Required. The resource to save this contact for. Format: organizations/{organization_id}, folders/{folder_id} or projects/{project_id}
        contact - Required. The contact to create. Must specify an email address and language tag.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createContact

        public final Contact createContact​(ProjectName parent,
                                           Contact contact)
        Adds a new contact for a resource.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           Contact contact = Contact.newBuilder().build();
           Contact response = essentialContactsServiceClient.createContact(parent, contact);
         }
         
        Parameters:
        parent - Required. The resource to save this contact for. Format: organizations/{organization_id}, folders/{folder_id} or projects/{project_id}
        contact - Required. The contact to create. Must specify an email address and language tag.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createContact

        public final Contact createContact​(String parent,
                                           Contact contact)
        Adds a new contact for a resource.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           String parent = ProjectName.of("[PROJECT]").toString();
           Contact contact = Contact.newBuilder().build();
           Contact response = essentialContactsServiceClient.createContact(parent, contact);
         }
         
        Parameters:
        parent - Required. The resource to save this contact for. Format: organizations/{organization_id}, folders/{folder_id} or projects/{project_id}
        contact - Required. The contact to create. Must specify an email address and language tag.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createContact

        public final Contact createContact​(CreateContactRequest request)
        Adds a new contact for a resource.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           CreateContactRequest request =
               CreateContactRequest.newBuilder()
                   .setParent(ProjectName.of("[PROJECT]").toString())
                   .setContact(Contact.newBuilder().build())
                   .build();
           Contact response = essentialContactsServiceClient.createContact(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
      • createContactCallable

        public final com.google.api.gax.rpc.UnaryCallable<CreateContactRequest,​Contact> createContactCallable()
        Adds a new contact for a resource.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           CreateContactRequest request =
               CreateContactRequest.newBuilder()
                   .setParent(ProjectName.of("[PROJECT]").toString())
                   .setContact(Contact.newBuilder().build())
                   .build();
           ApiFuture<Contact> future =
               essentialContactsServiceClient.createContactCallable().futureCall(request);
           // Do something.
           Contact response = future.get();
         }
         
      • updateContact

        public final Contact updateContact​(Contact contact,
                                           com.google.protobuf.FieldMask updateMask)
        Updates a contact. Note: A contact's email address cannot be changed.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           Contact contact = Contact.newBuilder().build();
           FieldMask updateMask = FieldMask.newBuilder().build();
           Contact response = essentialContactsServiceClient.updateContact(contact, updateMask);
         }
         
        Parameters:
        contact - Required. The contact resource to replace the existing saved contact. Note: the email address of the contact cannot be modified.
        updateMask - Optional. The update mask applied 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
      • updateContact

        public final Contact updateContact​(UpdateContactRequest request)
        Updates a contact. Note: A contact's email address cannot be changed.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           UpdateContactRequest request =
               UpdateContactRequest.newBuilder()
                   .setContact(Contact.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           Contact response = essentialContactsServiceClient.updateContact(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
      • updateContactCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateContactRequest,​Contact> updateContactCallable()
        Updates a contact. Note: A contact's email address cannot be changed.

        Sample code:

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

        public final EssentialContactsServiceClient.ListContactsPagedResponse listContacts​(FolderName parent)
        Lists the contacts that have been set on a resource.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           FolderName parent = FolderName.of("[FOLDER]");
           for (Contact element : essentialContactsServiceClient.listContacts(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The parent resource name. Format: organizations/{organization_id}, folders/{folder_id} or projects/{project_id}
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listContacts

        public final EssentialContactsServiceClient.ListContactsPagedResponse listContacts​(OrganizationName parent)
        Lists the contacts that have been set on a resource.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           OrganizationName parent = OrganizationName.of("[ORGANIZATION]");
           for (Contact element : essentialContactsServiceClient.listContacts(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The parent resource name. Format: organizations/{organization_id}, folders/{folder_id} or projects/{project_id}
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listContacts

        public final EssentialContactsServiceClient.ListContactsPagedResponse listContacts​(ProjectName parent)
        Lists the contacts that have been set on a resource.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           for (Contact element : essentialContactsServiceClient.listContacts(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The parent resource name. Format: organizations/{organization_id}, folders/{folder_id} or projects/{project_id}
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listContacts

        public final EssentialContactsServiceClient.ListContactsPagedResponse listContacts​(String parent)
        Lists the contacts that have been set on a resource.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           String parent = ProjectName.of("[PROJECT]").toString();
           for (Contact element : essentialContactsServiceClient.listContacts(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The parent resource name. Format: organizations/{organization_id}, folders/{folder_id} or projects/{project_id}
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listContacts

        public final EssentialContactsServiceClient.ListContactsPagedResponse listContacts​(ListContactsRequest request)
        Lists the contacts that have been set on a resource.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           ListContactsRequest request =
               ListContactsRequest.newBuilder()
                   .setParent(ProjectName.of("[PROJECT]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           for (Contact element : essentialContactsServiceClient.listContacts(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
      • listContactsPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListContactsRequest,​EssentialContactsServiceClient.ListContactsPagedResponse> listContactsPagedCallable()
        Lists the contacts that have been set on a resource.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           ListContactsRequest request =
               ListContactsRequest.newBuilder()
                   .setParent(ProjectName.of("[PROJECT]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           ApiFuture<Contact> future =
               essentialContactsServiceClient.listContactsPagedCallable().futureCall(request);
           // Do something.
           for (Contact element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listContactsCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListContactsRequest,​ListContactsResponse> listContactsCallable()
        Lists the contacts that have been set on a resource.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           ListContactsRequest request =
               ListContactsRequest.newBuilder()
                   .setParent(ProjectName.of("[PROJECT]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           while (true) {
             ListContactsResponse response =
                 essentialContactsServiceClient.listContactsCallable().call(request);
             for (Contact element : response.getContactsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getContact

        public final Contact getContact​(ContactName name)
        Gets a single contact.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           ContactName name = ContactName.ofProjectContactName("[PROJECT]", "[CONTACT]");
           Contact response = essentialContactsServiceClient.getContact(name);
         }
         
        Parameters:
        name - Required. The name of the contact to retrieve. Format: organizations/{organization_id}/contacts/{contact_id}, folders/{folder_id}/contacts/{contact_id} or projects/{project_id}/contacts/{contact_id}
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getContact

        public final Contact getContact​(String name)
        Gets a single contact.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           String name = ContactName.ofProjectContactName("[PROJECT]", "[CONTACT]").toString();
           Contact response = essentialContactsServiceClient.getContact(name);
         }
         
        Parameters:
        name - Required. The name of the contact to retrieve. Format: organizations/{organization_id}/contacts/{contact_id}, folders/{folder_id}/contacts/{contact_id} or projects/{project_id}/contacts/{contact_id}
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getContact

        public final Contact getContact​(GetContactRequest request)
        Gets a single contact.

        Sample code:

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

        public final com.google.api.gax.rpc.UnaryCallable<GetContactRequest,​Contact> getContactCallable()
        Gets a single contact.

        Sample code:

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

        public final void deleteContact​(ContactName name)
        Deletes a contact.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           ContactName name = ContactName.ofProjectContactName("[PROJECT]", "[CONTACT]");
           essentialContactsServiceClient.deleteContact(name);
         }
         
        Parameters:
        name - Required. The name of the contact to delete. Format: organizations/{organization_id}/contacts/{contact_id}, folders/{folder_id}/contacts/{contact_id} or projects/{project_id}/contacts/{contact_id}
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteContact

        public final void deleteContact​(String name)
        Deletes a contact.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           String name = ContactName.ofProjectContactName("[PROJECT]", "[CONTACT]").toString();
           essentialContactsServiceClient.deleteContact(name);
         }
         
        Parameters:
        name - Required. The name of the contact to delete. Format: organizations/{organization_id}/contacts/{contact_id}, folders/{folder_id}/contacts/{contact_id} or projects/{project_id}/contacts/{contact_id}
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteContact

        public final void deleteContact​(DeleteContactRequest request)
        Deletes a contact.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           DeleteContactRequest request =
               DeleteContactRequest.newBuilder()
                   .setName(ContactName.ofProjectContactName("[PROJECT]", "[CONTACT]").toString())
                   .build();
           essentialContactsServiceClient.deleteContact(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
      • deleteContactCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteContactRequest,​com.google.protobuf.Empty> deleteContactCallable()
        Deletes a contact.

        Sample code:

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

        public final EssentialContactsServiceClient.ComputeContactsPagedResponse computeContacts​(ComputeContactsRequest request)
        Lists all contacts for the resource that are subscribed to the specified notification categories, including contacts inherited from any parent resources.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           ComputeContactsRequest request =
               ComputeContactsRequest.newBuilder()
                   .setParent(ProjectName.of("[PROJECT]").toString())
                   .addAllNotificationCategories(new ArrayList<NotificationCategory>())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           for (Contact element : essentialContactsServiceClient.computeContacts(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
      • computeContactsPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ComputeContactsRequest,​EssentialContactsServiceClient.ComputeContactsPagedResponse> computeContactsPagedCallable()
        Lists all contacts for the resource that are subscribed to the specified notification categories, including contacts inherited from any parent resources.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           ComputeContactsRequest request =
               ComputeContactsRequest.newBuilder()
                   .setParent(ProjectName.of("[PROJECT]").toString())
                   .addAllNotificationCategories(new ArrayList<NotificationCategory>())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           ApiFuture<Contact> future =
               essentialContactsServiceClient.computeContactsPagedCallable().futureCall(request);
           // Do something.
           for (Contact element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • computeContactsCallable

        public final com.google.api.gax.rpc.UnaryCallable<ComputeContactsRequest,​ComputeContactsResponse> computeContactsCallable()
        Lists all contacts for the resource that are subscribed to the specified notification categories, including contacts inherited from any parent resources.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           ComputeContactsRequest request =
               ComputeContactsRequest.newBuilder()
                   .setParent(ProjectName.of("[PROJECT]").toString())
                   .addAllNotificationCategories(new ArrayList<NotificationCategory>())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           while (true) {
             ComputeContactsResponse response =
                 essentialContactsServiceClient.computeContactsCallable().call(request);
             for (Contact element : response.getContactsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • sendTestMessage

        public final void sendTestMessage​(SendTestMessageRequest request)
        Allows a contact admin to send a test message to contact to verify that it has been configured correctly.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           SendTestMessageRequest request =
               SendTestMessageRequest.newBuilder()
                   .addAllContacts(new ArrayList<String>())
                   .setResource(ProjectName.of("[PROJECT]").toString())
                   .setNotificationCategory(NotificationCategory.forNumber(0))
                   .build();
           essentialContactsServiceClient.sendTestMessage(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
      • sendTestMessageCallable

        public final com.google.api.gax.rpc.UnaryCallable<SendTestMessageRequest,​com.google.protobuf.Empty> sendTestMessageCallable()
        Allows a contact admin to send a test message to contact to verify that it has been configured correctly.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (EssentialContactsServiceClient essentialContactsServiceClient =
             EssentialContactsServiceClient.create()) {
           SendTestMessageRequest request =
               SendTestMessageRequest.newBuilder()
                   .addAllContacts(new ArrayList<String>())
                   .setResource(ProjectName.of("[PROJECT]").toString())
                   .setNotificationCategory(NotificationCategory.forNumber(0))
                   .build();
           ApiFuture<Empty> future =
               essentialContactsServiceClient.sendTestMessageCallable().futureCall(request);
           // Do something.
           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