Class InterconnectAttachmentGroupsClient (1.74.0)

GitHub RepositoryProduct Reference

Service Description: The InterconnectAttachmentGroups API.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   String project = "project-309310695";
   String interconnectAttachmentGroup = "interconnectAttachmentGroup-1652813650";
   InterconnectAttachmentGroup response =
       interconnectAttachmentGroupsClient.get(project, interconnectAttachmentGroup);
 }
 

Note: close() needs to be called on the InterconnectAttachmentGroupsClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().

Methods
Method Description Method Variants

Delete

Deletes the specified InterconnectAttachmentGroup in the given scope

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • deleteAsync(DeleteInterconnectAttachmentGroupRequest request)

Methods that return long-running operations have "Async" method variants that return OperationFuture, which is used to track polling of the service.

  • deleteAsync(String project, String interconnectAttachmentGroup)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • deleteOperationCallable()

  • deleteCallable()

Get

Returns the specified InterconnectAttachmentGroup resource in the given scope.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • get(GetInterconnectAttachmentGroupRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • get(String project, String interconnectAttachmentGroup)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • getCallable()

GetIamPolicy

Gets the access control policy for a resource. May be empty if no such policy or resource exists.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • getIamPolicy(GetIamPolicyInterconnectAttachmentGroupRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • getIamPolicy(String project, String resource)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • getIamPolicyCallable()

GetOperationalStatus

Returns the InterconnectAttachmentStatuses for the specified InterconnectAttachmentGroup resource.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • getOperationalStatus(GetOperationalStatusInterconnectAttachmentGroupRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • getOperationalStatus(String project, String interconnectAttachmentGroup)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • getOperationalStatusCallable()

Insert

Creates a InterconnectAttachmentGroup in the specified project in the given scope using the parameters that are included in the request.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • insertAsync(InsertInterconnectAttachmentGroupRequest request)

Methods that return long-running operations have "Async" method variants that return OperationFuture, which is used to track polling of the service.

  • insertAsync(String project, InterconnectAttachmentGroup interconnectAttachmentGroupResource)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • insertOperationCallable()

  • insertCallable()

List

Lists the InterconnectAttachmentGroups for a project in the given scope.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • list(ListInterconnectAttachmentGroupsRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • list(String project)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • listPagedCallable()

  • listCallable()

Patch

Patches the specified InterconnectAttachmentGroup resource with the data included in the request. This method supports PATCH semantics and uses JSON merge patch format and processing rules.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • patchAsync(PatchInterconnectAttachmentGroupRequest request)

Methods that return long-running operations have "Async" method variants that return OperationFuture, which is used to track polling of the service.

  • patchAsync(String project, String interconnectAttachmentGroup, InterconnectAttachmentGroup interconnectAttachmentGroupResource)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • patchOperationCallable()

  • patchCallable()

SetIamPolicy

Sets the access control policy on the specified resource. Replaces any existing policy.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • setIamPolicy(SetIamPolicyInterconnectAttachmentGroupRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • setIamPolicy(String project, String resource, GlobalSetPolicyRequest globalSetPolicyRequestResource)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • setIamPolicyCallable()

TestIamPermissions

Returns permissions that a caller has on the specified resource.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • testIamPermissions(TestIamPermissionsInterconnectAttachmentGroupRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • testIamPermissions(String project, String resource, TestPermissionsRequest testPermissionsRequestResource)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • testIamPermissionsCallable()

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 InterconnectAttachmentGroupsSettings 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
 InterconnectAttachmentGroupsSettings interconnectAttachmentGroupsSettings =
     InterconnectAttachmentGroupsSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create(interconnectAttachmentGroupsSettings);
 

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
 InterconnectAttachmentGroupsSettings interconnectAttachmentGroupsSettings =
     InterconnectAttachmentGroupsSettings.newBuilder().setEndpoint(myEndpoint).build();
 InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create(interconnectAttachmentGroupsSettings);
 

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

Inheritance

java.lang.Object > InterconnectAttachmentGroupsClient

Static Methods

create()

public static final InterconnectAttachmentGroupsClient create()

Constructs an instance of InterconnectAttachmentGroupsClient with default settings.

Returns
Type Description
InterconnectAttachmentGroupsClient
Exceptions
Type Description
IOException

create(InterconnectAttachmentGroupsSettings settings)

public static final InterconnectAttachmentGroupsClient create(InterconnectAttachmentGroupsSettings settings)

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

Parameter
Name Description
settings InterconnectAttachmentGroupsSettings
Returns
Type Description
InterconnectAttachmentGroupsClient
Exceptions
Type Description
IOException

create(InterconnectAttachmentGroupsStub stub)

public static final InterconnectAttachmentGroupsClient create(InterconnectAttachmentGroupsStub stub)

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

Parameter
Name Description
stub InterconnectAttachmentGroupsStub
Returns
Type Description
InterconnectAttachmentGroupsClient

Constructors

InterconnectAttachmentGroupsClient(InterconnectAttachmentGroupsSettings settings)

protected InterconnectAttachmentGroupsClient(InterconnectAttachmentGroupsSettings settings)

Constructs an instance of InterconnectAttachmentGroupsClient, 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
Name Description
settings InterconnectAttachmentGroupsSettings

InterconnectAttachmentGroupsClient(InterconnectAttachmentGroupsStub stub)

protected InterconnectAttachmentGroupsClient(InterconnectAttachmentGroupsStub stub)
Parameter
Name Description
stub InterconnectAttachmentGroupsStub

Methods

awaitTermination(long duration, TimeUnit unit)

public boolean awaitTermination(long duration, TimeUnit unit)
Parameters
Name Description
duration long
unit TimeUnit
Returns
Type Description
boolean
Exceptions
Type Description
InterruptedException

close()

public final void close()

deleteAsync(DeleteInterconnectAttachmentGroupRequest request)

public final OperationFuture<Operation,Operation> deleteAsync(DeleteInterconnectAttachmentGroupRequest request)

Deletes the specified InterconnectAttachmentGroup in the given scope

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   DeleteInterconnectAttachmentGroupRequest request =
       DeleteInterconnectAttachmentGroupRequest.newBuilder()
           .setInterconnectAttachmentGroup("interconnectAttachmentGroup-1652813650")
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .build();
   Operation response = interconnectAttachmentGroupsClient.deleteAsync(request).get();
 }
 
Parameter
Name Description
request DeleteInterconnectAttachmentGroupRequest

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

Returns
Type Description
OperationFuture<Operation,Operation>

deleteAsync(String project, String interconnectAttachmentGroup)

public final OperationFuture<Operation,Operation> deleteAsync(String project, String interconnectAttachmentGroup)

Deletes the specified InterconnectAttachmentGroup in the given scope

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   String project = "project-309310695";
   String interconnectAttachmentGroup = "interconnectAttachmentGroup-1652813650";
   Operation response =
       interconnectAttachmentGroupsClient
           .deleteAsync(project, interconnectAttachmentGroup)
           .get();
 }
 
Parameters
Name Description
project String

Project ID for this request.

interconnectAttachmentGroup String

Name of the InterconnectAttachmentGroup resource to delete.

Returns
Type Description
OperationFuture<Operation,Operation>

deleteCallable()

public final UnaryCallable<DeleteInterconnectAttachmentGroupRequest,Operation> deleteCallable()

Deletes the specified InterconnectAttachmentGroup in the given scope

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   DeleteInterconnectAttachmentGroupRequest request =
       DeleteInterconnectAttachmentGroupRequest.newBuilder()
           .setInterconnectAttachmentGroup("interconnectAttachmentGroup-1652813650")
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .build();
   ApiFuture<Operation> future =
       interconnectAttachmentGroupsClient.deleteCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
Type Description
UnaryCallable<DeleteInterconnectAttachmentGroupRequest,Operation>

deleteOperationCallable()

public final OperationCallable<DeleteInterconnectAttachmentGroupRequest,Operation,Operation> deleteOperationCallable()

Deletes the specified InterconnectAttachmentGroup in the given scope

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   DeleteInterconnectAttachmentGroupRequest request =
       DeleteInterconnectAttachmentGroupRequest.newBuilder()
           .setInterconnectAttachmentGroup("interconnectAttachmentGroup-1652813650")
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .build();
   OperationFuture<Operation, Operation> future =
       interconnectAttachmentGroupsClient.deleteOperationCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
Type Description
OperationCallable<DeleteInterconnectAttachmentGroupRequest,Operation,Operation>

get(GetInterconnectAttachmentGroupRequest request)

public final InterconnectAttachmentGroup get(GetInterconnectAttachmentGroupRequest request)

Returns the specified InterconnectAttachmentGroup resource in the given scope.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   GetInterconnectAttachmentGroupRequest request =
       GetInterconnectAttachmentGroupRequest.newBuilder()
           .setInterconnectAttachmentGroup("interconnectAttachmentGroup-1652813650")
           .setProject("project-309310695")
           .build();
   InterconnectAttachmentGroup response = interconnectAttachmentGroupsClient.get(request);
 }
 
Parameter
Name Description
request GetInterconnectAttachmentGroupRequest

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

Returns
Type Description
InterconnectAttachmentGroup

get(String project, String interconnectAttachmentGroup)

public final InterconnectAttachmentGroup get(String project, String interconnectAttachmentGroup)

Returns the specified InterconnectAttachmentGroup resource in the given scope.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   String project = "project-309310695";
   String interconnectAttachmentGroup = "interconnectAttachmentGroup-1652813650";
   InterconnectAttachmentGroup response =
       interconnectAttachmentGroupsClient.get(project, interconnectAttachmentGroup);
 }
 
Parameters
Name Description
project String

Project ID for this request.

interconnectAttachmentGroup String

Name of the InterconnectAttachmentGroup resource to return.

Returns
Type Description
InterconnectAttachmentGroup

getCallable()

public final UnaryCallable<GetInterconnectAttachmentGroupRequest,InterconnectAttachmentGroup> getCallable()

Returns the specified InterconnectAttachmentGroup resource in the given scope.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   GetInterconnectAttachmentGroupRequest request =
       GetInterconnectAttachmentGroupRequest.newBuilder()
           .setInterconnectAttachmentGroup("interconnectAttachmentGroup-1652813650")
           .setProject("project-309310695")
           .build();
   ApiFuture<InterconnectAttachmentGroup> future =
       interconnectAttachmentGroupsClient.getCallable().futureCall(request);
   // Do something.
   InterconnectAttachmentGroup response = future.get();
 }
 
Returns
Type Description
UnaryCallable<GetInterconnectAttachmentGroupRequest,InterconnectAttachmentGroup>

getIamPolicy(GetIamPolicyInterconnectAttachmentGroupRequest request)

public final Policy getIamPolicy(GetIamPolicyInterconnectAttachmentGroupRequest request)

Gets the access control policy for a resource. May be empty if no such policy or resource exists.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   GetIamPolicyInterconnectAttachmentGroupRequest request =
       GetIamPolicyInterconnectAttachmentGroupRequest.newBuilder()
           .setOptionsRequestedPolicyVersion(-574521795)
           .setProject("project-309310695")
           .setResource("resource-341064690")
           .build();
   Policy response = interconnectAttachmentGroupsClient.getIamPolicy(request);
 }
 
