- 1.74.0 (latest)
- 1.73.0
- 1.72.0
- 1.70.0
- 1.69.0
- 1.68.0
- 1.67.0
- 1.66.0
- 1.65.0
- 1.64.0
- 1.63.0
- 1.62.0
- 1.61.0
- 1.59.0
- 1.58.0
- 1.57.0
- 1.56.0
- 1.55.0
- 1.54.0
- 1.53.0
- 1.52.0
- 1.51.0
- 1.50.0
- 1.49.0
- 1.47.0
- 1.46.0
- 1.45.0
- 1.44.0
- 1.43.0
- 1.42.0
- 1.41.0
- 1.40.0
- 1.39.0
- 1.38.0
- 1.37.0
- 1.34.0
- 1.33.0
- 1.32.0
- 1.31.0
- 1.30.0
- 1.29.0
- 1.28.0
- 1.27.0
- 1.26.0
- 1.25.0
- 1.24.0
- 1.23.0
- 1.22.0
- 1.21.0
- 1.20.0
- 1.19.0
- 1.18.0
- 1.17.0
- 1.16.0
- 1.15.0
- 1.14.0
- 1.13.0
- 1.12.1
- 1.11.0
- 1.9.1
- 1.8.1
- 1.7.2
- 1.6.0-beta
GitHub Repository | Product Reference |
Service Description: The InterconnectGroups 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
String project = "project-309310695";
String interconnectGroup = "interconnectGroup2103544465";
InterconnectGroup response = interconnectGroupsClient.get(project, interconnectGroup);
}
Note: close() needs to be called on the InterconnectGroupsClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
Method | Description | Method Variants |
---|---|---|
CreateMembers |
Create Interconnects with redundancy by creating them in a specified interconnect group. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
Delete |
Deletes the specified InterconnectGroup in the given scope |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
Get |
Returns the specified InterconnectGroup resource in the given scope. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
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.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetOperationalStatus |
Returns the interconnectStatuses for the specified InterconnectGroup. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
Insert |
Creates a InterconnectGroup 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.
Methods that return long-running operations have "Async" method variants that return
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
List |
Lists the InterconnectGroups 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.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
Patch |
Patches the specified InterconnectGroup 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.
Methods that return long-running operations have "Async" method variants that return
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
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.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
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.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return 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 InterconnectGroupsSettings 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
InterconnectGroupsSettings interconnectGroupsSettings =
InterconnectGroupsSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
InterconnectGroupsClient interconnectGroupsClient =
InterconnectGroupsClient.create(interconnectGroupsSettings);
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
InterconnectGroupsSettings interconnectGroupsSettings =
InterconnectGroupsSettings.newBuilder().setEndpoint(myEndpoint).build();
InterconnectGroupsClient interconnectGroupsClient =
InterconnectGroupsClient.create(interconnectGroupsSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Static Methods
create()
public static final InterconnectGroupsClient create()
Constructs an instance of InterconnectGroupsClient with default settings.
Returns | |
---|---|
Type | Description |
InterconnectGroupsClient |
Exceptions | |
---|---|
Type | Description |
IOException |
create(InterconnectGroupsSettings settings)
public static final InterconnectGroupsClient create(InterconnectGroupsSettings settings)
Constructs an instance of InterconnectGroupsClient, 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 |
InterconnectGroupsSettings |
Returns | |
---|---|
Type | Description |
InterconnectGroupsClient |
Exceptions | |
---|---|
Type | Description |
IOException |
create(InterconnectGroupsStub stub)
public static final InterconnectGroupsClient create(InterconnectGroupsStub stub)
Constructs an instance of InterconnectGroupsClient, using the given stub for making calls. This is for advanced usage - prefer using create(InterconnectGroupsSettings).
Parameter | |
---|---|
Name | Description |
stub |
InterconnectGroupsStub |
Returns | |
---|---|
Type | Description |
InterconnectGroupsClient |
Constructors
InterconnectGroupsClient(InterconnectGroupsSettings settings)
protected InterconnectGroupsClient(InterconnectGroupsSettings settings)
Constructs an instance of InterconnectGroupsClient, 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 |
InterconnectGroupsSettings |
InterconnectGroupsClient(InterconnectGroupsStub stub)
protected InterconnectGroupsClient(InterconnectGroupsStub stub)
Parameter | |
---|---|
Name | Description |
stub |
InterconnectGroupsStub |
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()
createMembersAsync(CreateMembersInterconnectGroupRequest request)
public final OperationFuture<Operation,Operation> createMembersAsync(CreateMembersInterconnectGroupRequest request)
Create Interconnects with redundancy by creating them in a specified interconnect group.
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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
CreateMembersInterconnectGroupRequest request =
CreateMembersInterconnectGroupRequest.newBuilder()
.setInterconnectGroup("interconnectGroup2103544465")
.setInterconnectGroupsCreateMembersRequestResource(
InterconnectGroupsCreateMembersRequest.newBuilder().build())
.setProject("project-309310695")
.build();
Operation response = interconnectGroupsClient.createMembersAsync(request).get();
}
Parameter | |
---|---|
Name | Description |
request |
CreateMembersInterconnectGroupRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
createMembersAsync(String project, String interconnectGroup, InterconnectGroupsCreateMembersRequest interconnectGroupsCreateMembersRequestResource)
public final OperationFuture<Operation,Operation> createMembersAsync(String project, String interconnectGroup, InterconnectGroupsCreateMembersRequest interconnectGroupsCreateMembersRequestResource)
Create Interconnects with redundancy by creating them in a specified interconnect group.
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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
String project = "project-309310695";
String interconnectGroup = "interconnectGroup2103544465";
InterconnectGroupsCreateMembersRequest interconnectGroupsCreateMembersRequestResource =
InterconnectGroupsCreateMembersRequest.newBuilder().build();
Operation response =
interconnectGroupsClient
.createMembersAsync(
project, interconnectGroup, interconnectGroupsCreateMembersRequestResource)
.get();
}
Parameters | |
---|---|
Name | Description |
project |
String Project ID for this request. |
interconnectGroup |
String Name of the group resource to create members for. |
interconnectGroupsCreateMembersRequestResource |
InterconnectGroupsCreateMembersRequest The body resource for this request |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
createMembersCallable()
public final UnaryCallable<CreateMembersInterconnectGroupRequest,Operation> createMembersCallable()
Create Interconnects with redundancy by creating them in a specified interconnect group.
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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
CreateMembersInterconnectGroupRequest request =
CreateMembersInterconnectGroupRequest.newBuilder()
.setInterconnectGroup("interconnectGroup2103544465")
.setInterconnectGroupsCreateMembersRequestResource(
InterconnectGroupsCreateMembersRequest.newBuilder().build())
.setProject("project-309310695")
.build();
ApiFuture<Operation> future =
interconnectGroupsClient.createMembersCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<CreateMembersInterconnectGroupRequest,Operation> |
createMembersOperationCallable()
public final OperationCallable<CreateMembersInterconnectGroupRequest,Operation,Operation> createMembersOperationCallable()
Create Interconnects with redundancy by creating them in a specified interconnect group.
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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
CreateMembersInterconnectGroupRequest request =
CreateMembersInterconnectGroupRequest.newBuilder()
.setInterconnectGroup("interconnectGroup2103544465")
.setInterconnectGroupsCreateMembersRequestResource(
InterconnectGroupsCreateMembersRequest.newBuilder().build())
.setProject("project-309310695")
.build();
OperationFuture<Operation, Operation> future =
interconnectGroupsClient.createMembersOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
OperationCallable<CreateMembersInterconnectGroupRequest,Operation,Operation> |
deleteAsync(DeleteInterconnectGroupRequest request)
public final OperationFuture<Operation,Operation> deleteAsync(DeleteInterconnectGroupRequest request)
Deletes the specified InterconnectGroup 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
DeleteInterconnectGroupRequest request =
DeleteInterconnectGroupRequest.newBuilder()
.setInterconnectGroup("interconnectGroup2103544465")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
Operation response = interconnectGroupsClient.deleteAsync(request).get();
}
Parameter | |
---|---|
Name | Description |
request |
DeleteInterconnectGroupRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
deleteAsync(String project, String interconnectGroup)
public final OperationFuture<Operation,Operation> deleteAsync(String project, String interconnectGroup)
Deletes the specified InterconnectGroup 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
String project = "project-309310695";
String interconnectGroup = "interconnectGroup2103544465";
Operation response = interconnectGroupsClient.deleteAsync(project, interconnectGroup).get();
}
Parameters | |
---|---|
Name | Description |
project |
String Project ID for this request. |
interconnectGroup |
String Name of the InterconnectGroup resource to delete. |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
deleteCallable()
public final UnaryCallable<DeleteInterconnectGroupRequest,Operation> deleteCallable()
Deletes the specified InterconnectGroup 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
DeleteInterconnectGroupRequest request =
DeleteInterconnectGroupRequest.newBuilder()
.setInterconnectGroup("interconnectGroup2103544465")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future = interconnectGroupsClient.deleteCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<DeleteInterconnectGroupRequest,Operation> |
deleteOperationCallable()
public final OperationCallable<DeleteInterconnectGroupRequest,Operation,Operation> deleteOperationCallable()
Deletes the specified InterconnectGroup 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
DeleteInterconnectGroupRequest request =
DeleteInterconnectGroupRequest.newBuilder()
.setInterconnectGroup("interconnectGroup2103544465")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
OperationFuture<Operation, Operation> future =
interconnectGroupsClient.deleteOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
OperationCallable<DeleteInterconnectGroupRequest,Operation,Operation> |
get(GetInterconnectGroupRequest request)
public final InterconnectGroup get(GetInterconnectGroupRequest request)
Returns the specified InterconnectGroup 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
GetInterconnectGroupRequest request =
GetInterconnectGroupRequest.newBuilder()
.setInterconnectGroup("interconnectGroup2103544465")
.setProject("project-309310695")
.build();
InterconnectGroup response = interconnectGroupsClient.get(request);
}
Parameter | |
---|---|
Name | Description |
request |
GetInterconnectGroupRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
InterconnectGroup |
get(String project, String interconnectGroup)
public final InterconnectGroup get(String project, String interconnectGroup)
Returns the specified InterconnectGroup 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
String project = "project-309310695";
String interconnectGroup = "interconnectGroup2103544465";
InterconnectGroup response = interconnectGroupsClient.get(project, interconnectGroup);
}
Parameters | |
---|---|
Name | Description |
project |
String Project ID for this request. |
interconnectGroup |
String Name of the InterconnectGroup resource to return. |
Returns | |
---|---|
Type | Description |
InterconnectGroup |
getCallable()
public final UnaryCallable<GetInterconnectGroupRequest,InterconnectGroup> getCallable()
Returns the specified InterconnectGroup 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
GetInterconnectGroupRequest request =
GetInterconnectGroupRequest.newBuilder()
.setInterconnectGroup("interconnectGroup2103544465")
.setProject("project-309310695")
.build();
ApiFuture<InterconnectGroup> future =
interconnectGroupsClient.getCallable().futureCall(request);
// Do something.
InterconnectGroup response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<GetInterconnectGroupRequest,InterconnectGroup> |
getIamPolicy(GetIamPolicyInterconnectGroupRequest request)
public final Policy getIamPolicy(GetIamPolicyInterconnectGroupRequest 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
GetIamPolicyInterconnectGroupRequest request =
GetIamPolicyInterconnectGroupRequest.newBuilder()
.setOptionsRequestedPolicyVersion(-574521795)
.setProject("project-309310695")
.setResource("resource-341064690")
.build();
Policy response = interconnectGroupsClient.getIamPolicy(request);
}
Parameter | |
---|---|
Name | Description |
request |
GetIamPolicyInterconnectGroupRequest 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
String project = "project-309310695";
String resource = "resource-341064690";
Policy response = interconnectGroupsClient.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<GetIamPolicyInterconnectGroupRequest,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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
GetIamPolicyInterconnectGroupRequest request =
GetIamPolicyInterconnectGroupRequest.newBuilder()
.setOptionsRequestedPolicyVersion(-574521795)
.setProject("project-309310695")
.setResource("resource-341064690")
.build();
ApiFuture<Policy> future =
interconnectGroupsClient.getIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<GetIamPolicyInterconnectGroupRequest,Policy> |
getOperationalStatus(GetOperationalStatusInterconnectGroupRequest request)
public final InterconnectGroupsGetOperationalStatusResponse getOperationalStatus(GetOperationalStatusInterconnectGroupRequest request)
Returns the interconnectStatuses for the specified InterconnectGroup.
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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
GetOperationalStatusInterconnectGroupRequest request =
GetOperationalStatusInterconnectGroupRequest.newBuilder()
.setInterconnectGroup("interconnectGroup2103544465")
.setProject("project-309310695")
.build();
InterconnectGroupsGetOperationalStatusResponse response =
interconnectGroupsClient.getOperationalStatus(request);
}
Parameter | |
---|---|
Name | Description |
request |
GetOperationalStatusInterconnectGroupRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
InterconnectGroupsGetOperationalStatusResponse |
getOperationalStatus(String project, String interconnectGroup)
public final InterconnectGroupsGetOperationalStatusResponse getOperationalStatus(String project, String interconnectGroup)
Returns the interconnectStatuses for the specified InterconnectGroup.
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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
String project = "project-309310695";
String interconnectGroup = "interconnectGroup2103544465";
InterconnectGroupsGetOperationalStatusResponse response =
interconnectGroupsClient.getOperationalStatus(project, interconnectGroup);
}
Parameters | |
---|---|
Name | Description |
project |
String Project ID for this request. |
interconnectGroup |
String Name of the interconnectGroup resource to query. |
Returns | |
---|---|
Type | Description |
InterconnectGroupsGetOperationalStatusResponse |
getOperationalStatusCallable()
public final UnaryCallable<GetOperationalStatusInterconnectGroupRequest,InterconnectGroupsGetOperationalStatusResponse> getOperationalStatusCallable()
Returns the interconnectStatuses for the specified InterconnectGroup.
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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
GetOperationalStatusInterconnectGroupRequest request =
GetOperationalStatusInterconnectGroupRequest.newBuilder()
.setInterconnectGroup("interconnectGroup2103544465")
.setProject("project-309310695")
.build();
ApiFuture<InterconnectGroupsGetOperationalStatusResponse> future =
interconnectGroupsClient.getOperationalStatusCallable().futureCall(request);
// Do something.
InterconnectGroupsGetOperationalStatusResponse response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<GetOperationalStatusInterconnectGroupRequest,InterconnectGroupsGetOperationalStatusResponse> |
getSettings()
public final InterconnectGroupsSettings getSettings()
Returns | |
---|---|
Type | Description |
InterconnectGroupsSettings |
getStub()
public InterconnectGroupsStub getStub()
Returns | |
---|---|
Type | Description |
InterconnectGroupsStub |
insertAsync(InsertInterconnectGroupRequest request)
public final OperationFuture<Operation,Operation> insertAsync(InsertInterconnectGroupRequest request)
Creates a InterconnectGroup 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
InsertInterconnectGroupRequest request =
InsertInterconnectGroupRequest.newBuilder()
.setInterconnectGroupResource(InterconnectGroup.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
Operation response = interconnectGroupsClient.insertAsync(request).get();
}
Parameter | |
---|---|
Name | Description |
request |
InsertInterconnectGroupRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
insertAsync(String project, InterconnectGroup interconnectGroupResource)
public final OperationFuture<Operation,Operation> insertAsync(String project, InterconnectGroup interconnectGroupResource)
Creates a InterconnectGroup 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
String project = "project-309310695";
InterconnectGroup interconnectGroupResource = InterconnectGroup.newBuilder().build();
Operation response =
interconnectGroupsClient.insertAsync(project, interconnectGroupResource).get();
}
Parameters | |
---|---|
Name | Description |
project |
String Project ID for this request. |
interconnectGroupResource |
InterconnectGroup The body resource for this request |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
insertCallable()
public final UnaryCallable<InsertInterconnectGroupRequest,Operation> insertCallable()
Creates a InterconnectGroup 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
InsertInterconnectGroupRequest request =
InsertInterconnectGroupRequest.newBuilder()
.setInterconnectGroupResource(InterconnectGroup.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future = interconnectGroupsClient.insertCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<InsertInterconnectGroupRequest,Operation> |
insertOperationCallable()
public final OperationCallable<InsertInterconnectGroupRequest,Operation,Operation> insertOperationCallable()
Creates a InterconnectGroup 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
InsertInterconnectGroupRequest request =
InsertInterconnectGroupRequest.newBuilder()
.setInterconnectGroupResource(InterconnectGroup.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
OperationFuture<Operation, Operation> future =
interconnectGroupsClient.insertOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
OperationCallable<InsertInterconnectGroupRequest,Operation,Operation> |
isShutdown()
public boolean isShutdown()
Returns | |
---|---|
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Returns | |
---|---|
Type | Description |
boolean |
list(ListInterconnectGroupsRequest request)
public final InterconnectGroupsClient.ListPagedResponse list(ListInterconnectGroupsRequest request)
Lists the InterconnectGroups 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
ListInterconnectGroupsRequest request =
ListInterconnectGroupsRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.build();
for (InterconnectGroup element : interconnectGroupsClient.list(request).iterateAll()) {
// doThingsWith(element);
}
}
Parameter | |
---|---|
Name | Description |
request |
ListInterconnectGroupsRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
InterconnectGroupsClient.ListPagedResponse |
list(String project)
public final InterconnectGroupsClient.ListPagedResponse list(String project)
Lists the InterconnectGroups 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
String project = "project-309310695";
for (InterconnectGroup element : interconnectGroupsClient.list(project).iterateAll()) {
// doThingsWith(element);
}
}
Parameter | |
---|---|
Name | Description |
project |
String Project ID for this request. |
Returns | |
---|---|
Type | Description |
InterconnectGroupsClient.ListPagedResponse |
listCallable()
public final UnaryCallable<ListInterconnectGroupsRequest,InterconnectGroupsListResponse> listCallable()
Lists the InterconnectGroups 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
ListInterconnectGroupsRequest request =
ListInterconnectGroupsRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.build();
while (true) {
InterconnectGroupsListResponse response =
interconnectGroupsClient.listCallable().call(request);
for (InterconnectGroup 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<ListInterconnectGroupsRequest,InterconnectGroupsListResponse> |
listPagedCallable()
public final UnaryCallable<ListInterconnectGroupsRequest,InterconnectGroupsClient.ListPagedResponse> listPagedCallable()
Lists the InterconnectGroups 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
ListInterconnectGroupsRequest request =
ListInterconnectGroupsRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.build();
ApiFuture<InterconnectGroup> future =
interconnectGroupsClient.listPagedCallable().futureCall(request);
// Do something.
for (InterconnectGroup element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
Returns | |
---|---|
Type | Description |
UnaryCallable<ListInterconnectGroupsRequest,ListPagedResponse> |
patchAsync(PatchInterconnectGroupRequest request)
public final OperationFuture<Operation,Operation> patchAsync(PatchInterconnectGroupRequest request)
Patches the specified InterconnectGroup 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
PatchInterconnectGroupRequest request =
PatchInterconnectGroupRequest.newBuilder()
.setInterconnectGroup("interconnectGroup2103544465")
.setInterconnectGroupResource(InterconnectGroup.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setUpdateMask("updateMask-296147115")
.build();
Operation response = interconnectGroupsClient.patchAsync(request).get();
}
Parameter | |
---|---|
Name | Description |
request |
PatchInterconnectGroupRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
patchAsync(String project, String interconnectGroup, InterconnectGroup interconnectGroupResource)
public final OperationFuture<Operation,Operation> patchAsync(String project, String interconnectGroup, InterconnectGroup interconnectGroupResource)
Patches the specified InterconnectGroup 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
String project = "project-309310695";
String interconnectGroup = "interconnectGroup2103544465";
InterconnectGroup interconnectGroupResource = InterconnectGroup.newBuilder().build();
Operation response =
interconnectGroupsClient
.patchAsync(project, interconnectGroup, interconnectGroupResource)
.get();
}
Parameters | |
---|---|
Name | Description |
project |
String Project ID for this request. |
interconnectGroup |
String Name of the InterconnectGroup resource to patch. |
interconnectGroupResource |
InterconnectGroup The body resource for this request |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
patchCallable()
public final UnaryCallable<PatchInterconnectGroupRequest,Operation> patchCallable()
Patches the specified InterconnectGroup 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
PatchInterconnectGroupRequest request =
PatchInterconnectGroupRequest.newBuilder()
.setInterconnectGroup("interconnectGroup2103544465")
.setInterconnectGroupResource(InterconnectGroup.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setUpdateMask("updateMask-296147115")
.build();
ApiFuture<Operation> future = interconnectGroupsClient.patchCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<PatchInterconnectGroupRequest,Operation> |
patchOperationCallable()
public final OperationCallable<PatchInterconnectGroupRequest,Operation,Operation> patchOperationCallable()
Patches the specified InterconnectGroup 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
PatchInterconnectGroupRequest request =
PatchInterconnectGroupRequest.newBuilder()
.setInterconnectGroup("interconnectGroup2103544465")
.setInterconnectGroupResource(InterconnectGroup.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setUpdateMask("updateMask-296147115")
.build();
OperationFuture<Operation, Operation> future =
interconnectGroupsClient.patchOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
OperationCallable<PatchInterconnectGroupRequest,Operation,Operation> |
setIamPolicy(SetIamPolicyInterconnectGroupRequest request)
public final Policy setIamPolicy(SetIamPolicyInterconnectGroupRequest 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
SetIamPolicyInterconnectGroupRequest request =
SetIamPolicyInterconnectGroupRequest.newBuilder()
.setGlobalSetPolicyRequestResource(GlobalSetPolicyRequest.newBuilder().build())
.setProject("project-309310695")
.setResource("resource-341064690")
.build();
Policy response = interconnectGroupsClient.setIamPolicy(request);
}
Parameter | |
---|---|
Name | Description |
request |
SetIamPolicyInterconnectGroupRequest 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
String project = "project-309310695";
String resource = "resource-341064690";
GlobalSetPolicyRequest globalSetPolicyRequestResource =
GlobalSetPolicyRequest.newBuilder().build();
Policy response =
interconnectGroupsClient.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<SetIamPolicyInterconnectGroupRequest,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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
SetIamPolicyInterconnectGroupRequest request =
SetIamPolicyInterconnectGroupRequest.newBuilder()
.setGlobalSetPolicyRequestResource(GlobalSetPolicyRequest.newBuilder().build())
.setProject("project-309310695")
.setResource("resource-341064690")
.build();
ApiFuture<Policy> future =
interconnectGroupsClient.setIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<SetIamPolicyInterconnectGroupRequest,Policy> |
shutdown()
public void shutdown()
shutdownNow()
public void shutdownNow()
testIamPermissions(TestIamPermissionsInterconnectGroupRequest request)
public final TestPermissionsResponse testIamPermissions(TestIamPermissionsInterconnectGroupRequest 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
TestIamPermissionsInterconnectGroupRequest request =
TestIamPermissionsInterconnectGroupRequest.newBuilder()
.setProject("project-309310695")
.setResource("resource-341064690")
.setTestPermissionsRequestResource(TestPermissionsRequest.newBuilder().build())
.build();
TestPermissionsResponse response = interconnectGroupsClient.testIamPermissions(request);
}
Parameter | |
---|---|
Name | Description |
request |
TestIamPermissionsInterconnectGroupRequest 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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
String project = "project-309310695";
String resource = "resource-341064690";
TestPermissionsRequest testPermissionsRequestResource =
TestPermissionsRequest.newBuilder().build();
TestPermissionsResponse response =
interconnectGroupsClient.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<TestIamPermissionsInterconnectGroupRequest,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 (InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.create()) {
TestIamPermissionsInterconnectGroupRequest request =
TestIamPermissionsInterconnectGroupRequest.newBuilder()
.setProject("project-309310695")
.setResource("resource-341064690")
.setTestPermissionsRequestResource(TestPermissionsRequest.newBuilder().build())
.build();
ApiFuture<TestPermissionsResponse> future =
interconnectGroupsClient.testIamPermissionsCallable().futureCall(request);
// Do something.
TestPermissionsResponse response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<TestIamPermissionsInterconnectGroupRequest,TestPermissionsResponse> |