Package com.google.cloud.networkconnectivity.v1alpha1 (1.0.0)

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:


 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.v1alpha1.CreateHubRequest

CreateHubRequest.Builder

Request for HubService.CreateHub method.

Protobuf type google.cloud.networkconnectivity.v1alpha1.CreateHubRequest

CreateSpokeRequest

The request for HubService.CreateSpoke.

Protobuf type google.cloud.networkconnectivity.v1alpha1.CreateSpokeRequest

CreateSpokeRequest.Builder

The request for HubService.CreateSpoke.

Protobuf type google.cloud.networkconnectivity.v1alpha1.CreateSpokeRequest

DeleteHubRequest

The request for HubService.DeleteHub.

Protobuf type google.cloud.networkconnectivity.v1alpha1.DeleteHubRequest

DeleteHubRequest.Builder

The request for HubService.DeleteHub.

Protobuf type google.cloud.networkconnectivity.v1alpha1.DeleteHubRequest

DeleteSpokeRequest

The request for HubService.DeleteSpoke.

Protobuf type google.cloud.networkconnectivity.v1alpha1.DeleteSpokeRequest

DeleteSpokeRequest.Builder

The request for HubService.DeleteSpoke.

Protobuf type google.cloud.networkconnectivity.v1alpha1.DeleteSpokeRequest

GetHubRequest

Request for HubService.GetHub method.

Protobuf type google.cloud.networkconnectivity.v1alpha1.GetHubRequest

GetHubRequest.Builder

Request for HubService.GetHub method.

Protobuf type google.cloud.networkconnectivity.v1alpha1.GetHubRequest

GetSpokeRequest

The request for HubService.GetSpoke.

Protobuf type google.cloud.networkconnectivity.v1alpha1.GetSpokeRequest

GetSpokeRequest.Builder

The request for HubService.GetSpoke.

Protobuf type google.cloud.networkconnectivity.v1alpha1.GetSpokeRequest

Hub

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. Following is the resource message of a hub.

Protobuf type google.cloud.networkconnectivity.v1alpha1.Hub

Hub.Builder

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. Following is the resource message of a hub.

Protobuf type google.cloud.networkconnectivity.v1alpha1.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:


 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:

  1. A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
  2. A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
  3. A "callable" method. This type of method takes no parameters and returns an immutable API callable object, which can be used to initiate calls to the service.

See the individual methods for example code.

Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.

This class can be customized by passing in a custom instance of HubServiceSettings to create(). For example:

To customize credentials:


 HubServiceSettings hubServiceSettings =
     HubServiceSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 HubServiceClient hubServiceClient = HubServiceClient.create(hubServiceSettings);
 

To customize the endpoint:


 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

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

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

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

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:


 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.

ListHubsRequest

Request for HubService.ListHubs method.

Protobuf type google.cloud.networkconnectivity.v1alpha1.ListHubsRequest

ListHubsRequest.Builder

Request for HubService.ListHubs method.

Protobuf type google.cloud.networkconnectivity.v1alpha1.ListHubsRequest

ListHubsResponse

Response for HubService.ListHubs method.

Protobuf type google.cloud.networkconnectivity.v1alpha1.ListHubsResponse

ListHubsResponse.Builder

Response for HubService.ListHubs method.

Protobuf type google.cloud.networkconnectivity.v1alpha1.ListHubsResponse

ListSpokesRequest

The request for HubService.ListSpokes.

Protobuf type google.cloud.networkconnectivity.v1alpha1.ListSpokesRequest

ListSpokesRequest.Builder

The request for HubService.ListSpokes.

Protobuf type google.cloud.networkconnectivity.v1alpha1.ListSpokesRequest

ListSpokesResponse

The response for HubService.ListSpokes.

Protobuf type google.cloud.networkconnectivity.v1alpha1.ListSpokesResponse

ListSpokesResponse.Builder

The response for HubService.ListSpokes.

Protobuf type google.cloud.networkconnectivity.v1alpha1.ListSpokesResponse

LocationName

LocationName.Builder

Builder for projects/{project}/locations/{location}.

OperationMetadata

Represents the metadata of the long-running operation.

Protobuf type google.cloud.networkconnectivity.v1alpha1.OperationMetadata

OperationMetadata.Builder

Represents the metadata of the long-running operation.

Protobuf type google.cloud.networkconnectivity.v1alpha1.OperationMetadata

RouterApplianceInstance

RouterAppliance represents a Router appliance which is specified by a VM URI and a NIC address.

Protobuf type google.cloud.networkconnectivity.v1alpha1.RouterApplianceInstance

RouterApplianceInstance.Builder

RouterAppliance represents a Router appliance which is specified by a VM URI and a NIC address.

Protobuf type google.cloud.networkconnectivity.v1alpha1.RouterApplianceInstance

Spoke

A Spoke is an abstraction of a network attachment being attached to a Hub. A Spoke can be underlying a VPN tunnel, a VLAN (interconnect) attachment, a Router appliance, etc.

Protobuf type google.cloud.networkconnectivity.v1alpha1.Spoke

Spoke.Builder

A Spoke is an abstraction of a network attachment being attached to a Hub. A Spoke can be underlying a VPN tunnel, a VLAN (interconnect) attachment, a Router appliance, etc.

Protobuf type google.cloud.networkconnectivity.v1alpha1.Spoke

SpokeName

SpokeName.Builder

Builder for projects/{project}/locations/{location}/spokes/{spoke}.

UpdateHubRequest

Request for HubService.UpdateHub method.

Protobuf type google.cloud.networkconnectivity.v1alpha1.UpdateHubRequest

UpdateHubRequest.Builder

Request for HubService.UpdateHub method.

Protobuf type google.cloud.networkconnectivity.v1alpha1.UpdateHubRequest

UpdateSpokeRequest

Request for HubService.UpdateSpoke method.

Protobuf type google.cloud.networkconnectivity.v1alpha1.UpdateSpokeRequest

UpdateSpokeRequest.Builder

Request for HubService.UpdateSpoke method.

Protobuf type google.cloud.networkconnectivity.v1alpha1.UpdateSpokeRequest

Interfaces

CreateHubRequestOrBuilder

CreateSpokeRequestOrBuilder

DeleteHubRequestOrBuilder

DeleteSpokeRequestOrBuilder

GetHubRequestOrBuilder

GetSpokeRequestOrBuilder

HubOrBuilder

ListHubsRequestOrBuilder

ListHubsResponseOrBuilder

ListSpokesRequestOrBuilder

ListSpokesResponseOrBuilder

OperationMetadataOrBuilder

RouterApplianceInstanceOrBuilder

SpokeOrBuilder

UpdateHubRequestOrBuilder

UpdateSpokeRequestOrBuilder

Enums

State

The State enum represents the lifecycle of a Network Connectivity Center resource.

Protobuf enum google.cloud.networkconnectivity.v1alpha1.State