Parameter
Name Description
request GetIamPolicyInterconnectAttachmentGroupRequest

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

Returns
Type Description
Policy

getIamPolicy(String project, String resource)

public final Policy getIamPolicy(String project, String resource)

Gets the access control policy for a resource. May be empty if no such policy or resource exists.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   String project = "project-309310695";
   String resource = "resource-341064690";
   Policy response = interconnectAttachmentGroupsClient.getIamPolicy(project, resource);
 }
 
Parameters
Name Description
project String

Project ID for this request.

resource String

Name or id of the resource for this request.

Returns
Type Description
Policy

getIamPolicyCallable()

public final UnaryCallable<GetIamPolicyInterconnectAttachmentGroupRequest,Policy> getIamPolicyCallable()

Gets the access control policy for a resource. May be empty if no such policy or resource exists.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   GetIamPolicyInterconnectAttachmentGroupRequest request =
       GetIamPolicyInterconnectAttachmentGroupRequest.newBuilder()
           .setOptionsRequestedPolicyVersion(-574521795)
           .setProject("project-309310695")
           .setResource("resource-341064690")
           .build();
   ApiFuture<Policy> future =
       interconnectAttachmentGroupsClient.getIamPolicyCallable().futureCall(request);
   // Do something.
   Policy response = future.get();
 }
 
