Class GroupServiceClient (3.3.6)

public class GroupServiceClient implements BackgroundResource

Service Description: The Group API lets you inspect and manage your groups.

A group is a named filter that is used to identify a collection of monitored resources. Groups are typically used to mirror the physical and/or logical topology of the environment. Because group membership is computed dynamically, monitored resources that are started in the future are automatically placed in matching groups. By using a group to name monitored resources in, for example, an alert policy, the target of that alert policy is updated automatically as monitored resources are added and removed from the infrastructure.

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 for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   GroupName name = GroupName.ofProjectGroupName("[PROJECT]", "[GROUP]");
   Group response = groupServiceClient.getGroup(name);
 }
 

Note: close() needs to be called on the GroupServiceClient 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 GroupServiceSettings to create(). For example:

To customize credentials:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 GroupServiceSettings groupServiceSettings =
     GroupServiceSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 GroupServiceClient groupServiceClient = GroupServiceClient.create(groupServiceSettings);
 

To customize the endpoint:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 GroupServiceSettings groupServiceSettings =
     GroupServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
 GroupServiceClient groupServiceClient = GroupServiceClient.create(groupServiceSettings);
 

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

Inheritance

java.lang.Object > GroupServiceClient

Implements

BackgroundResource

Static Methods

create()

public static final GroupServiceClient create()

Constructs an instance of GroupServiceClient with default settings.

Returns
TypeDescription
GroupServiceClient
Exceptions
TypeDescription
IOException

create(GroupServiceSettings settings)

public static final GroupServiceClient create(GroupServiceSettings settings)

Constructs an instance of GroupServiceClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.

Parameter
NameDescription
settingsGroupServiceSettings
Returns
TypeDescription
GroupServiceClient
Exceptions
TypeDescription
IOException

create(GroupServiceStub stub)

public static final GroupServiceClient create(GroupServiceStub stub)

Constructs an instance of GroupServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(GroupServiceSettings).

Parameter
NameDescription
stubGroupServiceStub
Returns
TypeDescription
GroupServiceClient

Constructors

GroupServiceClient(GroupServiceSettings settings)

protected GroupServiceClient(GroupServiceSettings settings)

Constructs an instance of GroupServiceClient, 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.

Parameter
NameDescription
settingsGroupServiceSettings

GroupServiceClient(GroupServiceStub stub)

protected GroupServiceClient(GroupServiceStub stub)
Parameter
NameDescription
stubGroupServiceStub

Methods

awaitTermination(long duration, TimeUnit unit)

public boolean awaitTermination(long duration, TimeUnit unit)
Parameters
NameDescription
durationlong
unitTimeUnit
Returns
TypeDescription
boolean
Exceptions
TypeDescription
InterruptedException

close()

public final void close()

createGroup(ResourceName name, Group group)

public final Group createGroup(ResourceName name, Group group)

Creates a new group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   ResourceName name = ResourceName.of("[FOLDER]");
   Group group = Group.newBuilder().build();
   Group response = groupServiceClient.createGroup(name, group);
 }
 
Parameters
NameDescription
namecom.google.api.resourcenames.ResourceName

Required. The project in which to create the group. The format is:

projects/[PROJECT_ID_OR_NUMBER]

groupGroup

Required. A group definition. It is an error to define the name field because the system assigns the name.

Returns
TypeDescription
Group

createGroup(CreateGroupRequest request)

public final Group createGroup(CreateGroupRequest request)

Creates a new group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   CreateGroupRequest request =
       CreateGroupRequest.newBuilder()
           .setName(ProjectName.of("[PROJECT]").toString())
           .setGroup(Group.newBuilder().build())
           .setValidateOnly(true)
           .build();
   Group response = groupServiceClient.createGroup(request);
 }
 
Parameter
NameDescription
requestCreateGroupRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
Group

createGroup(OrganizationName name, Group group)

public final Group createGroup(OrganizationName name, Group group)

Creates a new group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   OrganizationName name = OrganizationName.of("[ORGANIZATION]");
   Group group = Group.newBuilder().build();
   Group response = groupServiceClient.createGroup(name, group);
 }
 
Parameters
NameDescription
nameOrganizationName

Required. The project in which to create the group. The format is:

projects/[PROJECT_ID_OR_NUMBER]

groupGroup

Required. A group definition. It is an error to define the name field because the system assigns the name.

Returns
TypeDescription
Group

