Class VpcAccessServiceClient (2.60.0)

Service Description: Serverless VPC Access API allows users to create and manage connectors for App Engine, Cloud Functions and Cloud Run to have internal connections to Virtual Private Cloud networks.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
ConnectorNamename=ConnectorName.of("[PROJECT]","[LOCATION]","[CONNECTOR]");
Connectorresponse=vpcAccessServiceClient.getConnector(name);
}

Note: close() needs to be called on the VpcAccessServiceClient 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

CreateConnector

Creates a Serverless VPC Access connector, returns an operation.

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

  • createConnectorAsync(CreateConnectorRequest request)

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

  • createConnectorAsync(LocationName parent, String connectorId, Connector connector)

  • createConnectorAsync(String parent, String connectorId, Connector connector)

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

  • createConnectorOperationCallable()

  • createConnectorCallable()

GetConnector

Gets a Serverless VPC Access connector. Returns NOT_FOUND if the resource does not exist.

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

  • getConnector(GetConnectorRequest request)

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

  • getConnector(ConnectorName name)

  • getConnector(String name)

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

  • getConnectorCallable()

ListConnectors

Lists Serverless VPC Access connectors.

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

  • listConnectors(ListConnectorsRequest request)

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

  • listConnectors(LocationName parent)

  • listConnectors(String parent)

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

  • listConnectorsPagedCallable()

  • listConnectorsCallable()

DeleteConnector

Deletes a Serverless VPC Access connector. Returns NOT_FOUND if the resource does not exist.

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

  • deleteConnectorAsync(DeleteConnectorRequest request)

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

  • deleteConnectorAsync(ConnectorName name)

  • deleteConnectorAsync(String name)

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

  • deleteConnectorOperationCallable()

  • deleteConnectorCallable()

ListLocations

Lists information about the supported locations for this service.

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

  • listLocations(ListLocationsRequest request)

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

  • listLocationsPagedCallable()

  • listLocationsCallable()

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 VpcAccessServiceSettings 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
VpcAccessServiceSettingsvpcAccessServiceSettings=
VpcAccessServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
VpcAccessServiceClientvpcAccessServiceClient=
VpcAccessServiceClient.create(vpcAccessServiceSettings);

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
VpcAccessServiceSettingsvpcAccessServiceSettings=
VpcAccessServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
VpcAccessServiceClientvpcAccessServiceClient=
VpcAccessServiceClient.create(vpcAccessServiceSettings);

To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:


// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
VpcAccessServiceSettingsvpcAccessServiceSettings=
VpcAccessServiceSettings.newHttpJsonBuilder().build();
VpcAccessServiceClientvpcAccessServiceClient=
VpcAccessServiceClient.create(vpcAccessServiceSettings);

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

Inheritance

java.lang.Object > VpcAccessServiceClient

Static Methods

create()

publicstaticfinalVpcAccessServiceClientcreate()

Constructs an instance of VpcAccessServiceClient with default settings.

Returns
Type Description
VpcAccessServiceClient
Exceptions
Type Description
IOException

create(VpcAccessServiceSettings settings)

publicstaticfinalVpcAccessServiceClientcreate(VpcAccessServiceSettingssettings)

Constructs an instance of VpcAccessServiceClient, 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 VpcAccessServiceSettings
Returns
Type Description
VpcAccessServiceClient
Exceptions
Type Description
IOException

create(VpcAccessServiceStub stub)

publicstaticfinalVpcAccessServiceClientcreate(VpcAccessServiceStubstub)

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

Parameter
Name Description
stub VpcAccessServiceStub
Returns
Type Description
VpcAccessServiceClient

Constructors

VpcAccessServiceClient(VpcAccessServiceSettings settings)

protectedVpcAccessServiceClient(VpcAccessServiceSettingssettings)

Constructs an instance of VpcAccessServiceClient, 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 VpcAccessServiceSettings

VpcAccessServiceClient(VpcAccessServiceStub stub)