Returns
Type Description
UnaryCallable<GetIamPolicyInterconnectAttachmentGroupRequest,Policy>

getOperationalStatus(GetOperationalStatusInterconnectAttachmentGroupRequest request)

public final InterconnectAttachmentGroupsGetOperationalStatusResponse getOperationalStatus(GetOperationalStatusInterconnectAttachmentGroupRequest request)

Returns the InterconnectAttachmentStatuses for the specified InterconnectAttachmentGroup 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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   GetOperationalStatusInterconnectAttachmentGroupRequest request =
       GetOperationalStatusInterconnectAttachmentGroupRequest.newBuilder()
           .setInterconnectAttachmentGroup("interconnectAttachmentGroup-1652813650")
           .setProject("project-309310695")
           .build();
   InterconnectAttachmentGroupsGetOperationalStatusResponse response =
       interconnectAttachmentGroupsClient.getOperationalStatus(request);
 }
 
Parameter
Name Description
request GetOperationalStatusInterconnectAttachmentGroupRequest

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

Returns
Type Description
InterconnectAttachmentGroupsGetOperationalStatusResponse

getOperationalStatus(String project, String interconnectAttachmentGroup)

public final InterconnectAttachmentGroupsGetOperationalStatusResponse getOperationalStatus(String project, String interconnectAttachmentGroup)