createGroup(ProjectName name, Group group)

public final Group createGroup(ProjectName name, Group group)

Creates a new group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   ProjectName name = ProjectName.of("[PROJECT]");
   Group group = Group.newBuilder().build();
   Group response = groupServiceClient.createGroup(name, group);
 }
 
Parameters
NameDescription
nameProjectName

Required. The project in which to create the group. The format is:

projects/[PROJECT_ID_OR_NUMBER]

groupGroup

Required. A group definition. It is an error to define the name field because the system assigns the name.

Returns
TypeDescription
Group

createGroup(String name, Group group)

public final Group createGroup(String name, Group group)

Creates a new group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   String name = ProjectName.of("[PROJECT]").toString();
   Group group = Group.newBuilder().build();
   Group response = groupServiceClient.createGroup(name, group);
 }
 
Parameters
NameDescription
nameString

Required. The project in which to create the group. The format is:

projects/[PROJECT_ID_OR_NUMBER]

groupGroup

Required. A group definition. It is an error to define the name field because the system assigns the name.

Returns
TypeDescription
Group

createGroupCallable()

public final UnaryCallable<CreateGroupRequest,Group> createGroupCallable()

Creates a new group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   CreateGroupRequest request =
       CreateGroupRequest.newBuilder()
           .setName(ProjectName.of("[PROJECT]").toString())
           .setGroup(Group.newBuilder().build())
           .setValidateOnly(true)
           .build();
   ApiFuture<Group> future = groupServiceClient.createGroupCallable().futureCall(request);
   // Do something.
   Group response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<CreateGroupRequest,Group>

deleteGroup(DeleteGroupRequest request)

public final void deleteGroup(DeleteGroupRequest request)

Deletes an existing group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   DeleteGroupRequest request =
       DeleteGroupRequest.newBuilder()
           .setName(GroupName.ofProjectGroupName("[PROJECT]", "[GROUP]").toString())
           .setRecursive(true)
           .build();
   groupServiceClient.deleteGroup(request);
 }
 
Parameter
NameDescription
requestDeleteGroupRequest

The request object containing all of the parameters for the API call.

deleteGroup(GroupName name)

public final void deleteGroup(GroupName name)

Deletes an existing group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   GroupName name = GroupName.ofProjectGroupName("[PROJECT]", "[GROUP]");
   groupServiceClient.deleteGroup(name);
 }
 
Parameter
NameDescription
nameGroupName

Required. The group to delete. The format is:

projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID]

deleteGroup(String name)

public final void deleteGroup(String name)

Deletes an existing group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   String name = GroupName.ofProjectGroupName("[PROJECT]", "[GROUP]").toString();
   groupServiceClient.deleteGroup(name);
 }
 
Parameter
NameDescription
nameString

Required. The group to delete. The format is:

projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID]

deleteGroupCallable()

public final UnaryCallable<DeleteGroupRequest,Empty> deleteGroupCallable()

Deletes an existing group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   DeleteGroupRequest request =
       DeleteGroupRequest.newBuilder()
           .setName(GroupName.ofProjectGroupName("[PROJECT]", "[GROUP]").toString())
           .setRecursive(true)
           .build();
   ApiFuture<Empty> future = groupServiceClient.deleteGroupCallable().futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
UnaryCallable<DeleteGroupRequest,Empty>

getGroup(GetGroupRequest request)

public final Group getGroup(GetGroupRequest request)

Gets a single group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   GetGroupRequest request =
       GetGroupRequest.newBuilder()
           .setName(GroupName.ofProjectGroupName("[PROJECT]", "[GROUP]").toString())
           .build();
   Group response = groupServiceClient.getGroup(request);
 }
 
Parameter
NameDescription
requestGetGroupRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
Group

getGroup(GroupName name)

public final Group getGroup(GroupName name)

Gets a single group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   GroupName name = GroupName.ofProjectGroupName("[PROJECT]", "[GROUP]");
   Group response = groupServiceClient.getGroup(name);
 }
 
Parameter
NameDescription
nameGroupName

Required. The group to retrieve. The format is:

projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID]

Returns
TypeDescription
Group

getGroup(String name)

public final Group getGroup(String name)

Gets a single group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   String name = GroupName.ofProjectGroupName("[PROJECT]", "[GROUP]").toString();
   Group response = groupServiceClient.getGroup(name);
 }
 
Parameter
NameDescription
nameString