protectedVpcAccessServiceClient(VpcAccessServiceStubstub)
Parameter
Name Description
stub VpcAccessServiceStub

Methods

awaitTermination(long duration, TimeUnit unit)

publicbooleanawaitTermination(longduration,TimeUnitunit)
Parameters
Name Description
duration long
unit TimeUnit
Returns
Type Description
boolean
Exceptions
Type Description
InterruptedException

close()

publicfinalvoidclose()

createConnectorAsync(CreateConnectorRequest request)

publicfinalOperationFuture<Connector,OperationMetadata>createConnectorAsync(CreateConnectorRequestrequest)

Creates a Serverless VPC Access connector, returns an operation.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
CreateConnectorRequestrequest=
CreateConnectorRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]","[LOCATION]").toString())
.setConnectorId("connectorId1724784200")
.setConnector(Connector.newBuilder().build())
.build();
Connectorresponse=vpcAccessServiceClient.createConnectorAsync(request).get();
}
Parameter
Name Description
request CreateConnectorRequest

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

Returns
Type Description
OperationFuture<Connector,OperationMetadata>

createConnectorAsync(LocationName parent, String connectorId, Connector connector)

publicfinalOperationFuture<Connector,OperationMetadata>createConnectorAsync(LocationNameparent,StringconnectorId,Connectorconnector)

Creates a Serverless VPC Access connector, returns an operation.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
LocationNameparent=LocationName.of("[PROJECT]","[LOCATION]");
StringconnectorId="connectorId1724784200";
Connectorconnector=Connector.newBuilder().build();
Connectorresponse=
vpcAccessServiceClient.createConnectorAsync(parent,connectorId,connector).get();
}
Parameters
Name Description
parent LocationName