Returns the InterconnectAttachmentStatuses for the specified InterconnectAttachmentGroup 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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   String project = "project-309310695";
   String interconnectAttachmentGroup = "interconnectAttachmentGroup-1652813650";
   InterconnectAttachmentGroupsGetOperationalStatusResponse response =
       interconnectAttachmentGroupsClient.getOperationalStatus(
           project, interconnectAttachmentGroup);
 }
 
Parameters
Name Description
project String

Project ID for this request.

interconnectAttachmentGroup String

Name of the interconnectAttachmentGroup resource to query.

Returns
Type Description
InterconnectAttachmentGroupsGetOperationalStatusResponse

getOperationalStatusCallable()

public final UnaryCallable<GetOperationalStatusInterconnectAttachmentGroupRequest,InterconnectAttachmentGroupsGetOperationalStatusResponse> getOperationalStatusCallable()

Returns the InterconnectAttachmentStatuses for the specified InterconnectAttachmentGroup 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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   GetOperationalStatusInterconnectAttachmentGroupRequest request =
       GetOperationalStatusInterconnectAttachmentGroupRequest.newBuilder()
           .setInterconnectAttachmentGroup("interconnectAttachmentGroup-1652813650")
           .setProject("project-309310695")
           .build();
   ApiFuture<InterconnectAttachmentGroupsGetOperationalStatusResponse> future =
       interconnectAttachmentGroupsClient.getOperationalStatusCallable().futureCall(request);
   // Do something.
   InterconnectAttachmentGroupsGetOperationalStatusResponse response = future.get();
 }
 
Returns
Type Description
UnaryCallable<GetOperationalStatusInterconnectAttachmentGroupRequest,InterconnectAttachmentGroupsGetOperationalStatusResponse>

