- 1.52.0 (latest)
- 1.51.0
- 1.50.0
- 1.48.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.36.0
- 1.35.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.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.0
- 1.11.0
- 1.10.0
- 1.8.0
- 1.7.0
- 1.6.0
- 1.5.0
- 1.4.0
- 1.3.0
- 1.2.9
- 1.1.1
- 1.0.0
- 0.5.0
A client to Network Connectivity API
The interfaces provided are listed below, along with usage samples.
HubServiceClient
Service Description: Network Connectivity Center is a hub-and-spoke abstraction for network connectivity management in Google Cloud. It reduces operational complexity through a simple, centralized connectivity management model.
Sample for HubServiceClient:
// 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 (HubServiceClient hubServiceClient = HubServiceClient.create()) {
HubName name = HubName.of("[PROJECT]", "[HUB]");
Hub response = hubServiceClient.getHub(name);
}
Classes
CommonProto
CreateHubRequest
Request for HubService.CreateHub method.
Protobuf type google.cloud.networkconnectivity.v1.CreateHubRequest
CreateHubRequest.Builder
Request for HubService.CreateHub method.
Protobuf type google.cloud.networkconnectivity.v1.CreateHubRequest
CreateSpokeRequest
The request for HubService.CreateSpoke.
Protobuf type google.cloud.networkconnectivity.v1.CreateSpokeRequest
CreateSpokeRequest.Builder
The request for HubService.CreateSpoke.
Protobuf type google.cloud.networkconnectivity.v1.CreateSpokeRequest
DeleteHubRequest
The request for HubService.DeleteHub.
Protobuf type google.cloud.networkconnectivity.v1.DeleteHubRequest
DeleteHubRequest.Builder
The request for HubService.DeleteHub.
Protobuf type google.cloud.networkconnectivity.v1.DeleteHubRequest
DeleteSpokeRequest
The request for HubService.DeleteSpoke.
Protobuf type google.cloud.networkconnectivity.v1.DeleteSpokeRequest
DeleteSpokeRequest.Builder
The request for HubService.DeleteSpoke.
Protobuf type google.cloud.networkconnectivity.v1.DeleteSpokeRequest
GetHubRequest
Request for HubService.GetHub method.
Protobuf type google.cloud.networkconnectivity.v1.GetHubRequest
GetHubRequest.Builder
Request for HubService.GetHub method.
Protobuf type google.cloud.networkconnectivity.v1.GetHubRequest
GetSpokeRequest
The request for HubService.GetSpoke.
Protobuf type google.cloud.networkconnectivity.v1.GetSpokeRequest
GetSpokeRequest.Builder
The request for HubService.GetSpoke.
Protobuf type google.cloud.networkconnectivity.v1.GetSpokeRequest
Hub
A Network Connectivity Center hub is a collection of spokes. A single hub can contain spokes from multiple regions. However, if any of a hub's spokes use the data transfer feature, the resources associated with those spokes must all reside in the same VPC network. Spokes that do not use data transfer can be associated with any VPC network in your project.
Protobuf type google.cloud.networkconnectivity.v1.Hub
Hub.Builder
A Network Connectivity Center hub is a collection of spokes. A single hub can contain spokes from multiple regions. However, if any of a hub's spokes use the data transfer feature, the resources associated with those spokes must all reside in the same VPC network. Spokes that do not use data transfer can be associated with any VPC network in your project.
Protobuf type google.cloud.networkconnectivity.v1.Hub
HubName
HubName.Builder
Builder for projects/{project}/locations/global/hubs/{hub}.
HubProto
HubServiceClient
Service Description: Network Connectivity Center is a hub-and-spoke abstraction for network connectivity management in Google Cloud. It reduces operational complexity through a simple, centralized connectivity management model.
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 (HubServiceClient hubServiceClient = HubServiceClient.create()) {
HubName name = HubName.of("[PROJECT]", "[HUB]");
Hub response = hubServiceClient.getHub(name);
}
Note: close() needs to be called on the HubServiceClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
The surface of this class includes several types of Java methods for each of the API's methods:
- A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
- A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
- A "callable" method. This type of method takes no parameters and returns an immutable API callable object, which can be used to initiate calls to the service.
See the individual methods for example code.
Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.
This class can be customized by passing in a custom instance of HubServiceSettings 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
HubServiceSettings hubServiceSettings =
HubServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
HubServiceClient hubServiceClient = HubServiceClient.create(hubServiceSettings);
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
HubServiceSettings hubServiceSettings =
HubServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
HubServiceClient hubServiceClient = HubServiceClient.create(hubServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
HubServiceClient.ListHubsFixedSizeCollection
HubServiceClient.ListHubsPage
HubServiceClient.ListHubsPagedResponse
HubServiceClient.ListSpokesFixedSizeCollection
HubServiceClient.ListSpokesPage
HubServiceClient.ListSpokesPagedResponse
HubServiceGrpc
Network Connectivity Center is a hub-and-spoke abstraction for network connectivity management in Google Cloud. It reduces operational complexity through a simple, centralized connectivity management model.
HubServiceGrpc.HubServiceBlockingStub
A stub to allow clients to do synchronous rpc calls to service HubService.
Network Connectivity Center is a hub-and-spoke abstraction for network connectivity management in Google Cloud. It reduces operational complexity through a simple, centralized connectivity management model.
HubServiceGrpc.HubServiceFutureStub
A stub to allow clients to do ListenableFuture-style rpc calls to service HubService.
Network Connectivity Center is a hub-and-spoke abstraction for network connectivity management in Google Cloud. It reduces operational complexity through a simple, centralized connectivity management model.
HubServiceGrpc.HubServiceImplBase
Base class for the server implementation of the service HubService.
Network Connectivity Center is a hub-and-spoke abstraction for network connectivity management in Google Cloud. It reduces operational complexity through a simple, centralized connectivity management model.
HubServiceGrpc.HubServiceStub
A stub to allow clients to do asynchronous rpc calls to service HubService.
Network Connectivity Center is a hub-and-spoke abstraction for network connectivity management in Google Cloud. It reduces operational complexity through a simple, centralized connectivity management model.
HubServiceSettings
Settings class to configure an instance of HubServiceClient.
The default instance has everything set to sensible defaults:
- The default service address (networkconnectivity.googleapis.com) and default port (443) are used.
- Credentials are acquired automatically through Application Default Credentials.
- Retries are configured for idempotent methods but not for non-idempotent methods.
The builder of this class is recursive, so contained classes are themselves builders. When build() is called, the tree of builders is called to create the complete settings object.
For example, to set the total timeout of getHub to 30 seconds:
// 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
HubServiceSettings.Builder hubServiceSettingsBuilder = HubServiceSettings.newBuilder();
hubServiceSettingsBuilder
.getHubSettings()
.setRetrySettings(
hubServiceSettingsBuilder
.getHubSettings()
.getRetrySettings()
.toBuilder()
.setTotalTimeout(Duration.ofSeconds(30))
.build());
HubServiceSettings hubServiceSettings = hubServiceSettingsBuilder.build();
HubServiceSettings.Builder
Builder for HubServiceSettings.
LinkedInterconnectAttachments
A collection of VLAN attachment resources. These resources should be redundant attachments that all advertise the same prefixes to Google Cloud. Alternatively, in active/passive configurations, all attachments should be capable of advertising the same prefixes.
Protobuf type google.cloud.networkconnectivity.v1.LinkedInterconnectAttachments
LinkedInterconnectAttachments.Builder
A collection of VLAN attachment resources. These resources should be redundant attachments that all advertise the same prefixes to Google Cloud. Alternatively, in active/passive configurations, all attachments should be capable of advertising the same prefixes.
Protobuf type google.cloud.networkconnectivity.v1.LinkedInterconnectAttachments
LinkedRouterApplianceInstances
A collection of router appliance instances. If you configure multiple router appliance instances to receive data from the same set of sites outside of Google Cloud, we recommend that you associate those instances with the same spoke.
Protobuf type google.cloud.networkconnectivity.v1.LinkedRouterApplianceInstances
LinkedRouterApplianceInstances.Builder
A collection of router appliance instances. If you configure multiple router appliance instances to receive data from the same set of sites outside of Google Cloud, we recommend that you associate those instances with the same spoke.
Protobuf type google.cloud.networkconnectivity.v1.LinkedRouterApplianceInstances
LinkedVpnTunnels
A collection of Cloud VPN tunnel resources. These resources should be redundant HA VPN tunnels that all advertise the same prefixes to Google Cloud. Alternatively, in a passive/active configuration, all tunnels should be capable of advertising the same prefixes.
Protobuf type google.cloud.networkconnectivity.v1.LinkedVpnTunnels
LinkedVpnTunnels.Builder
A collection of Cloud VPN tunnel resources. These resources should be redundant HA VPN tunnels that all advertise the same prefixes to Google Cloud. Alternatively, in a passive/active configuration, all tunnels should be capable of advertising the same prefixes.
Protobuf type google.cloud.networkconnectivity.v1.LinkedVpnTunnels
ListHubsRequest
Request for HubService.ListHubs method.
Protobuf type google.cloud.networkconnectivity.v1.ListHubsRequest
ListHubsRequest.Builder
Request for HubService.ListHubs method.
Protobuf type google.cloud.networkconnectivity.v1.ListHubsRequest
ListHubsResponse
Response for HubService.ListHubs method.
Protobuf type google.cloud.networkconnectivity.v1.ListHubsResponse
ListHubsResponse.Builder
Response for HubService.ListHubs method.
Protobuf type google.cloud.networkconnectivity.v1.ListHubsResponse
ListSpokesRequest
The request for HubService.ListSpokes.
Protobuf type google.cloud.networkconnectivity.v1.ListSpokesRequest
ListSpokesRequest.Builder
The request for HubService.ListSpokes.
Protobuf type google.cloud.networkconnectivity.v1.ListSpokesRequest
ListSpokesResponse
The response for HubService.ListSpokes.
Protobuf type google.cloud.networkconnectivity.v1.ListSpokesResponse
ListSpokesResponse.Builder
The response for HubService.ListSpokes.
Protobuf type google.cloud.networkconnectivity.v1.ListSpokesResponse
LocationMetadata
Metadata about locations
Protobuf type google.cloud.networkconnectivity.v1.LocationMetadata
LocationMetadata.Builder
Metadata about locations
Protobuf type google.cloud.networkconnectivity.v1.LocationMetadata
LocationName
LocationName.Builder
Builder for projects/{project}/locations/{location}.
OperationMetadata
Represents the metadata of the long-running operation.
Protobuf type google.cloud.networkconnectivity.v1.OperationMetadata
OperationMetadata.Builder
Represents the metadata of the long-running operation.
Protobuf type google.cloud.networkconnectivity.v1.OperationMetadata
RouterApplianceInstance
A router appliance instance is a Compute Engine virtual machine (VM) instance that acts as a BGP speaker. A router appliance instance is specified by the URI of the VM and the internal IP address of one of the VM's network interfaces.
Protobuf type google.cloud.networkconnectivity.v1.RouterApplianceInstance
RouterApplianceInstance.Builder
A router appliance instance is a Compute Engine virtual machine (VM) instance that acts as a BGP speaker. A router appliance instance is specified by the URI of the VM and the internal IP address of one of the VM's network interfaces.
Protobuf type google.cloud.networkconnectivity.v1.RouterApplianceInstance
RoutingVPC
RoutingVPC contains information about the VPC networks associated with the spokes of a Network Connectivity Center hub.
Protobuf type google.cloud.networkconnectivity.v1.RoutingVPC
RoutingVPC.Builder
RoutingVPC contains information about the VPC networks associated with the spokes of a Network Connectivity Center hub.
Protobuf type google.cloud.networkconnectivity.v1.RoutingVPC
Spoke
A Network Connectivity Center spoke represents a connection between your Google Cloud network resources and a non-Google-Cloud network.
When you create a spoke, you associate it with a hub. You must also identify a value for exactly one of the following fields:
- linked_vpn_tunnels
- linked_interconnect_attachments
- linked_router_appliance_instances
Protobuf type google.cloud.networkconnectivity.v1.Spoke
Spoke.Builder
A Network Connectivity Center spoke represents a connection between your Google Cloud network resources and a non-Google-Cloud network.
When you create a spoke, you associate it with a hub. You must also identify a value for exactly one of the following fields:
- linked_vpn_tunnels
- linked_interconnect_attachments
- linked_router_appliance_instances
Protobuf type google.cloud.networkconnectivity.v1.Spoke
SpokeName
SpokeName.Builder
Builder for projects/{project}/locations/{location}/spokes/{spoke}.
UpdateHubRequest
Request for HubService.UpdateHub method.
Protobuf type google.cloud.networkconnectivity.v1.UpdateHubRequest
UpdateHubRequest.Builder
Request for HubService.UpdateHub method.
Protobuf type google.cloud.networkconnectivity.v1.UpdateHubRequest
UpdateSpokeRequest
Request for HubService.UpdateSpoke method.
Protobuf type google.cloud.networkconnectivity.v1.UpdateSpokeRequest
UpdateSpokeRequest.Builder
Request for HubService.UpdateSpoke method.
Protobuf type google.cloud.networkconnectivity.v1.UpdateSpokeRequest
Interfaces
CreateHubRequestOrBuilder
CreateSpokeRequestOrBuilder
DeleteHubRequestOrBuilder
DeleteSpokeRequestOrBuilder
GetHubRequestOrBuilder
GetSpokeRequestOrBuilder
HubOrBuilder
HubServiceGrpc.AsyncService
Network Connectivity Center is a hub-and-spoke abstraction for network connectivity management in Google Cloud. It reduces operational complexity through a simple, centralized connectivity management model.
LinkedInterconnectAttachmentsOrBuilder
LinkedRouterApplianceInstancesOrBuilder
LinkedVpnTunnelsOrBuilder
ListHubsRequestOrBuilder
ListHubsResponseOrBuilder
ListSpokesRequestOrBuilder
ListSpokesResponseOrBuilder
LocationMetadataOrBuilder
OperationMetadataOrBuilder
RouterApplianceInstanceOrBuilder
RoutingVPCOrBuilder
SpokeOrBuilder
UpdateHubRequestOrBuilder
UpdateSpokeRequestOrBuilder
Enums
LocationFeature
Supported features for a location
Protobuf enum google.cloud.networkconnectivity.v1.LocationFeature
State
The State enum represents the lifecycle stage of a Network Connectivity Center resource.
Protobuf enum google.cloud.networkconnectivity.v1.State