Required. The project and location in which the configuration should be created, specified in the format projects/*/locations/*.

connectorId String

Required. The ID to use for this connector.

connector Connector

Required. Resource to create.

Returns
Type Description
OperationFuture<Connector,OperationMetadata>

createConnectorAsync(String parent, String connectorId, Connector connector)

publicfinalOperationFuture<Connector,OperationMetadata>createConnectorAsync(Stringparent,StringconnectorId,Connectorconnector)

Creates a Serverless VPC Access connector, returns an operation.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
Stringparent=LocationName.of("[PROJECT]","[LOCATION]").toString();
StringconnectorId="connectorId1724784200";
Connectorconnector=Connector.newBuilder().build();
Connectorresponse=
vpcAccessServiceClient.createConnectorAsync(parent,connectorId,connector).get();
}
Parameters
Name Description
parent String

Required. The project and location in which the configuration should be created, specified in the format projects/*/locations/*.

connectorId String

Required. The ID to use for this connector.

connector Connector

Required. Resource to create.

Returns
Type Description
OperationFuture<Connector,OperationMetadata>

createConnectorCallable()

publicfinalUnaryCallable<CreateConnectorRequest,Operation>createConnectorCallable()

Creates a Serverless VPC Access connector, returns an operation.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
CreateConnectorRequestrequest=
CreateConnectorRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]","[LOCATION]").toString())
.setConnectorId("connectorId1724784200")
.setConnector(Connector.newBuilder().build())
.build();
ApiFuture<Operation>future=
vpcAccessServiceClient.createConnectorCallable().futureCall(request);
// Do something.
Operationresponse=future.get();
}
Returns
Type Description
UnaryCallable<CreateConnectorRequest,Operation>

createConnectorOperationCallable()

publicfinalOperationCallable<CreateConnectorRequest,Connector,OperationMetadata>createConnectorOperationCallable()

Creates a Serverless VPC Access connector, returns an operation.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
CreateConnectorRequestrequest=
CreateConnectorRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]","[LOCATION]").toString())
.setConnectorId("connectorId1724784200")
.setConnector(Connector.newBuilder().build())
.build();
OperationFuture<Connector,OperationMetadata>future=
vpcAccessServiceClient.createConnectorOperationCallable().futureCall(request);
// Do something.
Connectorresponse=future.get();
}
Returns
Type Description
OperationCallable<CreateConnectorRequest,Connector,OperationMetadata>

deleteConnectorAsync(ConnectorName name)

publicfinalOperationFuture<Empty,OperationMetadata>deleteConnectorAsync(ConnectorNamename)

Deletes a Serverless VPC Access connector. Returns NOT_FOUND if the resource does not exist.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
ConnectorNamename=ConnectorName.of("[PROJECT]","[LOCATION]","[CONNECTOR]");
vpcAccessServiceClient.deleteConnectorAsync(name).get();
}
Parameter
Name Description
name ConnectorName

Required. Name of a Serverless VPC Access connector to delete.

Returns
Type Description
OperationFuture<Empty,OperationMetadata>

deleteConnectorAsync(DeleteConnectorRequest request)

publicfinalOperationFuture<Empty,OperationMetadata>deleteConnectorAsync(DeleteConnectorRequestrequest)

Deletes a Serverless VPC Access connector. Returns NOT_FOUND if the resource does not exist.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
DeleteConnectorRequestrequest=
DeleteConnectorRequest.newBuilder()
.setName(ConnectorName.of("[PROJECT]","[LOCATION]","[CONNECTOR]").toString())
.build();
vpcAccessServiceClient.deleteConnectorAsync(request).get();
}
Parameter
Name Description
request DeleteConnectorRequest

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

Returns
Type Description
OperationFuture<Empty,OperationMetadata>

deleteConnectorAsync(String name)

publicfinalOperationFuture<Empty,OperationMetadata>deleteConnectorAsync(Stringname)

Deletes a Serverless VPC Access connector. Returns NOT_FOUND if the resource does not exist.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
Stringname=ConnectorName.of("[PROJECT]","[LOCATION]","[CONNECTOR]").toString();
vpcAccessServiceClient.deleteConnectorAsync(name).get();
}
Parameter
Name Description
name String

Required. Name of a Serverless VPC Access connector to delete.

Returns
Type Description
OperationFuture<Empty,OperationMetadata>

deleteConnectorCallable()

publicfinalUnaryCallable<DeleteConnectorRequest,Operation>deleteConnectorCallable()

Deletes a Serverless VPC Access connector. Returns NOT_FOUND if the resource does not exist.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
DeleteConnectorRequestrequest=
DeleteConnectorRequest.newBuilder()
.setName(ConnectorName.of("[PROJECT]","[LOCATION]","[CONNECTOR]").toString())
.build();
ApiFuture<Operation>future=
vpcAccessServiceClient.deleteConnectorCallable().futureCall(request);
// Do something.
future.get();
}
Returns
Type Description
UnaryCallable<DeleteConnectorRequest,Operation>

deleteConnectorOperationCallable()

publicfinalOperationCallable<DeleteConnectorRequest,Empty,OperationMetadata>deleteConnectorOperationCallable()

Deletes a Serverless VPC Access connector. Returns NOT_FOUND if the resource does not exist.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
DeleteConnectorRequestrequest=
DeleteConnectorRequest.newBuilder()
.setName(ConnectorName.of("[PROJECT]","[LOCATION]","[CONNECTOR]").toString())
.build();
OperationFuture<Empty,OperationMetadata>future=
vpcAccessServiceClient.deleteConnectorOperationCallable().futureCall(request);
// Do something.
future.get();
}
Returns
Type Description
OperationCallable<DeleteConnectorRequest,Empty,OperationMetadata>

getConnector(ConnectorName name)

publicfinalConnectorgetConnector(ConnectorNamename)

Gets a Serverless VPC Access connector. Returns NOT_FOUND if the resource does not exist.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
ConnectorNamename=ConnectorName.of("[PROJECT]","[LOCATION]","[CONNECTOR]");
Connectorresponse=vpcAccessServiceClient.getConnector(name);
}
Parameter
Name Description
name ConnectorName

Required. Name of a Serverless VPC Access connector to get.

Returns
Type Description
Connector

getConnector(GetConnectorRequest request)

publicfinalConnectorgetConnector(GetConnectorRequestrequest)

Gets a Serverless VPC Access connector. Returns NOT_FOUND if the resource does not exist.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
GetConnectorRequestrequest=
GetConnectorRequest.newBuilder()
.setName(ConnectorName.of("[PROJECT]","[LOCATION]","[CONNECTOR]").toString())
.build();
Connectorresponse=vpcAccessServiceClient.getConnector(request);
}
Parameter
Name Description
request GetConnectorRequest

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

Returns
Type Description
Connector

getConnector(String name)

publicfinalConnectorgetConnector(Stringname)

Gets a Serverless VPC Access connector. Returns NOT_FOUND if the resource does not exist.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
Stringname=ConnectorName.of("[PROJECT]","[LOCATION]","[CONNECTOR]").toString();
Connectorresponse=vpcAccessServiceClient.getConnector(name);
}
Parameter
Name Description
name String

Required. Name of a Serverless VPC Access connector to get.

Returns
Type Description
Connector

getConnectorCallable()

publicfinalUnaryCallable<GetConnectorRequest,Connector>getConnectorCallable()

Gets a Serverless VPC Access connector. Returns NOT_FOUND if the resource does not exist.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
GetConnectorRequestrequest=
GetConnectorRequest.newBuilder()
.setName(ConnectorName.of("[PROJECT]","[LOCATION]","[CONNECTOR]").toString())
.build();
ApiFuture<Connector>future=
vpcAccessServiceClient.getConnectorCallable().futureCall(request);
// Do something.
Connectorresponse=future.get();
}
Returns
Type Description
UnaryCallable<GetConnectorRequest,Connector>

getHttpJsonOperationsClient()

publicfinalOperationsClientgetHttpJsonOperationsClient()

Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.

Returns
Type Description
OperationsClient

getOperationsClient()

publicfinalOperationsClientgetOperationsClient()

Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.

Returns
Type Description
OperationsClient

getSettings()

publicfinalVpcAccessServiceSettingsgetSettings()
Returns
Type Description
VpcAccessServiceSettings

getStub()

publicVpcAccessServiceStubgetStub()
Returns
Type Description
VpcAccessServiceStub

isShutdown()

publicbooleanisShutdown()
Returns
Type Description
boolean

isTerminated()

publicbooleanisTerminated()
Returns
Type Description
boolean

listConnectors(ListConnectorsRequest request)

publicfinalVpcAccessServiceClient.ListConnectorsPagedResponselistConnectors(ListConnectorsRequestrequest)

Lists Serverless VPC Access connectors.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
ListConnectorsRequestrequest=
ListConnectorsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]","[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for(Connectorelement:vpcAccessServiceClient.listConnectors(request).iterateAll()){
// doThingsWith(element);
}
}
Parameter
Name Description
request ListConnectorsRequest

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

Returns
Type Description
VpcAccessServiceClient.ListConnectorsPagedResponse

listConnectors(LocationName parent)

publicfinalVpcAccessServiceClient.ListConnectorsPagedResponselistConnectors(LocationNameparent)

Lists Serverless VPC Access connectors.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
LocationNameparent=LocationName.of("[PROJECT]","[LOCATION]");
for(Connectorelement:vpcAccessServiceClient.listConnectors(parent).iterateAll()){
// doThingsWith(element);
}
}
Parameter
Name Description
parent LocationName

Required. The project and location from which the routes should be listed.

Returns
Type Description
VpcAccessServiceClient.ListConnectorsPagedResponse

listConnectors(String parent)

publicfinalVpcAccessServiceClient.ListConnectorsPagedResponselistConnectors(Stringparent)

Lists Serverless VPC Access connectors.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
Stringparent=LocationName.of("[PROJECT]","[LOCATION]").toString();
for(Connectorelement:vpcAccessServiceClient.listConnectors(parent).iterateAll()){
// doThingsWith(element);
}
}
Parameter
Name Description
parent String

Required. The project and location from which the routes should be listed.

Returns
Type Description
VpcAccessServiceClient.ListConnectorsPagedResponse

listConnectorsCallable()

publicfinalUnaryCallable<ListConnectorsRequest,ListConnectorsResponse>listConnectorsCallable()

Lists Serverless VPC Access connectors.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
ListConnectorsRequestrequest=
ListConnectorsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]","[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while(true){
ListConnectorsResponseresponse=
vpcAccessServiceClient.listConnectorsCallable().call(request);
for(Connectorelement:response.getConnectorsList()){
// doThingsWith(element);
}
StringnextPageToken=response.getNextPageToken();
if(!Strings.isNullOrEmpty(nextPageToken)){
request=request.toBuilder().setPageToken(nextPageToken).build();
}else{
break;
}
}
}
Returns
Type Description
UnaryCallable<ListConnectorsRequest,ListConnectorsResponse>

listConnectorsPagedCallable()

publicfinalUnaryCallable<ListConnectorsRequest,VpcAccessServiceClient.ListConnectorsPagedResponse>listConnectorsPagedCallable()

Lists Serverless VPC Access connectors.

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(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
ListConnectorsRequestrequest=
ListConnectorsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]","[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Connector>future=
vpcAccessServiceClient.listConnectorsPagedCallable().futureCall(request);
// Do something.
for(Connectorelement:future.get().iterateAll()){
// doThingsWith(element);
}
}
Returns
Type Description
UnaryCallable<ListConnectorsRequest,ListConnectorsPagedResponse>

listLocations(ListLocationsRequest request)

publicfinalVpcAccessServiceClient.ListLocationsPagedResponselistLocations(ListLocationsRequestrequest)

Lists information about the supported locations for this service.

Sample code:


// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
ListLocationsRequestrequest=
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for(Locationelement:vpcAccessServiceClient.listLocations(request).iterateAll()){
// doThingsWith(element);
}
}
Parameter
Name Description
request com.google.cloud.location.ListLocationsRequest

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

Returns
Type Description
VpcAccessServiceClient.ListLocationsPagedResponse

listLocationsCallable()

publicfinalUnaryCallable<ListLocationsRequest,ListLocationsResponse>listLocationsCallable()

Lists information about the supported locations for this service.

Sample code:


// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
ListLocationsRequestrequest=
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while(true){
ListLocationsResponseresponse=
vpcAccessServiceClient.listLocationsCallable().call(request);
for(Locationelement:response.getLocationsList()){
// doThingsWith(element);
}
StringnextPageToken=response.getNextPageToken();
if(!Strings.isNullOrEmpty(nextPageToken)){
request=request.toBuilder().setPageToken(nextPageToken).build();
}else{
break;
}
}
}
Returns
Type Description
UnaryCallable<com.google.cloud.location.ListLocationsRequest,com.google.cloud.location.ListLocationsResponse>

listLocationsPagedCallable()

publicfinalUnaryCallable<ListLocationsRequest,VpcAccessServiceClient.ListLocationsPagedResponse>listLocationsPagedCallable()

Lists information about the supported locations for this service.

Sample code:


// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(VpcAccessServiceClientvpcAccessServiceClient=VpcAccessServiceClient.create()){
ListLocationsRequestrequest=
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Location>future=
vpcAccessServiceClient.listLocationsPagedCallable().futureCall(request);
// Do something.
for(Locationelement:future.get().iterateAll()){
// doThingsWith(element);
}
}
Returns
Type Description
UnaryCallable<com.google.cloud.location.ListLocationsRequest,ListLocationsPagedResponse>

shutdown()

publicvoidshutdown()

shutdownNow()

publicvoidshutdownNow()

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025年11月19日 UTC.