getSettings()

public final InterconnectAttachmentGroupsSettings getSettings()
Returns
Type Description
InterconnectAttachmentGroupsSettings

getStub()

public InterconnectAttachmentGroupsStub getStub()
Returns
Type Description
InterconnectAttachmentGroupsStub

insertAsync(InsertInterconnectAttachmentGroupRequest request)

public final OperationFuture<Operation,Operation> insertAsync(InsertInterconnectAttachmentGroupRequest request)

Creates a InterconnectAttachmentGroup in the specified project in the given scope using the parameters that are included in the request.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   InsertInterconnectAttachmentGroupRequest request =
       InsertInterconnectAttachmentGroupRequest.newBuilder()
           .setInterconnectAttachmentGroupResource(
               InterconnectAttachmentGroup.newBuilder().build())
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .build();
   Operation response = interconnectAttachmentGroupsClient.insertAsync(request).get();
 }
 
Parameter
Name Description
request InsertInterconnectAttachmentGroupRequest

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

Returns
Type Description
OperationFuture<Operation,Operation>

insertAsync(String project, InterconnectAttachmentGroup interconnectAttachmentGroupResource)

public final OperationFuture<Operation,Operation> insertAsync(String project, InterconnectAttachmentGroup interconnectAttachmentGroupResource)

Creates a InterconnectAttachmentGroup in the specified project in the given scope using the parameters that are included in the request.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   String project = "project-309310695";
   InterconnectAttachmentGroup interconnectAttachmentGroupResource =
       InterconnectAttachmentGroup.newBuilder().build();
   Operation response =
       interconnectAttachmentGroupsClient
           .insertAsync(project, interconnectAttachmentGroupResource)
           .get();
 }
 
Parameters
Name Description
project String

Project ID for this request.

interconnectAttachmentGroupResource InterconnectAttachmentGroup

The body resource for this request

Returns
Type Description
OperationFuture<Operation,Operation>

insertCallable()

public final UnaryCallable<InsertInterconnectAttachmentGroupRequest,Operation> insertCallable()

Creates a InterconnectAttachmentGroup in the specified project in the given scope using the parameters that are included in the request.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   InsertInterconnectAttachmentGroupRequest request =
       InsertInterconnectAttachmentGroupRequest.newBuilder()
           .setInterconnectAttachmentGroupResource(
               InterconnectAttachmentGroup.newBuilder().build())
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .build();
   ApiFuture<Operation> future =
       interconnectAttachmentGroupsClient.insertCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
Type Description
UnaryCallable<InsertInterconnectAttachmentGroupRequest,Operation>

insertOperationCallable()

public final OperationCallable<InsertInterconnectAttachmentGroupRequest,Operation,Operation> insertOperationCallable()

Creates a InterconnectAttachmentGroup in the specified project in the given scope using the parameters that are included in the request.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   InsertInterconnectAttachmentGroupRequest request =
       InsertInterconnectAttachmentGroupRequest.newBuilder()
           .setInterconnectAttachmentGroupResource(
               InterconnectAttachmentGroup.newBuilder().build())
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .build();
   OperationFuture<Operation, Operation> future =
       interconnectAttachmentGroupsClient.insertOperationCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
Type Description
OperationCallable<InsertInterconnectAttachmentGroupRequest,Operation,Operation>

isShutdown()

public boolean isShutdown()
Returns
Type Description
boolean

isTerminated()

public boolean isTerminated()
Returns
Type Description
boolean

list(ListInterconnectAttachmentGroupsRequest request)

public final InterconnectAttachmentGroupsClient.ListPagedResponse list(ListInterconnectAttachmentGroupsRequest request)