Required. The group to retrieve. The format is:

projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID]

Returns
TypeDescription
Group

getGroupCallable()

public final UnaryCallable<GetGroupRequest,Group> getGroupCallable()

Gets a single group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   GetGroupRequest request =
       GetGroupRequest.newBuilder()
           .setName(GroupName.ofProjectGroupName("[PROJECT]", "[GROUP]").toString())
           .build();
   ApiFuture<Group> future = groupServiceClient.getGroupCallable().futureCall(request);
   // Do something.
   Group response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetGroupRequest,Group>

getSettings()

public final GroupServiceSettings getSettings()
Returns
TypeDescription
GroupServiceSettings

getStub()

public GroupServiceStub getStub()
Returns
TypeDescription
GroupServiceStub

isShutdown()

public boolean isShutdown()
Returns
TypeDescription
boolean

isTerminated()

public boolean isTerminated()
Returns
TypeDescription
boolean

listGroupMembers(GroupName name)

public final GroupServiceClient.ListGroupMembersPagedResponse listGroupMembers(GroupName name)

Lists the monitored resources that are members of a group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   GroupName name = GroupName.ofProjectGroupName("[PROJECT]", "[GROUP]");
   for (MonitoredResource element : groupServiceClient.listGroupMembers(name).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
nameGroupName

Required. The group whose members are listed. The format is:

projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID]

Returns
TypeDescription
GroupServiceClient.ListGroupMembersPagedResponse

listGroupMembers(ListGroupMembersRequest request)

public final GroupServiceClient.ListGroupMembersPagedResponse listGroupMembers(ListGroupMembersRequest request)