Lists the InterconnectAttachmentGroups for a project in the given scope.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   ListInterconnectAttachmentGroupsRequest request =
       ListInterconnectAttachmentGroupsRequest.newBuilder()
           .setFilter("filter-1274492040")
           .setMaxResults(1128457243)
           .setOrderBy("orderBy-1207110587")
           .setPageToken("pageToken873572522")
           .setProject("project-309310695")
           .setReturnPartialSuccess(true)
           .build();
   for (InterconnectAttachmentGroup element :
       interconnectAttachmentGroupsClient.list(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
Name Description
request ListInterconnectAttachmentGroupsRequest

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

Returns
Type Description
InterconnectAttachmentGroupsClient.ListPagedResponse

list(String project)

public final InterconnectAttachmentGroupsClient.ListPagedResponse list(String project)

Lists the InterconnectAttachmentGroups for a project in the given scope.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   String project = "project-309310695";
   for (InterconnectAttachmentGroup element :
       interconnectAttachmentGroupsClient.list(project).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
Name Description
project String

Project ID for this request.

Returns
Type Description
InterconnectAttachmentGroupsClient.ListPagedResponse

listCallable()

public final UnaryCallable<ListInterconnectAttachmentGroupsRequest,InterconnectAttachmentGroupsListResponse> listCallable()

Lists the InterconnectAttachmentGroups for a project in the given scope.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   ListInterconnectAttachmentGroupsRequest request =
       ListInterconnectAttachmentGroupsRequest.newBuilder()
           .setFilter("filter-1274492040")
           .setMaxResults(1128457243)
           .setOrderBy("orderBy-1207110587")
           .setPageToken("pageToken873572522")
           .setProject("project-309310695")
           .setReturnPartialSuccess(true)
           .build();
   while (true) {
     InterconnectAttachmentGroupsListResponse response =
         interconnectAttachmentGroupsClient.listCallable().call(request);
     for (InterconnectAttachmentGroup element : response.getItemsList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
Type Description
UnaryCallable<ListInterconnectAttachmentGroupsRequest,InterconnectAttachmentGroupsListResponse>

listPagedCallable()

public final UnaryCallable<ListInterconnectAttachmentGroupsRequest,InterconnectAttachmentGroupsClient.ListPagedResponse> listPagedCallable()

Lists the InterconnectAttachmentGroups for a project in the given scope.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   ListInterconnectAttachmentGroupsRequest request =
       ListInterconnectAttachmentGroupsRequest.newBuilder()
           .setFilter("filter-1274492040")
           .setMaxResults(1128457243)
           .setOrderBy("orderBy-1207110587")
           .setPageToken("pageToken873572522")
           .setProject("project-309310695")
           .setReturnPartialSuccess(true)
           .build();
   ApiFuture<InterconnectAttachmentGroup> future =
       interconnectAttachmentGroupsClient.listPagedCallable().futureCall(request);
   // Do something.
   for (InterconnectAttachmentGroup element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
Type Description
UnaryCallable<ListInterconnectAttachmentGroupsRequest,ListPagedResponse>

patchAsync(PatchInterconnectAttachmentGroupRequest request)

public final OperationFuture<Operation,Operation> patchAsync(PatchInterconnectAttachmentGroupRequest request)

Patches the specified InterconnectAttachmentGroup resource with the data included in the request. This method supports PATCH semantics and uses JSON merge patch format and processing rules.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   PatchInterconnectAttachmentGroupRequest request =
       PatchInterconnectAttachmentGroupRequest.newBuilder()
           .setInterconnectAttachmentGroup("interconnectAttachmentGroup-1652813650")
           .setInterconnectAttachmentGroupResource(
               InterconnectAttachmentGroup.newBuilder().build())
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .setUpdateMask("updateMask-296147115")
           .build();
   Operation response = interconnectAttachmentGroupsClient.patchAsync(request).get();
 }
 
Parameter
Name Description
request PatchInterconnectAttachmentGroupRequest

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

Returns
Type Description
OperationFuture<Operation,Operation>

patchAsync(String project, String interconnectAttachmentGroup, InterconnectAttachmentGroup interconnectAttachmentGroupResource)

public final OperationFuture<Operation,Operation> patchAsync(String project, String interconnectAttachmentGroup, InterconnectAttachmentGroup interconnectAttachmentGroupResource)

Patches the specified InterconnectAttachmentGroup resource with the data included in the request. This method supports PATCH semantics and uses JSON merge patch format and processing rules.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   String project = "project-309310695";
   String interconnectAttachmentGroup = "interconnectAttachmentGroup-1652813650";
   InterconnectAttachmentGroup interconnectAttachmentGroupResource =
       InterconnectAttachmentGroup.newBuilder().build();
   Operation response =
       interconnectAttachmentGroupsClient
           .patchAsync(project, interconnectAttachmentGroup, interconnectAttachmentGroupResource)
           .get();
 }
 
Parameters
Name Description
project String

Project ID for this request.

interconnectAttachmentGroup String

Name of the InterconnectAttachmentGroup resource to patch.

interconnectAttachmentGroupResource InterconnectAttachmentGroup

The body resource for this request

Returns
Type Description
OperationFuture<Operation,Operation>

patchCallable()

public final UnaryCallable<PatchInterconnectAttachmentGroupRequest,Operation> patchCallable()

Patches the specified InterconnectAttachmentGroup resource with the data included in the request. This method supports PATCH semantics and uses JSON merge patch format and processing rules.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   PatchInterconnectAttachmentGroupRequest request =
       PatchInterconnectAttachmentGroupRequest.newBuilder()
           .setInterconnectAttachmentGroup("interconnectAttachmentGroup-1652813650")
           .setInterconnectAttachmentGroupResource(
               InterconnectAttachmentGroup.newBuilder().build())
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .setUpdateMask("updateMask-296147115")
           .build();
   ApiFuture<Operation> future =
       interconnectAttachmentGroupsClient.patchCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
Type Description
UnaryCallable<PatchInterconnectAttachmentGroupRequest,Operation>

patchOperationCallable()

public final OperationCallable<PatchInterconnectAttachmentGroupRequest,Operation,Operation> patchOperationCallable()

Patches the specified InterconnectAttachmentGroup resource with the data included in the request. This method supports PATCH semantics and uses JSON merge patch format and processing rules.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   PatchInterconnectAttachmentGroupRequest request =
       PatchInterconnectAttachmentGroupRequest.newBuilder()
           .setInterconnectAttachmentGroup("interconnectAttachmentGroup-1652813650")
           .setInterconnectAttachmentGroupResource(
               InterconnectAttachmentGroup.newBuilder().build())
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .setUpdateMask("updateMask-296147115")
           .build();
   OperationFuture<Operation, Operation> future =
       interconnectAttachmentGroupsClient.patchOperationCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
Type Description
OperationCallable<PatchInterconnectAttachmentGroupRequest,Operation,Operation>

setIamPolicy(SetIamPolicyInterconnectAttachmentGroupRequest request)

public final Policy setIamPolicy(SetIamPolicyInterconnectAttachmentGroupRequest request)

Sets the access control policy on the specified resource. Replaces any existing policy.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   SetIamPolicyInterconnectAttachmentGroupRequest request =
       SetIamPolicyInterconnectAttachmentGroupRequest.newBuilder()
           .setGlobalSetPolicyRequestResource(GlobalSetPolicyRequest.newBuilder().build())
           .setProject("project-309310695")
           .setResource("resource-341064690")
           .build();
   Policy response = interconnectAttachmentGroupsClient.setIamPolicy(request);
 }
 
Parameter
Name Description
request SetIamPolicyInterconnectAttachmentGroupRequest

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

Returns
Type Description
Policy

setIamPolicy(String project, String resource, GlobalSetPolicyRequest globalSetPolicyRequestResource)

public final Policy setIamPolicy(String project, String resource, GlobalSetPolicyRequest globalSetPolicyRequestResource)

Sets the access control policy on the specified resource. Replaces any existing policy.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   String project = "project-309310695";
   String resource = "resource-341064690";
   GlobalSetPolicyRequest globalSetPolicyRequestResource =
       GlobalSetPolicyRequest.newBuilder().build();
   Policy response =
       interconnectAttachmentGroupsClient.setIamPolicy(
           project, resource, globalSetPolicyRequestResource);
 }
 
Parameters
Name Description
project String

Project ID for this request.

resource String

Name or id of the resource for this request.

globalSetPolicyRequestResource GlobalSetPolicyRequest

The body resource for this request

Returns
Type Description
Policy

setIamPolicyCallable()

public final UnaryCallable<SetIamPolicyInterconnectAttachmentGroupRequest,Policy> setIamPolicyCallable()

Sets the access control policy on the specified resource. Replaces any existing policy.

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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   SetIamPolicyInterconnectAttachmentGroupRequest request =
       SetIamPolicyInterconnectAttachmentGroupRequest.newBuilder()
           .setGlobalSetPolicyRequestResource(GlobalSetPolicyRequest.newBuilder().build())
           .setProject("project-309310695")
           .setResource("resource-341064690")
           .build();
   ApiFuture<Policy> future =
       interconnectAttachmentGroupsClient.setIamPolicyCallable().futureCall(request);
   // Do something.
   Policy response = future.get();
 }
 
Returns
Type Description
UnaryCallable<SetIamPolicyInterconnectAttachmentGroupRequest,Policy>

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()

testIamPermissions(TestIamPermissionsInterconnectAttachmentGroupRequest request)

public final TestPermissionsResponse testIamPermissions(TestIamPermissionsInterconnectAttachmentGroupRequest request)

Returns permissions that a caller has on the specified 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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   TestIamPermissionsInterconnectAttachmentGroupRequest request =
       TestIamPermissionsInterconnectAttachmentGroupRequest.newBuilder()
           .setProject("project-309310695")
           .setResource("resource-341064690")
           .setTestPermissionsRequestResource(TestPermissionsRequest.newBuilder().build())
           .build();
   TestPermissionsResponse response =
       interconnectAttachmentGroupsClient.testIamPermissions(request);
 }
 
Parameter
Name Description
request TestIamPermissionsInterconnectAttachmentGroupRequest

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

Returns
Type Description
TestPermissionsResponse

testIamPermissions(String project, String resource, TestPermissionsRequest testPermissionsRequestResource)

public final TestPermissionsResponse testIamPermissions(String project, String resource, TestPermissionsRequest testPermissionsRequestResource)

Returns permissions that a caller has on the specified 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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   String project = "project-309310695";
   String resource = "resource-341064690";
   TestPermissionsRequest testPermissionsRequestResource =
       TestPermissionsRequest.newBuilder().build();
   TestPermissionsResponse response =
       interconnectAttachmentGroupsClient.testIamPermissions(
           project, resource, testPermissionsRequestResource);
 }
 
Parameters
Name Description
project String

Project ID for this request.

resource String

Name or id of the resource for this request.

testPermissionsRequestResource TestPermissionsRequest

The body resource for this request

Returns
Type Description
TestPermissionsResponse

testIamPermissionsCallable()

public final UnaryCallable<TestIamPermissionsInterconnectAttachmentGroupRequest,TestPermissionsResponse> testIamPermissionsCallable()

Returns permissions that a caller has on the specified 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 (InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient =
     InterconnectAttachmentGroupsClient.create()) {
   TestIamPermissionsInterconnectAttachmentGroupRequest request =
       TestIamPermissionsInterconnectAttachmentGroupRequest.newBuilder()
           .setProject("project-309310695")
           .setResource("resource-341064690")
           .setTestPermissionsRequestResource(TestPermissionsRequest.newBuilder().build())
           .build();
   ApiFuture<TestPermissionsResponse> future =
       interconnectAttachmentGroupsClient.testIamPermissionsCallable().futureCall(request);
   // Do something.
   TestPermissionsResponse response = future.get();
 }
 
Returns
Type Description
UnaryCallable<TestIamPermissionsInterconnectAttachmentGroupRequest,TestPermissionsResponse>