Lists the monitored resources that are members of a group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   ListGroupMembersRequest request =
       ListGroupMembersRequest.newBuilder()
           .setName(GroupName.ofProjectGroupName("[PROJECT]", "[GROUP]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .setInterval(TimeInterval.newBuilder().build())
           .build();
   for (MonitoredResource element : groupServiceClient.listGroupMembers(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListGroupMembersRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
GroupServiceClient.ListGroupMembersPagedResponse

listGroupMembers(String name)

public final GroupServiceClient.ListGroupMembersPagedResponse listGroupMembers(String name)

Lists the monitored resources that are members of a group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   String name = GroupName.ofProjectGroupName("[PROJECT]", "[GROUP]").toString();
   for (MonitoredResource element : groupServiceClient.listGroupMembers(name).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
nameString

Required. The group whose members are listed. The format is:

projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID]

Returns
TypeDescription
GroupServiceClient.ListGroupMembersPagedResponse

listGroupMembersCallable()

public final UnaryCallable<ListGroupMembersRequest,ListGroupMembersResponse> listGroupMembersCallable()

Lists the monitored resources that are members of a group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   ListGroupMembersRequest request =
       ListGroupMembersRequest.newBuilder()
           .setName(GroupName.ofProjectGroupName("[PROJECT]", "[GROUP]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .setInterval(TimeInterval.newBuilder().build())
           .build();
   while (true) {
     ListGroupMembersResponse response =
         groupServiceClient.listGroupMembersCallable().call(request);
     for (MonitoredResource element : response.getMembersList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListGroupMembersRequest,ListGroupMembersResponse>

listGroupMembersPagedCallable()

public final UnaryCallable<ListGroupMembersRequest,GroupServiceClient.ListGroupMembersPagedResponse> listGroupMembersPagedCallable()

Lists the monitored resources that are members of a group.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   ListGroupMembersRequest request =
       ListGroupMembersRequest.newBuilder()
           .setName(GroupName.ofProjectGroupName("[PROJECT]", "[GROUP]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .setInterval(TimeInterval.newBuilder().build())
           .build();
   ApiFuture<MonitoredResource> future =
       groupServiceClient.listGroupMembersPagedCallable().futureCall(request);
   // Do something.
   for (MonitoredResource element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListGroupMembersRequest,ListGroupMembersPagedResponse>

listGroups(ResourceName name)

public final GroupServiceClient.ListGroupsPagedResponse listGroups(ResourceName name)

Lists the existing groups.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   ResourceName name = ResourceName.of("[FOLDER]");
   for (Group element : groupServiceClient.listGroups(name).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
namecom.google.api.resourcenames.ResourceName

Required. The project whose groups are to be listed. The format is:

projects/[PROJECT_ID_OR_NUMBER]

Returns
TypeDescription
GroupServiceClient.ListGroupsPagedResponse

listGroups(ListGroupsRequest request)

public final GroupServiceClient.ListGroupsPagedResponse listGroups(ListGroupsRequest request)

Lists the existing groups.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   ListGroupsRequest request =
       ListGroupsRequest.newBuilder()
           .setName(ProjectName.of("[PROJECT]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   for (Group element : groupServiceClient.listGroups(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListGroupsRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
GroupServiceClient.ListGroupsPagedResponse

listGroups(OrganizationName name)

public final GroupServiceClient.ListGroupsPagedResponse listGroups(OrganizationName name)

Lists the existing groups.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   OrganizationName name = OrganizationName.of("[ORGANIZATION]");
   for (Group element : groupServiceClient.listGroups(name).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
nameOrganizationName

Required. The project whose groups are to be listed. The format is:

projects/[PROJECT_ID_OR_NUMBER]

Returns
TypeDescription
GroupServiceClient.ListGroupsPagedResponse

listGroups(ProjectName name)

public final GroupServiceClient.ListGroupsPagedResponse listGroups(ProjectName name)

Lists the existing groups.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   ProjectName name = ProjectName.of("[PROJECT]");
   for (Group element : groupServiceClient.listGroups(name).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
nameProjectName

Required. The project whose groups are to be listed. The format is:

projects/[PROJECT_ID_OR_NUMBER]

Returns
TypeDescription
GroupServiceClient.ListGroupsPagedResponse

listGroups(String name)

public final GroupServiceClient.ListGroupsPagedResponse listGroups(String name)

Lists the existing groups.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   String name = ProjectName.of("[PROJECT]").toString();
   for (Group element : groupServiceClient.listGroups(name).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
nameString

Required. The project whose groups are to be listed. The format is:

projects/[PROJECT_ID_OR_NUMBER]

Returns
TypeDescription
GroupServiceClient.ListGroupsPagedResponse

listGroupsCallable()

public final UnaryCallable<ListGroupsRequest,ListGroupsResponse> listGroupsCallable()

Lists the existing groups.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   ListGroupsRequest request =
       ListGroupsRequest.newBuilder()
           .setName(ProjectName.of("[PROJECT]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   while (true) {
     ListGroupsResponse response = groupServiceClient.listGroupsCallable().call(request);
     for (Group element : response.getGroupList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListGroupsRequest,ListGroupsResponse>

listGroupsPagedCallable()

public final UnaryCallable<ListGroupsRequest,GroupServiceClient.ListGroupsPagedResponse> listGroupsPagedCallable()

Lists the existing groups.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   ListGroupsRequest request =
       ListGroupsRequest.newBuilder()
           .setName(ProjectName.of("[PROJECT]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   ApiFuture<Group> future = groupServiceClient.listGroupsPagedCallable().futureCall(request);
   // Do something.
   for (Group element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListGroupsRequest,ListGroupsPagedResponse>

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()

updateGroup(Group group)

public final Group updateGroup(Group group)

Updates an existing group. You can change any group attributes except name.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   Group group = Group.newBuilder().build();
   Group response = groupServiceClient.updateGroup(group);
 }
 
Parameter
NameDescription
groupGroup

Required. The new definition of the group. All fields of the existing group, excepting name, are replaced with the corresponding fields of this group.

Returns
TypeDescription
Group

updateGroup(UpdateGroupRequest request)

public final Group updateGroup(UpdateGroupRequest request)

Updates an existing group. You can change any group attributes except name.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   UpdateGroupRequest request =
       UpdateGroupRequest.newBuilder()
           .setGroup(Group.newBuilder().build())
           .setValidateOnly(true)
           .build();
   Group response = groupServiceClient.updateGroup(request);
 }
 
Parameter
NameDescription
requestUpdateGroupRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
Group

updateGroupCallable()

public final UnaryCallable<UpdateGroupRequest,Group> updateGroupCallable()

Updates an existing group. You can change any group attributes except name.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (GroupServiceClient groupServiceClient = GroupServiceClient.create()) {
   UpdateGroupRequest request =
       UpdateGroupRequest.newBuilder()
           .setGroup(Group.newBuilder().build())
           .setValidateOnly(true)
           .build();
   ApiFuture<Group> future = groupServiceClient.updateGroupCallable().futureCall(request);
   // Do something.
   Group response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<UpdateGroupRequest,Group>